| inla.CRSargs {INLA} | R Documentation |
Show expanded CRS arguments
Description
Wrapper for sp::CRS and inla.CRS objects to extract the
coordinate reference system argument string.
'r lifecycle::badge("deprecated")' in favour of fmesher::fm_proj4string(),
or fmesher::fm_wkt() for WKT2 representations.
Usage
inla.CRSargs(x, ...)
inla.as.CRSargs.list(x, ...)
inla.as.list.CRSargs(x, ...)
inla.as.list.CRS(x, ...)
inla.as.CRS.list(x, ...)
Arguments
x |
An |
... |
Additional arguments passed on to other methods. |
Details
-
inla.as.CRSargs.list: CRS proj4 string for name=value pair list
-
inla.as.list.CRSargs: List of name=value pairs from CRS proj4 string
Value
For inla.CRSargs and inla.as.CRSargs.list, a character
string with PROJ.4 arguments.
For inla.as.list.CRS and inla.as.list.CRSargs, a list of
name/value pairs.
For inla.as.CRS.list, a CRS or inla.CRS object.
Author(s)
Finn Lindgren finn.lindgren@gmail.com
See Also
Examples
if (require("sf") && require("sp") && require("fmesher")) {
crs0 <- fm_CRS("longlat_norm")
p4s <- fm_proj4string(crs0)
lst <- inla.as.list.CRSargs(p4s)
crs1 <- inla.as.CRS.list(lst)
lst$a <- 2
crs2 <- fm_CRS(p4s, args = lst)
print(fm_proj4string(crs0))
print(fm_proj4string(crs1))
print(fm_proj4string(crs2))
}