snowflake.snowpark.functions.st_geogfromgeohash¶
- snowflake.snowpark.functions.st_geogfromgeohash(geohash: Union[snowflake.snowpark.column.Column, str], precision: Union[snowflake.snowpark.column.Column, str] = None) Column[source]¶
Constructs a GEOGRAPHY object from a geohash string.
- Parameters:
geohash (ColumnOrName) – The geohash value.
precision (ColumnOrName, optional) – The precision level for the geohash conversion.
- Returns:
A GEOGRAPHY object representing the polygon area covered by the geohash.
- Return type:
- Examples::