geo_geohash_to_polygon()
Platí pro: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Vypočítá mnohoúhelník, který představuje obdélníkovou oblast geohash.
Přečtěte si další informace o geohashu.
Syntaxe
geo_geohash_to_polygon(
geohash)
Přečtěte si další informace o konvencích syntaxe.
Parametry
Název | Type | Požadováno | Popis |
---|---|---|---|
geohash | string |
✔️ | Hodnota geohash vypočítaná geo_point_to_geohash (). Řetězec geohash musí mít délku 1 až 18 znaků. |
Návraty
Mnohoúhelník ve formátu GeoJSON a dynamického datového typu. Pokud je geohash neplatný, dotaz vytvoří výsledek null.
Poznámka:
Hrany Geohash jsou rovné čáry a nejsou geodesics. Pokud je mnohoúhelník geohash součástí některého jiného výpočtu, zvažte jeho odepření pomocí geo_polygon_densify().
Příklady
print GeohashPolygon = geo_geohash_to_polygon("dr5ru");
Výstup
GeohashPolygon |
---|
{ "type": "Polygon", "souřadnice": [ [[-74.00390625, 40.7373046875], [-73.9599609375, 40.7373046875], [-73.9599609375, 40.78125], [-74.00390625, 40.78125], [-74.00390625, 40.7373046875]]] } |
Následující příklad sestaví geometrii GeoJSON kolekce geohash polygonů.
// Geohash GeoJSON collection
datatable(lng:real, lat:real)
[
-73.975212, 40.789608,
-73.916869, 40.818314,
-73.989148, 40.743273,
]
| project geohash = geo_point_to_geohash(lng, lat, 5)
| project geohash_polygon = geo_geohash_to_polygon(geohash)
| summarize geohash_polygon_lst = make_list(geohash_polygon)
| project bag_pack(
"type", "Feature",
"geometry", bag_pack("type", "GeometryCollection", "geometries", geohash_polygon_lst),
"properties", bag_pack("name", "Geohash polygons collection"))
Výstup
Column1 |
---|
{ "type": "Feature", "geometrie": {"type": "GeometryCollection","geometrie": [ {"type": "Polygon", "souřadnice": [[-74.00390625, 40.78125], [-73.9599609375, 40.78125], [-73.9599609375, 40.8251953125],[ -74.00390625, 40.8251953125], [ -74.00390625, 40.78125]]]}, {"type": "Mnohoúhelník", "souřadnice": [[[ -73.9599609375, 40.78125], [-73.916015625, 40.78125], [-73.916015625, 40.8251953125], [-73.9599609375, 40.8251953125], [-73.9599609375, 40.78125]]}, {"type": "Mnohoúhelník", "souřadnice": [[-74.00390625, 40.7373046875], [-73.9599609375, 40.7373046875], [-73.9599609375, 40.78125], [-74.00390625, 40.78125], [-74.00390625, 40.7373046875]]]}] }, "properties": {"name": "Kolekce polygonů Geohash" }} |
Následující příklad vrátí výsledek null z důvodu neplatného vstupu geohash.
print GeohashPolygon = geo_geohash_to_polygon("a");
Výstup
GeohashPolygon |
---|