inla.identical.CRS {INLA} | R Documentation |
Wrapper for identical, optionally testing only the CRS part of two objects
inla.identical.CRS(crs0, crs1, crsonly = FALSE)
crs0 |
A |
crs1 |
A |
crsonly |
Logical. If |
Finn Lindgren finn.lindgren@gmail.com
crs0 <- inla.CRS("longlat") crs1 <- inla.CRS("longlat", oblique = c(0, 90)) print(c( inla.identical.CRS(crs0, crs0), inla.identical.CRS(crs0, crs1), inla.identical.CRS(crs0, crs1, crsonly = TRUE) ))