snowflake.snowpark.functions.h3_cell_to_parent¶
- snowflake.snowpark.functions.h3_cell_to_parent(cell_id: Union[snowflake.snowpark.column.Column, str], target_resolution: 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#L535-L558)¶
Returns the parent H3 cell at the specified target resolution.
- Parameters:
cell_id (ColumnOrName) – The H3 cell IDs.
target_resolution (ColumnOrName) – The target resolution levels.
- Returns:
The parent H3 cell at the target resolution.
- Return type:
- Example::