geo_h3cell_to_polygon()
Gilt für: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Berechnet das Polygon, das den rechteckigen Bereich der H3-Zelle darstellt.
Weitere Informationen zu H3 Cell.
Syntax
geo_h3cell_to_polygon(
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
Polygon im GeoJSON-Format und eines dynamischen Datentyps. Wenn die H3 Cell ungültig ist, erzeugt die Abfrage ein NULL-Ergebnis.
Hinweis
H3 Cell Polygonränder sind gerade Linien und sind keine Geodätik. Wenn ein H3 Cell-Polygon Teil einer anderen Berechnung ist, sollten Sie es mit geo_polygon_densify()verdichten.
Beispiele
print geo_h3cell_to_polygon("862a1072fffffff")
Output
print_0 |
---|
{ "type": "Polygon", "koordinaten": [[-74.0022744646159, 40.735376026215022], [-74.046908029686236, 40.727986222489115], [-74.0606107122223664, 40.696775140349033],[ -74.02972408156682, 40.672970047595463], [-73.985140983708192, 40.680349049267583],[ -73.971393761028622, 40.71154393543933], [-74.0022744646159, 40.735376026215022]]] } |
Im folgenden Beispiel werden geoJSON-Geometrieauflistungen von H3 Cell-Polygonen zusammengefasst.
// H3 cell GeoJSON collection
datatable(lng:real, lat:real)
[
-73.956683, 40.807907,
-73.916869, 40.818314,
-73.989148, 40.743273,
]
| project h3_hash = geo_point_to_h3cell(lng, lat, 6)
| project h3_hash_polygon = geo_h3cell_to_polygon(h3_hash)
| summarize h3_hash_polygon_lst = make_list(h3_hash_polygon)
| project bag_pack(
"type", "Feature",
"geometry", bag_pack("type", "GeometryCollection", "geometries", h3_hash_polygon_lst),
"properties", bag_pack("name", "H3 polygons collection"))
Output
Spalte1 |
---|
{ "type": "Feature", "geometry": {"type": "GeometryCollection", "geometries": [{"type": "Polygon","coordinates": [[[-73.9609635556213, 40.829061732419916], [-74.005691351383675, 40.821680937801922], [-74.01944838354617, 40.790439140236963], [-73.988522328408948, 40.766594382212254], [-73.943844904976629, 40.773964402038523], [-73.930043202964953, 40.805189944379514], [-73.9609635556213, 40.829061732419916]]]}, {"type": "Polygon", "coordinates": [[-73.902385078754875, 40.86767151513595], [-73.94715685019348, 40.86031068399885], [-73.9609635556213, 40.829061732419916], [-73.930043202964953, 40.805189944379514], [-73.885321931061725, 40.812540084842404 ], [-73.871470551071766, 40.8437727272773125], [ -73.902385078754875, 40.8676715151513595]]]}, {"type": "Polygon","coordinates": [[-73.943844904976629, 40.77396402038523], [-73.988522328408948, 40.766594382212254], [-74.0022744646159, 40.735376026215022], [-73.971393761028622, 40.71154393543933], [-73.92676604813565, 40.718903205013063], [ -73.912969923470314, 40.750105305345329 ], [-73.943844904976629, 40.773964402038523]]]}] }, "properties": {"name": "H3 polygons collection"} } |
Im folgenden Beispiel wird ein NULL-Ergebnis aufgrund der ungültigen H3 Cell-Tokeneingabe zurückgegeben.
print geo_h3cell_to_polygon("@")
Output
print_0 |
---|