knitr::opts_chunk$set(collapse = TRUE, comment = "#>") options(knitr.table.format = "html", rmarkdown.html_vignette.check_title = FALSE) library(eRTG3D) set.seed(123) track.wgs84 <- transformCRS.3d(niclas, fromCRS=2056, toCRS=4326)[ ,1:3]
"A [...] coordinate reference system (CRS) is a coordinate-based local, regional or global system used to locate geographical entities. A spatial reference system defines a specific map projection, as well as transformations between different spatial reference systems. [...] spatial reference systems can be referred to using a SRID integer, including EPSG codes ..." (wikipedia.org, 2019).
The SRIDs and corresponding EPSG codes of all CRS can be found on spatialreference.org. The most common global CRS in latitude and longitude is WGS84 (used by the GPS satellite navigation system) with the following CRS string "+init=epsg:4326"
as identifier.
The eRTG3D only supports calculations in Cartesian coordinate systems. In case of latitude / longitude data (e.g.: WGS84), these must be converted into a Cartesian coordinate system, as for example the Universal Transverse Mercator (UTM).
head(track.wgs84)
To carry out a CRS transformation, please use transformCRS.3d()
, which is based on the st_transform()
from the sf
package. Therefore is supports CRS transformations in 3-D.
track <- transformCRS.3d(track.wgs84, fromCRS=4326, toCRS=2056) head(track)
Note: spTransform()
from the sp
package only supports transformations in the 2-D plane, which will cause distortions in the third dimension.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.