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] (https://github.com/snowflakedb/snowpark-python/blob/v1.48.0/src/snowflake/snowpark/_functions/scalar_functions.py#L634-L661)¶
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::