教學課程:建立地理空間視覺效果
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
本教學課程適用於想要使用 Kusto 查詢語言 (KQL) 進行地理空間視覺效果的人員。 地理空間叢集是依據地理位置來組織和分析數據的一種方式。 KQL 提供多個方法來執行 地理空間群集 ,以及地理 空間視覺效果的工具。
在本教學課程中,您將了解如何:
必要條件
若要執行下列查詢,您需要具有範例數據的存取權的查詢環境。 您可以使用下列其中一項:
- Microsoft帳戶或Microsoft Entra 使用者身分識別
- 具有Microsoft網狀架構功能的容量的網狀架構工作區
在地圖上繪製點
若要在地圖上可視化點,請使用 專案 來選取包含經度的數據行,然後選取包含緯度的數據行。 然後,使用 轉譯 來查看散佈圖中的結果,並將 kind
設定為 map
。
StormEvents
| take 100
| project BeginLon, BeginLat
| render scatterchart with (kind = map)
繪製多個數列點
若要將多個點數列可視化,請使用 專案 來選取經度和緯度,以及定義數列的第三個數據行。
在下列查詢中,數列是 EventType
。 這些點會根據其 EventType
以不同方式著色,且選取時會顯示數據行的內容 EventType
。
StormEvents
| take 100
| project BeginLon, BeginLat, EventType
| render scatterchart with (kind = map)
您也可以在執行 時明確指定 xcolumn
[經度]、 ycolumn
[緯度] 和 series
。render
當結果中的數據行多於經度、緯度和數列數據行時,此規格是必要的。
StormEvents
| take 100
| render scatterchart with (kind = map, xcolumn = BeginLon, ycolumns = BeginLat, series = EventType)
使用 GeoJSON 值在地圖上繪製點
動態 GeoJSON 值可以變更或更新,而且通常用於即時對應應用程式。 使用動態 GeoJSON 值的對應點,可讓您更彈性地控制地圖上數據的表示法,而可能無法使用純緯度和經度值。
下列查詢會 使用geo_point_to_s2cell 和 geo_s2cell_to_central_point 來對應散佈圖中的 storm 事件。
StormEvents
| project BeginLon, BeginLat
| summarize by hash=geo_point_to_s2cell(BeginLon, BeginLat, 5)
| project point = geo_s2cell_to_central_point(hash)
| project lng = toreal(point.coordinates[0]), lat = toreal(point.coordinates[1])
| render scatterchart with (kind = map)
表示具有可變大小泡泡的數據點
藉由在每個叢集中執行匯總,然後繪製叢集的中心點,將數據點的分佈可視化。
例如,下列查詢會篩選 「Tornado」 事件類型的所有 storm 事件。 然後,它會根據事件經度和緯度將事件分組成叢集、計算每個叢集中的事件數目,以及投影叢集的中心點,並轉譯地圖以可視化結果。 具有最大龍捲風的區域會根據其大型泡泡大小清楚地偵測到。
StormEvents
| where EventType == "Tornado"
| project BeginLon, BeginLat
| where isnotnull(BeginLat) and isnotnull(BeginLon)
| summarize count_summary=count() by hash = geo_point_to_s2cell(BeginLon, BeginLat, 4)
| project geo_s2cell_to_central_point(hash), count_summary
| extend Events = "count"
| render piechart with (kind = map)
顯示特定區域內的點
使用多邊形來定義區域和 geo_point_in_polygon 函式,以篩選該區域內發生的事件。
下列查詢會定義代表南加州區域的多邊形,並篩選此區域內的風暴事件。 然後,它會將事件分組成叢集、計算每個叢集中的事件數目、投影叢集的中心點,以及轉譯地圖以可視化叢集。
let southern_california = dynamic({
"type": "Polygon",
"coordinates": [[[-119.5, 34.5], [-115.5, 34.5], [-115.5, 32.5], [-119.5, 32.5], [-119.5, 34.5]]
]});
StormEvents
| where geo_point_in_polygon(BeginLon, BeginLat, southern_california)
| project BeginLon, BeginLat
| summarize count_summary = count() by hash = geo_point_to_s2cell(BeginLon, BeginLat, 8)
| project geo_s2cell_to_central_point(hash), count_summary
| extend Events = "count"
| render piechart with (kind = map)
在 LineString 上顯示附近的點
下列查詢會尋找沿著指定LineString發生的附近 storm事件,此事件代表已定義的路徑。 在此情況下,LineString 是通往 Key West 的道路。 geo_distance_point_to_line() 函式是用來根據其接近定義的LineString來篩選 storm事件。 如果事件距離LineString 500公尺以內,則會在地圖上轉譯事件。
let roadToKeyWest = dynamic({
"type":"linestring",
"coordinates":[
[
-81.79595947265625,
24.56461038017685
],
[
-81.595458984375,
24.627044746156027
],
[
-81.52130126953125,
24.666986385216273
],
[
-81.35650634765625,
24.66449040712424
],
[
-81.32354736328125,
24.647017162630366
],
[
-80.8099365234375,
24.821639356846607
],
[
-80.62042236328125,
24.93127614538456
],
[
-80.37872314453125,
25.175116531621764
],
[
-80.42266845703124,
25.19251511519153
],
[
-80.4803466796875,
25.46063471847754
]
]});
StormEvents
| where isnotempty(BeginLat) and isnotempty(BeginLon)
| project BeginLon, BeginLat, EventType
| where geo_distance_point_to_line(BeginLon, BeginLat, roadToKeyWest) < 500
| render scatterchart with (kind=map)
在多邊形中顯示附近的點
下列查詢會尋找在指定多邊形內發生的附近 storm 事件。 在此情況下,多邊形是通往 Key West 的道路。 geo_distance_point_to_polygon() 函式可用來根據風暴事件與定義的多邊形的鄰近性來篩選風暴事件。 如果事件在多邊形的 500 公尺內,則會在地圖上轉譯事件。
let roadToKeyWest = dynamic({
"type":"polygon",
"coordinates":[
[
[
-80.08209228515625,
25.39117928167583
],
[
-80.4913330078125,
25.517657429994035
],
[
-80.57922363281249,
25.477992320574817
],
[
-82.188720703125,
24.632038149596895
],
[
-82.1942138671875,
24.53712939907993
],
[
-82.13104248046875,
24.412140070651528
],
[
-81.81243896484375,
24.43714786161562
],
[
-80.58746337890625,
24.794214972389486
],
[
-80.08209228515625,
25.39117928167583
]
]
]});
StormEvents
| where isnotempty(BeginLat) and isnotempty(BeginLon)
| project BeginLon, BeginLat, EventType
| where geo_distance_point_to_polygon(BeginLon, BeginLat, roadToKeyWest) < 500
| render scatterchart with (kind=map)
根據地理空間數據尋找異常
下列查詢會執行特定狀態內發生的 storm 事件分析。 查詢會使用 S2 儲存格和時態匯總來調查損壞模式。 結果是一個視覺異常圖表,描繪了一段時間的風暴引發破壞中任何不規則或偏差,並詳細說明風暴在指定狀態界限內的影響。
let stateOfInterest = "Texas";
let statePolygon = materialize(
US_States
| extend name = tostring(features.properties.NAME)
| where name == stateOfInterest
| project geometry=features.geometry);
let stateCoveringS2cells = statePolygon
| project s2Cells = geo_polygon_to_s2cells(geometry, 9);
StormEvents
| extend s2Cell = geo_point_to_s2cell(BeginLon, BeginLat, 9)
| where s2Cell in (stateCoveringS2cells)
| where geo_point_in_polygon(BeginLon, BeginLat, toscalar(statePolygon))
| make-series damage = avg(DamageProperty + DamageCrops) default = double(0.0) on StartTime step 7d
| extend anomalies=series_decompose_anomalies(damage)
| render anomalychart with (anomalycolumns=anomalies)
相關內容
- 請參閱地理空間群集的使用案例: 適用於汽車測試車隊的數據分析
- 瞭解地理空間數據處理和分析的 Azure 架構
- 閱讀 白皮書,以全面瞭解 Azure 數據總管