Description Usage Arguments Value Author(s) See Also Examples
Wrapper for sp::CRS and inla.CRS objects to extract the 
coordinate reference system argument string.  
| 1 2 3 4 5 | inla.CRSargs(x, ...)
inla.as.list.CRS(x, ...)
inla.as.list.CRSargs(x, ...)
inla.as.CRS.list(x, ...)
inla.as.CRSargs.list(x, ...)
 | 
| x | An  | 
| ... | Additional arguments passed on to other methods. | 
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.
Finn Lindgren <finn.lindgren@gmail.com>
| 1 2 3 4 5 6 7 8 9 10 11 | if (require(rgdal)) {
  crs0 <- inla.CRS("longlat")
  p4s <- inla.CRSargs(crs0)
  lst <- inla.as.list.CRSargs(p4s)
  crs1 <- inla.as.CRS.list(lst)
  lst$a <- 2
  crs2 <- inla.CRS(p4s, args=lst)
  print(inla.CRSargs(crs0))
  print(inla.CRSargs(crs1))
  print(inla.CRSargs(crs2))
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.