Home > 距離計算


C#で2つの座標間の距離を計算する方法

using System; public class Program { public static void Main() { // 2つの座標の緯度経度を指定する double lat1 = 35.6895; // 緯度1 double lon1 = 139.6917; // 経度1 double lat2 = 37.7749; // 緯度2 double lon2 = -122.4194; // 経度2 // 座標間の距離を計算する double distanc>>More