geo_azimuth()
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
点 1 から真北までの直線と地球上の point1 から point2 までの直線の間のラジアン単位の時計回りの角度を計算します。
構文
geo_azimuth(
p1_longitude,
p1_latitude,
p2_longitude,
p2_latitude)
構文規則について詳しく知る。
パラメーター
件名 | タイプ | Required | 説明 |
---|---|---|---|
p1_longitude | real |
✔️ | 最初の地理空間座標の経度値 (度単位)。 有効な値は [-180, +180] の範囲内です。 |
p1_latitude | real |
✔️ | 最初の地理空間座標の緯度値 (度単位)。 有効な値の範囲は [-90, +90] です。 |
p2_longitude | real |
✔️ | 2 番目の地理空間座標の経度値 (度単位)。 有効な値は [-180, +180] の範囲内です。 |
p2_latitude | real |
✔️ | 2 番目の地理空間座標の緯度値 (度単位)。 有効な値の範囲は [-90, +90] です。 |
返品
点 p1 から真北と直線 [p1, p2] の間のラジアン単位の角度。 角度は時計回りに測定されます。
Note
例
次の例では、ラジアン単位で方位角を計算します。
print azimuth_in_radians = geo_azimuth(5, 10, 10, -40)
出力
azimuth_in_radians |
---|
3.05459939796449 |
次の例では、方位角を度単位で計算します。
let azimuth_in_radians = geo_azimuth(5, 10, 10, -40);
print azimuth_in_degrees = degrees(azimuth_in_radians);
出力
azimuth_in_degrees |
---|
175.015653606568 |
次の例では、移動中にその場所のテレメトリを出力し、その移動方向を検索するトラックを考慮します。
let get_direction = (azimuth:real)
{
let pi = pi();
iff(azimuth < pi/2, "North-East",
iff(azimuth < pi, "South-East",
iff(azimuth < 3*pi/2, "South-West",
"North-West")));
};
datatable(timestamp:datetime, lng:real, lat:real)
[
datetime(2024-01-01T00:01:53.048506Z), -115.4036607693417, 36.40551631046261,
datetime(2024-01-01T00:02:53.048506Z), -115.3256807623232, 36.34102142760111,
datetime(2024-01-01T00:03:53.048506Z), -115.2732290602112, 36.28458914829917,
datetime(2024-01-01T00:04:53.048506Z), -115.2513186233914, 36.27622394664352,
datetime(2024-01-01T00:05:53.048506Z), -115.2352055633212, 36.27545547038515,
datetime(2024-01-01T00:06:53.048506Z), -115.1894341934856, 36.28266934431671,
datetime(2024-01-01T00:07:53.048506Z), -115.1054318118468, 36.28957085435267,
datetime(2024-01-01T00:08:53.048506Z), -115.0648614339413, 36.28110743285072,
datetime(2024-01-01T00:09:53.048506Z), -114.9858032867736, 36.29780696509714,
datetime(2024-01-01T00:10:53.048506Z), -114.9016966527561, 36.36556196813566,
]
| sort by timestamp asc
| extend prev_lng = prev(lng), prev_lat = prev(lat)
| where isnotnull(prev_lng) and isnotnull(prev_lat)
| extend direction = get_direction(geo_azimuth(prev_lng, prev_lat, lng, lat))
| project direction, lng, lat
| render scatterchart with (kind = map)
出力
次の例では、最初のポイントが 2 番目のポイントと等しいため、 true
を返します。
print is_null = isnull(geo_azimuth(5, 10, 5, 10))
出力
is_null |
---|
true |