snowflake.snowpark.functions.st_aswkt¶
- snowflake.snowpark.functions.st_aswkt(geography_or_geometry_expression: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.48.0/src/snowflake/snowpark/_functions/scalar_functions.py#L2197-L2220)¶
Returns the WKT (well-known text) representation of a GEOGRAPHY or GEOMETRY object.
- Parameters:
geography_or_geometry_expression (ColumnOrName) – A GEOGRAPHY or GEOMETRY objects to convert to WKT format.
- Returns:
The WKT representation of the input geography or geometry objects.
- Return type:
- Examples::