Skip to contents

This function modifies values in the input object x based on the specified conditions. It can operate on vectors, data.frames, or RasterLayer objects. The function allows for changing values within a specified range (Between), greater than or equals to (MoreThan) or less than or equals to (LessThan) a specified value to a new value (NewVal). An option to invert the selection is also available for ranges.

Usage

Range2NewVal(
  x = NULL,
  Between = NULL,
  MoreThan = NULL,
  LessThan = NULL,
  NewVal = NULL,
  Invert = FALSE
)

Arguments

x

A numeric vector, data.frame, RasterLayer, or SpatRaster object whose values are to be modified.

Between

Numeric. A numeric vector of length 2 specifying the range of values to be changed or kept. If specified, MoreThan and LessThan are ignored.

MoreThan, LessThan

Numeric. Threshold larger than or equal to/less than or equal to which values in x will be changed to NewVal. Only applied if Between is not specified.

NewVal

The new value to assign to the selected elements in x.

Invert

Logical. Whether to invert the selection specified by Between. If TRUE, values outside the specified range are changed to NewVal. Default is FALSE.

Value

The modified object x with values changed according to the specified conditions.

Author

Ahmed El-Gabbas

Examples

library(raster)
library(terra)
par(mar = c(0.5, 0.5, 1, 2.5), oma = c(0.5, 0.5, 0.5, 1))

# ---------------------------------------------

# Vector

(VV <- seq_len(10))
#>  [1]  1  2  3  4  5  6  7  8  9 10

Range2NewVal(x = VV, Between = c(5, 8), NewVal = NA)
#>  [1]  1  2  3  4 NA NA NA NA  9 10

Range2NewVal(x = VV, Between = c(5, 8), NewVal = NA, Invert = TRUE)
#>  [1] NA NA NA NA  5  6  7  8 NA NA

# MoreThan is ignored as Between is specified
Range2NewVal(x = VV, Between = c(5, 8), NewVal = NA, MoreThan = 4)
#>  [1]  1  2  3  4 NA NA NA NA  9 10

Range2NewVal(x = VV, NewVal = NA, MoreThan = 4)
#>  [1]  1  2  3 NA NA NA NA NA NA NA

Range2NewVal(x = VV, NewVal = NA, LessThan = 4)
#>  [1] NA NA NA NA  5  6  7  8  9 10

# ---------------------------------------------

# tibble

iris2 <- iris %>%
  tibble::as_tibble() %>%
  dplyr::slice_head(n = 50) %>%
  dplyr::select(-Sepal.Length, -Petal.Length, -Petal.Width) %>%
  dplyr::arrange(-Sepal.Width)

iris2 %>%
 dplyr::mutate(
   Sepal.Width.New = Range2NewVal(
      x = Sepal.Width, Between = c(3, 3.5), NewVal = NA, Invert = FALSE),
   Sepal.Width.Rev = Range2NewVal(
      x = Sepal.Width, Between = c(3, 3.5), NewVal = NA, Invert = TRUE)) %>%
 print(n = 50)
#> # A tibble: 50 × 4
#>    Sepal.Width Species Sepal.Width.New Sepal.Width.Rev
#>          <dbl> <fct>             <dbl>           <dbl>
#>  1         4.4 setosa              4.4            NA  
#>  2         4.2 setosa              4.2            NA  
#>  3         4.1 setosa              4.1            NA  
#>  4         4   setosa              4              NA  
#>  5         3.9 setosa              3.9            NA  
#>  6         3.9 setosa              3.9            NA  
#>  7         3.8 setosa              3.8            NA  
#>  8         3.8 setosa              3.8            NA  
#>  9         3.8 setosa              3.8            NA  
#> 10         3.8 setosa              3.8            NA  
#> 11         3.7 setosa              3.7            NA  
#> 12         3.7 setosa              3.7            NA  
#> 13         3.7 setosa              3.7            NA  
#> 14         3.6 setosa              3.6            NA  
#> 15         3.6 setosa              3.6            NA  
#> 16         3.6 setosa              3.6            NA  
#> 17         3.5 setosa             NA               3.5
#> 18         3.5 setosa             NA               3.5
#> 19         3.5 setosa             NA               3.5
#> 20         3.5 setosa             NA               3.5
#> 21         3.5 setosa             NA               3.5
#> 22         3.5 setosa             NA               3.5
#> 23         3.4 setosa             NA               3.4
#> 24         3.4 setosa             NA               3.4
#> 25         3.4 setosa             NA               3.4
#> 26         3.4 setosa             NA               3.4
#> 27         3.4 setosa             NA               3.4
#> 28         3.4 setosa             NA               3.4
#> 29         3.4 setosa             NA               3.4
#> 30         3.4 setosa             NA               3.4
#> 31         3.4 setosa             NA               3.4
#> 32         3.3 setosa             NA               3.3
#> 33         3.3 setosa             NA               3.3
#> 34         3.2 setosa             NA               3.2
#> 35         3.2 setosa             NA               3.2
#> 36         3.2 setosa             NA               3.2
#> 37         3.2 setosa             NA               3.2
#> 38         3.2 setosa             NA               3.2
#> 39         3.1 setosa             NA               3.1
#> 40         3.1 setosa             NA               3.1
#> 41         3.1 setosa             NA               3.1
#> 42         3.1 setosa             NA               3.1
#> 43         3   setosa             NA               3  
#> 44         3   setosa             NA               3  
#> 45         3   setosa             NA               3  
#> 46         3   setosa             NA               3  
#> 47         3   setosa             NA               3  
#> 48         3   setosa             NA               3  
#> 49         2.9 setosa              2.9            NA  
#> 50         2.3 setosa              2.3            NA  

# ---------------------------------------------

# RasterLayer / SpatRaster

grd_file <- system.file("external/test.grd", package = "raster")
R_raster <- raster::raster(grd_file)
R_terra <- terra::rast(grd_file)

# Convert values less than 500 to NA
R_raster2 <- Range2NewVal(x = R_raster, LessThan = 500, NewVal = NA)
plot(
   raster::stack(R_raster, R_raster2), nr = 1,
   main = c("\nOriginal", "\n<500 to NA"),
   box = FALSE, axes = FALSE, legend.width = 2, colNA = "lightgrey",
   xaxs = "i", yaxs = "i")


R_terra2 <- Range2NewVal(x = R_terra, LessThan = 500, NewVal = NA)
plot(
   c(R_terra, R_terra2), nr = 1, main = c("\nOriginal", "\n<500 to NA"),
   box = FALSE, axes = FALSE, colNA = "lightgrey", xaxs = "i", yaxs = "i")



# Convert values greater than 700 to NA
R_raster2 <- Range2NewVal(x = R_raster, MoreThan = 700, NewVal = NA)
plot(
   raster::stack(R_raster, R_raster2), nr = 1,
   main = c("\nOriginal", "\n>700 to NA"),
   box = FALSE, axes = FALSE, legend.width = 2, colNA = "lightgrey",
   xaxs = "i", yaxs = "i")


R_terra2 <- Range2NewVal(x = R_terra, MoreThan = 700, NewVal = NA)
plot(
   c(R_terra, R_terra2), nr = 1, main = c("\nOriginal", "\n>700 to NA"),
   box = FALSE, axes = FALSE, colNA = "lightgrey", xaxs = "i", yaxs = "i")