Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks Runtime 17.1 and above
Important
This feature is in Public Preview.
Returns a new GEOMETRY
value whose SRID is the specified SRID value.
Syntax
st_setsrid ( geo, srid )
Arguments
geo
: AGEOMETRY
value.srid
: The new SRID value of the geometry.
Returns
A value of type GEOMETRY
, representing a new geometry value whose SRID is the specified SRID value.
The function returns NULL
if any of the inputs is NULL
.
Examples
-- Sets SRID to 3857 and returns the new SRID value.
> SELECT st_srid(st_setsrid(ST_GeomFromText('POINT(4 5)', 4326), 3857))
3857
-- Returns the original geometry with new SRID.
> SELECT st_asewkt(st_setsrid(st_geomfromtext('POINT(1 2)'), 4326))
SRID=4326;POINT(1 2)