gcd_hf: Calculates the geodesic distance between two points specified...

Description Usage Arguments Details Value Note References Examples

Description

Calculates the geodesic distance between two points specified by latitude and longitude using the Haversine formula

Usage

1
gcd_hf(long1, lat1, long2, lat2)

Arguments

long1

- Longitudinal value of first point in decimal degrees

lat1

- Latitudinal value of first point in decimal degrees

long2

- Longitudinal value of second point in decimal degrees

lat2

- Latitudinal value of second point in decimal degrees

Details

The Haversine formula can be inaccurate depending on coordinates

Value

Returns the distance between two points on the Earth in kilometers

Note

The haversine method is inaccuarate and should only be used when the vicenty formula fails or over very small distances

References

[1] Adapted from http://www.r-bloggers.com/great-circle-distance-calculations-in-r/

Examples

1
2
3
4
5
long1<-22
lat1<-44
long2<-52
lat2<-51
gcd_hf(long1,lat1,long2,lat2)

GeoRange documentation built on May 1, 2019, 8:03 p.m.

Related to gcd_hf in GeoRange...