spatial_convert {eseis} | R Documentation |
Convert coordinates between reference systems
Description
Coordinates are converted between reference systems.
Usage
spatial_convert(data, from, to)
Arguments
data |
|
from |
|
to |
|
Value
Numeric
data frame with converted coordinates.
Author(s)
Michael Dietze
Examples
## create lat lon coordinates
xy <- c(13, 55)
## define output coordinate systems
proj_in <- "+proj=longlat +datum=WGS84"
proj_out <- "+proj=utm +zone=32 +datum=WGS84"
## convert coordinate pair
spatial_convert(data = xy,
from = proj_in,
to = proj_out)
## define set of coordinates
xy <- data.frame(x = c(10, 11),
y = c(54, 55))
## convert set of coordinates
spatial_convert(data = xy,
from = proj_in,
to = proj_out)
[Package eseis version 0.7.3 Index]