snowflake.snowpark.functions.h3_coverage_strings¶
- snowflake.snowpark.functions.h3_coverage_strings(geography_expression: Union[snowflake.snowpark.column.Column, str], target_resolution: Union[snowflake.snowpark.column.Column, str, int]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.45.0/src/snowflake/snowpark/_functions/scalar_functions.py#L664-L695)¶
Returns an array of H3 cell identifiers as strings that cover the given geography at the specified resolution.
- Parameters:
geography_expression (ColumnOrName) – The GEOGRAPHY to cover.
target_resolution (ColumnOrName, int) – The H3 resolution level (0-15).
- Returns:
An array of H3 cell identifiers as strings.
- Return type:
Example: