snowflake.snowpark.functions.h3_cell_to_children¶
- snowflake.snowpark.functions.h3_cell_to_children(cell_id: Union[snowflake.snowpark.column.Column, str], target_resolution: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns the children of an H3 cell at a specified target resolution.
- Parameters:
cell_id (ColumnOrName) – The H3 cell ID to get children for.
target_resolution (ColumnOrName) – The target resolution for the children cells.
- Returns:
A JSON array string containing the children H3 cell IDs.
- Return type:
- Example::