- Categories:
H3_ UNCOMPACT_ CELLS_ STRINGS¶
Returns an array of VARIANT values that contain the VARCHAR hexadecimal IDs of H3 cells at the specified resolution that cover the same area as the H3 cells in the input.
语法
实参
array_of_cell_idsAn array of VARIANT values that contain VARCHAR hexadecimal values that represent H3 cell IDs (indexes (https://h3geo.org/docs/core-library/h3Indexing)).
target_resolutionAn INTEGER value between 0 and 15 (inclusive) specifying the H3 resolution (https://h3geo.org/docs/core-library/restable) that you want to use for the returned H3 cells.
指定其他任何 INTEGER 值都会导致错误。
返回
返回 ARRAY 数据类型的值或 NULL。
- If the input is an array of VARIANT values that contain VARCHAR hexadecimal values, returns an array of VARIANT values that contain the VARCHAR hexadecimal values that represent the set of H3 cells at the specified resolution.
- 如果输入为 NULL,则返回 NULL,不报错。
使用说明
- 输入中的所有 VARCHAR 十六进制值都必须代表有效的 H3 单元格。
- The input cells cannot have a higher resolution than the resolution specified in the
target_resolutionargument.
示例
The following example returns an uncompacted set of H3 cells that represent valid H3 cell IDs
and a target resolution of 10.