Learn R Programming

GEOmap (version 2.1)

getgreatarc: Great Circle Arc

Description

Get points along great circle between two locations

Usage

getgreatarc(lat1, lon1, lat2, lon2, num)

Arguments

lat1
Latitude, point 1 (degrees)
lon1
Longitude, point 1 (degrees)
lat2
Latitude, point 2 (degrees)
lon2
Longitude, point 2 (degrees)
num
number of points along arc

Value

  • latLatitude
  • lonLongitude

See Also

getgreatarc, distaz

Examples

Run this code
PARIS = c(48.8666666666667, 2.33333333333333)
RIODEJANEIRO =c( -22.9,  -43.2333333333333)

g = getgreatarc(PARIS[1],PARIS[2], RIODEJANEIRO[1], RIODEJANEIRO[2],
100)

data(worldmap)

plotGEOmap(worldmap, add=FALSE, shiftlon=180)

lines(g$lon+180, g$lat)

Run the code above in your browser using DataLab