GEO_TO_H3 (Lakehouse v1)
Returns the H3 index of the hexagon cell where the given location resides. Returning 0 means an error occurred.
Analyze Syntax
Section titled “Analyze Syntax”func.geo_to_h3(lon, lat, res)Analyze Examples
Section titled “Analyze Examples”func.geo_to_h3(37.79506683, 55.71290588, 15)
┌──────────────────────────────────────────────┐│ func.geo_to_h3(37.79506683, 55.71290588, 15) │├──────────────────────────────────────────────┤│ 644325524701193974 │└──────────────────────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”GEO_TO_H3(lon, lat, res)SQL Examples
Section titled “SQL Examples”SELECT GEO_TO_H3(37.79506683, 55.71290588, 15);
┌─────────────────────────────────────────┐│ geo_to_h3(37.79506683, 55.71290588, 15) │├─────────────────────────────────────────┤│ 644325524701193974 │└─────────────────────────────────────────┘