snowflake.snowpark.functions.h3_cell_to_point¶
- snowflake.snowpark.functions.h3_cell_to_point(cell_id: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.45.0/src/snowflake/snowpark/_functions/scalar_functions.py#L561-L583)¶
Returns the center point of an H3 cell as a GeoJSON Point object.
- Parameters:
cell_id (ColumnOrName) – The H3 cell IDs.
- Returns:
GeoJSON Point objects representing the center points of the H3 cells.
- Return type:
- Example::