次の方法で共有


geo_geohash_to_polygon()

適用対象: ✅Microsoft FabricAzure データ エクスプローラーAzure MonitorMicrosoft Sentinel

Geohash 四角形領域を表すポリゴンを計算します。

geohash についての詳細をお読みください。

構文

geo_geohash_to_polygon(geohash)

構文規則について詳しく知る。

パラメーター

件名 タイプ Required 説明
geohash string ✔️ geo_point_to_geohash()によって計算された geohash 値。 geohash 文字列*は 1 ~18 文字でなければなりません。

返品

GeoJSON 形式および動的データ型のポリゴン。 geohash が無効な場合、クエリによって null の結果が生成されます。

Note

geohash のエッジ*は直線であり、測地線ではありません。 geohash ポリゴン*が他の計算のパーツ*である場合は、geo_polygon_densify() でポリゴン*を高密度化することを検討してください。

print GeohashPolygon = geo_geohash_to_polygon("dr5ru");

出力

GeohashPolygon
{
"type": "Polygon",
"coordinates": [
[[-74.00390625, 40.7373046875], [-73.9599609375, 40.7373046875], [-73.9599609375, 40.78125], [-74.00390625, 40.78125], [-74.00390625, 40.7373046875]]]
}

次の例では、ジオメトリ*のポリゴン*の GeoJSON ジオメトリ* コレクション*をアセンブルします。

// 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"))

出力

列 1
{
"type": "Feature",
"geometry": {"type": "GeometryCollection","geometries": [
{"type": "Polygon", "coordinates": [[[-74.00390625, 40.78125], [-73.9599609375, 40.78125], [-73.9599609375, 40.8251953125],[ -74.00390625, 40.8251953125], [ -74.00390625, 40.78125]]]},
{"type": "Polygon", "coordinates": [[[ -73.9599609375, 40.78125], [-73.916015625, 40.78125], [-73.916015625, 40.8251953125], [-73.9599609375, 40.8251953125], [-73.9599609375, 40.78125]]]},
{"type": "Polygon", "coordinates": [[[-74.00390625, 40.7373046875], [-73.9599609375, 40.7373046875], [-73.9599609375, 40.78125], [-74.00390625, 40.78125], [-74.00390625, 40.7373046875]]]}]
},
"properties": {"name": "Geohash polygons collection"
}}

次の例では、geohash 入力が無効であるため、null の結果が返されます。

print GeohashPolygon = geo_geohash_to_polygon("a");

出力

GeohashPolygon