geo_h3cell_level()
Gilt für: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Berechnet die H3-Zellauflösung.
Weitere Informationen zu H3 Cell.
Syntax
geo_h3cell_level(
h3cell)
Erfahren Sie mehr über Syntaxkonventionen.
Parameter
Name | Type | Erforderlich | Beschreibung |
---|---|---|---|
h3cell | string |
✔️ | Ein H3 Cell-Tokenwert, wie er durch geo_point_to_h3cell()berechnet wurde. |
Gibt zurück
Eine ganze Zahl, die H3 Cell level darstellt. Gültige Ebene befindet sich im Bereich [0, 15]. Wenn die H3 Cell ungültig ist, erzeugt die Abfrage ein NULL-Ergebnis.
Beispiele
print cell_res = geo_h3cell_level('862a1072fffffff')
Output
cell_res |
---|
6 |
print cell_res = geo_h3cell_level(geo_point_to_h3cell(1,1,10))
Output
cell_res |
---|
10 |
The following example returns true because of the invalid H3 Cell token input.
print invalid_res = isnull(geo_h3cell_level('abc'))
Output
invalid_res |
---|
1 |