snowflake.snowpark.functions.st_geompointfromgeohash¶
- snowflake.snowpark.functions.st_geompointfromgeohash(geohash: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.44.0/src/snowflake/snowpark/_functions/scalar_functions.py#L3045-L3062)¶
Returns a GEOMETRY object that represents a point constructed from a geohash string.
- Parameters:
geohash (ColumnOrName) – A column or string representing the geohash value to convert to a geometry point
- Returns:
A GEOMETRY object representing the point decoded from the geohash
- Return type:
- Examples::