Learn R Programming

geoops (version 0.3.0)

geo_bearing: Calculate bearing

Description

Calculate bearing

Usage

geo_bearing(point1, point2)

Arguments

point1

start geojson Feature<Point>

point2

end geojson Feature<Point>

Value

(number) bearing in decimal degrees

Examples

Run this code
# NOT RUN {
point1 <- '{
  "type": "Feature",
  "properties": {
    "marker-color": "#f00"
   },
   "geometry": {
      "type": "Point",
      "coordinates": [-75.343, 39.984]
   }
}'

point2 <- '{
  "type": "Feature",
  "properties": {
     "marker-color": "#0f0"
   },
   "geometry": {
      "type": "Point",
      "coordinates": [-75.534, 39.123]
    }
}'

geo_bearing(point1, point2)
# }

Run the code above in your browser using DataLab