snowflake.snowpark.functions.h3_coverage¶
- snowflake.snowpark.functions.h3_coverage(geography_expression: Union[snowflake.snowpark.column.Column, str], target_resolution: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns an array of H3 cell IDs that cover the given geography at the specified resolution.
- Parameters:
geography_expression (ColumnOrName) – A GEOGRAPHY object.
target_resolution (ColumnOrName) – The target H3 resolution (0-15).
- Returns:
An array of H3 cell IDs as strings.
- Return type:
- Example::