snowflake.snowpark.functions.st_setsrid¶
- snowflake.snowpark.functions.st_setsrid(geometry_expression: Union[snowflake.snowpark.column.Column, str], srid: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Sets the spatial reference identifier (SRID) for a geometry object.
- Parameters:
geometry_expression (ColumnOrName) – A geometry object or column containing geometry data
srid (ColumnOrName) – The spatial reference identifier to set for the geometry
- Returns:
A new geometry object with the specified SRID
- Return type:
- Examples::