geo_points_bearing {geosed} | R Documentation |
Bearing Between Two Latitude and Longitude Points
Description
Calculates the bearing angle in degrees between two latitude, longitude points
Usage
geo_points_bearing(coordinate_pair)
Arguments
coordinate_pair |
A matrix of latitude and longitude columns and two rows of points |
Value
A vector of length 1 containing a bearing
Author(s)
Shant Sukljian
See Also
Examples
# Load required packages
require(mapview)
require(sp)
# Create sample geo dataset
sample_coord <-
matrix(
c(
sample(327131680:419648450, 2) / 10000000,
sample(-1147301410:-1241938690, 2) / 10000000
),
ncol = 2
)
# Calculate bearing
(gpb <- geo_points_bearing(sample_coord))
# Create SpacialPoints object and pass to mapview for visualization
mapview(
SpatialPoints(
sample_coord[,c(2, 1)],
proj4string = CRS("+proj=longlat +datum=WGS84")
)
)
[Package geosed version 0.1.1 Index]