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