fm_crs_is_identical | R Documentation |
Check if two CRS objects are identical
fm_crs_is_identical(crs0, crs1, crsonly = FALSE)
fm_identical_CRS(crs0, crs1, crsonly = FALSE)
crs0 , crs1 |
Two |
crsonly |
logical. If |
logical, indicating if the two crs objects are identical in the
specified sense (see the crsonly
argument)
fm_crs()
, fm_CRS(), fm_crs_is_null()
crs0 <- crs1 <- fm_crs("longlat_globe")
fm_crs_oblique(crs1) <- c(0, 90)
print(c(
fm_crs_is_identical(crs0, crs0),
fm_crs_is_identical(crs0, crs1),
fm_crs_is_identical(crs0, crs1, crsonly = TRUE)
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.