- Categories:
H3_STRING_TO_INT¶
Converts an H3 cell ID in hexadecimal format to an INTEGER value.
- See also:
Syntax¶
H3_STRING_TO_INT( <cell_id> )
Arguments¶
cell_id
A VARCHAR that represents the cell ID (index) in hexadecimal format.
Returns¶
Returns an INTEGER value that represents the H3 cell ID.
Examples¶
The following example converts an H3 cell ID from hexadecimal format to an INTEGER value.
SELECT H3_STRING_TO_INT('89283087033FFFF');
+------------------------------------------------+
| H3_STRING_TO_INT('89283087033FFFF') |
|------------------------------------------------|
| 617700171168612351 |
+------------------------------------------------+