geo_s2cell_to_central_point()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
計算代表 S2 儲存格中心地理空間座標。
深入瞭解 S2 單元格階層。
語法
geo_s2cell_to_central_point(
s2cell)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
s2cell | string |
✔️ | S2 單元格標記值,因為它是由geo_point_to_s2cell()計算。 S2 單元格標記的最大字串長度為 16 個字元。 |
傳回
GeoJSON 格式和動態數據類型的地理空間座標值。 如果 S2 單元格令牌無效,查詢將會產生 Null 結果。
注意
GeoJSON 格式會指定經度第一個和緯度第二。
範例
print point = geo_s2cell_to_central_point("1234567")
| extend coordinates = point.coordinates
| extend longitude = coordinates[0], latitude = coordinates[1]
輸出
point | 座標 | 經度 | 緯度 |
---|---|---|---|
{ "type": "Point", “coordinates”: [ 9.86830731850408, 27.468392925827604 ] } |
[ 9.86830731850408, 27.468392925827604 ] |
9.86830731850408 | 27.4683929258276 |
下列範例會傳回 Null 結果,因為 S2 單元格令牌輸入無效。
print point = geo_s2cell_to_central_point("a")
輸出
point |
---|