次の方法で共有


geo_s2cell_to_polygon()

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

S2 セルの四角形領域を表すポリゴンを計算します。

S2 セル*の詳細をご覧ください。

構文

geo_s2cell_to_polygon(s2cell)

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

パラメーター

件名 タイプ Required 説明
s2cell string ✔️ geo_point_to_s2cell()によって計算された S2 セル トークン値。 S2 セル トークン文字列の最大長は 16 文字です。

返品

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

Note

S2 のセル*エッジ*は球面測地線となります。

print s2cellPolygon = geo_s2cell_to_polygon("89c259")

出力

s2cellPolygon
{
"type": "Polygon",
"coordinates": [[[-74.030012249838478, 40.8012684339439], [-74.030012249838478, 40.7222262918358], [-73.935982114337421, 40.708880489804564], [-73.935982114337421, 40.787917134506841], [-74.030012249838478, 40.8012684339439]]]
}

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

datatable(lng:real, lat:real)
[
    -73.956683, 40.807907,
    -73.916869, 40.818314,
    -73.989148, 40.743273,
]
| project s2_hash = geo_point_to_s2cell(lng, lat, 10)
| project s2_hash_polygon = geo_s2cell_to_polygon(s2_hash)
| summarize s2_hash_polygon_lst = make_list(s2_hash_polygon)
| project bag_pack(
    "type", "Feature",
    "geometry", bag_pack("type", "GeometryCollection", "geometries", s2_hash_polygon_lst),
    "properties", bag_pack("name", "S2 Cell polygons collection"))

出力

列 1
{
"type": "Feature",
"geometry": {"type": "GeometryCollection", "geometries": [
{"type": "Polygon", "coordinates": [[[-74.030012249838478, 40.880202851376716], [-74.030012249838478, 40.8012684339439], [-73.935982114337421, 40.787917134506841], [-73.935982114337421, 40.866846163445771], [-74.030012249838478, 40.880202851376716]]]},
{"type": "Polygon", "coordinates": [[[-73.935982114337421, 40.866846163445771], [-73.935982114337421, 40.787917134506841], [-73.841906340776248, 40.774477568182071], [-73.841906340776248, 40.853401155678846], [-73.935982114337421, 40.866846163445771]]]},
{"type": "Polygon", "coordinates": [[[-74.030012249838478, 40.8012684339439], [-74.030012249838478, 40.7222262918358], [-73.935982114337421, 40.708880489804564], [-73.935982114337421, 40.787917134506841], [-74.030012249838478, 40.8012684339439]]]}]
},
"properties": {"name": "S2 Cell polygons collection"}
}

次の例では、s2 セル トークン*の入力*が無効な*ため、null 値*の結果が返されます。

print s2cellPolygon = geo_s2cell_to_polygon("a")

出力

s2cellPolygon