Compare,GRaster,GRaster-method | R Documentation |
You can do comparative operations on GRaster
s using normal operators in R: <
, <=
, ==
, !=
, >=
, and >
. You can also use %in%
for categorical GRasters
(see vignette("GRasters", package = "fasterRaster")
).
You can also compare two GRegion
s using the ==
and !=
operators. Most users of fasterRaster will not have to work much with "regions" (see vignette("regions", package = "fasterRaster")
), so can ignore this functionality. GRegion
s are the same if they have the same coordinate reference system, location/project and mapset (see vignette("projects_mapsets", package = "fasterRaster")
), topology (2D or 3D), extent, and resolution. If both are 3D, then they must also have the same vertical extent and number of depths.
## S4 method for signature 'GRaster,GRaster'
Compare(e1, e2)
## S4 method for signature 'logical,GRaster'
Compare(e1, e2)
## S4 method for signature 'GRaster,logical'
Compare(e1, e2)
## S4 method for signature 'numeric,GRaster'
Compare(e1, e2)
## S4 method for signature 'GRaster,numeric'
Compare(e1, e2)
## S4 method for signature 'GRaster,integer'
Compare(e1, e2)
## S4 method for signature 'integer,GRaster'
Compare(e1, e2)
## S4 method for signature 'GRaster,character'
Compare(e1, e2)
## S4 method for signature 'character,GRaster'
Compare(e1, e2)
## S4 method for signature 'GRegion,GRegion'
Compare(e1, e2)
e1 , e2 |
Values depend on the type of comparison:
|
Comparing GRaster
s: An "integer" GRaster
with values of 0 (FALSE), 1 (TRUE), or NA
(neither).
Comparing GRegion
s: Output is logical.
if (grassStarted()) {
# Setup
library(terra)
# Example data
madElev <- fastData("madElev")
# Convert a SpatRaster to a GRaster
elev <- fast(madElev)
elevs <- c(elev, elev, log10(elev) - 1, sqrt(elev))
names(elevs) <- c("elev1", "elev2", "log_elev", "sqrt_elev")
elev
elevs
# Comparisons
elev < 100
elev <= 100
elev == 100
elev != 100
elev > 100
elev >= 100
elev + 100 < 2 * elev
elevs > 10
10 > elevs
# logic
elev < 10 | elev > 200
elev < 10 | cos(elev) > 0.9
elev < 10 | TRUE
TRUE | elev > 200
elev < 10 | FALSE
FALSE | elev > 200
elev < 10 & cos(elev) > 0.9
elev < 10 & TRUE
TRUE & elev > 200
elev < 10 & FALSE
FALSE & elev > 200
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.