2023-02-03 23:35:22 +01:00
|
|
|
|
using OSMDatastructure;
|
|
|
|
|
|
2023-02-08 19:05:54 +01:00
|
|
|
|
namespace OSMDatastructure
|
2023-02-03 23:35:22 +01:00
|
|
|
|
{
|
|
|
|
|
public struct Utils
|
|
|
|
|
{
|
|
|
|
|
public static double DistanceBetween(Coordinates c1, Coordinates n2)
|
|
|
|
|
{
|
2023-02-06 17:32:55 +01:00
|
|
|
|
return DistanceBetween(c1.latitude, c1.longitude, n2.latitude, n2.longitude);
|
2023-02-03 23:35:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static double DistanceBetween(Coordinates c1, float lat2, float lon2)
|
|
|
|
|
{
|
2023-02-06 17:32:55 +01:00
|
|
|
|
return DistanceBetween(c1.latitude, c1.longitude, lat2, lon2);
|
2023-02-03 23:35:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static double DistanceBetween(float lat1, float lon1, Coordinates c2)
|
|
|
|
|
{
|
|
|
|
|
return DistanceBetween(c2, lat1, lon1);
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-06 17:32:55 +01:00
|
|
|
|
public static double DistanceBetween(OsmNode node1, OsmNode node2)
|
|
|
|
|
{
|
|
|
|
|
return DistanceBetween(node1.coordinates, node2.coordinates);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static double DistanceBetween(OsmNode node1, Coordinates c2)
|
|
|
|
|
{
|
|
|
|
|
return DistanceBetween(node1.coordinates, c2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static double DistanceBetween(Coordinates c1, OsmNode n2)
|
|
|
|
|
{
|
|
|
|
|
return DistanceBetween(c1, n2.coordinates);
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-03 23:35:22 +01:00
|
|
|
|
public static double DistanceBetween(float lat1, float lon1, float lat2, float lon2) //Law of Cosines
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* From https://www.movable-type.co.uk/scripts/latlong.html
|
|
|
|
|
*/
|
|
|
|
|
double rlat1 = DegreesToRadians(lat1);
|
|
|
|
|
double rlat2 = DegreesToRadians(lat2);
|
|
|
|
|
double drlon = DegreesToRadians(lon2 - lon1);
|
|
|
|
|
const int R = 6371000;
|
|
|
|
|
|
|
|
|
|
double d = Math.Acos(Math.Sin(rlat1) * Math.Sin(rlat2) + Math.Cos(rlat1) * Math.Cos(rlat2) * Math.Cos(drlon)) * R;
|
|
|
|
|
|
|
|
|
|
return d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static double DistanceBetweenHaversine(float lat1, float lon1, float lat2, float lon2)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* From https://www.movable-type.co.uk/scripts/latlong.html
|
|
|
|
|
*/
|
|
|
|
|
const int R = 6371000;
|
|
|
|
|
double rlat1 = DegreesToRadians(lat1);
|
|
|
|
|
double rlat2 = DegreesToRadians(lat2);
|
|
|
|
|
double rdlat = DegreesToRadians(lat2 - lat1);
|
|
|
|
|
double drlon = DegreesToRadians(lon2 - lon1);
|
|
|
|
|
double a = Math.Sin(rdlat / 2) * Math.Sin(rdlat / 2) + Math.Cos(rlat1) * Math.Cos(rlat2) * Math.Sin(drlon / 2) * Math.Sin(drlon / 2);
|
|
|
|
|
double c = 2 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1 - a));
|
|
|
|
|
double d = R * c;
|
|
|
|
|
return d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static double DegreesToRadians(double deg)
|
|
|
|
|
{
|
|
|
|
|
return deg * Math.PI / 180.0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static double RadiansToDegrees(double rad)
|
|
|
|
|
{
|
|
|
|
|
return rad * 180.0 / Math.PI;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|