Distance Between Geographic Coordinates
Calculate surface distance between geographic coordinates. UTF-8
geodist(Nfrom, Efrom, Nto, Eto, units="km")
Nfrom
: latitude of origin.Efrom
: longitude of origin.Nto
: latitude of destination.Eto
: longitude of destination.units
: how distance is measured: "km"
for kilometres, "nm"
for nautical miles.Latitude and longitude are passed as decimal numbers, e.g. 66.5 for 6630N. Vectors of coordinates are supported.
Vector of distances.
The surface distance between geographic coordinates is:
where distance and coordinates are expressed in radians. and is the latitude of origin and destination, and and is longitude.
The calculations assume a perfect sphere and elevation differences are ignored. The SI definition of a nautical mile is exactly 1.852 km.
diff
, Trig
.
gmt-package
gives an overview of the package.
geodist(55.75,37.63, 39.9,116.4) # Moscow - Beijing geodist(90,0, -90,0, "nm") # from pole to pole