Categories:

Geospatial Functions

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.

Syntax¶

H3_UNCOMPACT_CELLS_STRINGS( <array_of_cell_ids> , <target_resolution> )
Copy

Arguments¶

array_of_cell_ids

An array of VARIANT values that contain VARCHAR hexadecimal values that represent H3 cell IDs (indexes).

target_resolution

An INTEGER value between 0 and 15 (inclusive) specifying the H3 resolution that you want to use for the returned H3 cells.

Specifying any other INTEGER value results in an error.

Returns¶

Returns a value of the ARRAY data type or 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.

  • If the input is NULL, returns NULL without reporting an error.

Usage notes¶

  • All of the VARCHAR hexadecimal values in the input must represent valid H3 cells.

  • The input cells cannot have a higher resolution than the resolution specified in the target_resolution argument.

Examples¶

The following example returns an uncompacted set of H3 cells that represent valid H3 cell IDs and a target resolution of 10.

SELECT H3_UNCOMPACT_CELLS_STRINGS(
  [
    '8a2a1072339ffff',
    '892a1072377ffff'
  ],
  10
) AS uncompacted;
Copy
+----------------------+
| UNCOMPACTED          |
|----------------------|
| [                    |
|   "8a2a1072339ffff", |
|   "8a2a10723747fff", |
|   "8a2a1072374ffff", |
|   "8a2a10723757fff", |
|   "8a2a1072375ffff", |
|   "8a2a10723767fff", |
|   "8a2a1072376ffff", |
|   "8a2a10723777fff"  |
| ]                    |
+----------------------+