geo_geohash_neighbors()
Platí pro: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
Vypočítá sousedy Geohash.
Přečtěte si další informace o geohash
.
Syntaxe
geo_geohash_neighbors(
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
Pole sousedů Geohash. Pokud je Geohash neplatný, dotaz vytvoří výsledek null.
Příklady
Následující příklad vypočítá sousedy Geohash.
print neighbors = geo_geohash_neighbors('sunny')
Výstup
sousedé |
---|
["sunnt","sunpj","sunnx","sunpn","sunnv","sunpp","sunnz","sunnw"] |
Následující příklad vypočítá pole vstupní Geohash se svými sousedy.
let geohash = 'sunny';
print cells = array_concat(pack_array(geohash), geo_geohash_neighbors(geohash))
Výstup
buňky |
---|
["sunny","sunnt","sunpj","sunnx","sunpn","sunnv","sunpp","sunnz","sunnw"] |
Následující příklad vypočítá geohash mnohoúhelníky GeoJSON geometry collection.
let geohash = 'sunny';
print cells = array_concat(pack_array(geohash), geo_geohash_neighbors(geohash))
| mv-expand cells to typeof(string)
| project polygons = geo_geohash_to_polygon(cells)
| summarize arr = make_list(polygons)
| project geojson = bag_pack("type", "Feature","geometry", bag_pack("type", "GeometryCollection", "geometries", arr), "properties", bag_pack("name", "polygons"))
Výstup
geojson |
---|
{"type": "Feature","geometry": {"type": "GeometryCollection","geometrie": [ {"type":"Polygon";"souřadnice":[[[42.451171875,23,6865234375],[42.4951171875;23,6865234375],[42.4951171875,23,73046875],[42.451171875,23,73046875],[42.451171875,23,6865234375]]]}, {"type":"Polygon";"souřadnice":[[[42.4072265625;23.642578125],[42.451171875;23.642578125],[42.45117 1875,23,6865234375],[42.4072265625,23,6865234375],[42.4072265625 23.642578125]]]}, {"type":"Polygon";"souřadnice":[[[42.4072265625;23.73046875],[42.451171875;23.73046875],[42.451171875,23.7744140625],[42.4072265625,23,7744140625],[42.4072265625,23.73046875]]]}, {"type":"Polygon";"souřadnice":[[[42.4951171875;23.642578125],[42.5390625;23.642578125],[42.53906 25,23,6865234375],[42.4951171875,23,6865234375],[4951171875,23,642578125]]]}, {"type":"Polygon";"souřadnice":[[[42.451171875,23,73046875],[42.4951171875;23.73046875],[42.4951171875,23,7744140625],[42.451171875,23,7744140625],[42,451171875,23,73046875]]]}, {"type":"Mnohoúhelník";"souřadnice":[[[42.4072265625;23,6865234375],[42.451171875;23,6865234375],[42.451 171875,23,73046875],[42.4072265625,23,73046875],[42.4072265625,23,6865234375]]]}, {"type":"Mnohoúhelník","souřadnice":[[[42.4951171875;23,73046875],[42.5390625;23,73046875],[42.539062 5,23,7744140625],[42.4951171875,23,7744140625],[4951171875,23,73046875]}, {"type":"Polygon";"souřadnice":[[[42.4951171875;23,6865234375],[42.5390625;23,6865234375],[42.5390625,23,73046875],[42.4951171875,23,73046875],[42.4951171875,23,6865234375]]]}, {"type":"Polygon";"souřadnice":[[[42.451171875;23.642578125],[42.4951171875;23.642578125],[42.495117 1875,23,6865234375],[42.451171875,23,6865234375],[42,451171875,23,642578125]]]}]}} "properties": {"name": "polygons"}} |
Následující příklad vypočítá mnohoúhelníky, které představují Geohash a jeho sousedy.
let h3cell = 'sunny';
print cells = array_concat(pack_array(h3cell), geo_geohash_neighbors(h3cell))
| mv-expand cells to typeof(string)
| project polygons = geo_geohash_to_polygon(cells)
| summarize arr = make_list(polygons)
| project polygon = geo_union_polygons_array(arr)
Výstup
mnohoúhelník |
---|
{"type":"Polygon","coordinates":[[[42.4072265625,23.642578125],[42.451171875,23.642578125],[42.4951171875,23.642578125],[42.5390625,23.642578125],[42.5390625,23.686523437500004],[42.5390625,23.730468750000004],[42.5390625,23.7744140625],[42.4951171875,23.7744140625],[42.451171875,23.7744140625],[42.407226562499993,23.7744140625],[42.4072265625,23.73046875],[42.4072265625,23.6865234375],[42.4072265625,23.642578125]]]} |
Následující příklad vrátí hodnotu true kvůli neplatnému vstupu tokenu Geohash.
print invalid = isnull(geo_geohash_neighbors('a'))
Výstup
neplatné |
---|
0 |