Learn R Programming

fossil (version 0.4.0)

deg.dist: Haversine Distance Formula

Description

Haversine formula to calculate distances between points on the earth

Usage

deg.dist(
	long1, 
	lat1, 
	long2, 
	lat2
)

Arguments

long1

longitude of location 1

lat1

latitude of location 1

long2

longitude of location 2

lat2

latitude of location 2

Value

Arc distance between two points on the Earth's surface in kilometers.

Details

This function will calculate the shortest distance (portion of a Great Circle) in kilometers between two points on the Earth given their latitude and longitude.

References

The formulas for the Haversine distance function were taken from the Dr. Math website at http://mathforum.org/library/drmath/view/55417.html

See Also

To calculate pairwise distances between a list of points see earth.dist, or to calculate an area enclosed by three points on the Earth's surface, see earth.tri

Examples

Run this code
# NOT RUN {
##distance between 23 degrees N 54 degrees E and 32 degrees S 67 degrees E
deg.dist(23,54,-32,67)
# }

Run the code above in your browser using DataLab