snowflake.snowpark.functions.st_geogpointfromgeohash¶
- snowflake.snowpark.functions.st_geogpointfromgeohash(geohash: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/_functions/scalar_functions.py#L3658-L3675)¶
Constructs a GEOGRAPHY object that represents a point from a geohash string.
- Parameters:
geohash (ColumnOrName) – The geohash value to convert to a geography point.
- Returns:
A GEOGRAPHY object representing a point decoded from the geohash.
- Return type:
- Examples::