Learn R Programming

inlabru (version 2.8.0)

fm_identical_CRS: Check if two CRS objects are identical

Description

Check if two CRS objects are identical

Usage

fm_identical_CRS(crs0, crs1, crsonly = FALSE)

Arguments

crs0, crs1

Two sf::crs, sp::CRS, fm_crs or inla.CRS objects to be compared.

crsonly

logical. If TRUE and any of crs0 and crs1 are fm_crs or inla.CRS objects, extract and compare only the sf::crs or sp::CRS aspects. Default: FALSE

See Also

fm_crs(), fm_CRS()

Examples

Run this code

crs0 <- crs1 <- fm_crs("longlat_globe")
fm_crs_oblique(crs1) <- c(0, 90)
print(c(
  fm_identical_CRS(crs0, crs0),
  fm_identical_CRS(crs0, crs1),
  fm_identical_CRS(crs0, crs1, crsonly = TRUE)
))

Run the code above in your browser using DataLab