reorient,GRaster-method | R Documentation |
This function converts facing between "north orientation" and "east orientation".
In "north orientation" systems, a 0-degree facing is north, and the angle of facing proceeds clockwise. For example, a 90 degree facing faces east, 180 south, and 270 west. In "east orientation", a 0-degree facing is east, and the facing angle proceeds counter-clockwise. For example, 90 is north, 180 is west, and 270 south.
## S4 method for signature 'GRaster'
reorient(x, units = "degrees")
## S4 method for signature 'numeric'
reorient(x, units = "degrees")
x |
A numeric vector or a |
units |
Character: "Units" of values in |
A GRaster
or numeric vector. Values will be in the range between 0 and 360 and represents facing in the system "opposing" the input's system. For example, if the input is north orientation, the output will be east orientation. If the input is in east orientation, the output will be in north orientation.
### Re-orient numeric values:
facings <- c(0, 90, 180, 270, 360)
reorient(facings)
# Re-reorienting returns the same values:
reorient(reorient(facings))
if (grassStarted()) {
### Re-orient a GRaster:
# Setup
library(terra)
madElev <- fastData("madElev")
elev <- fast(madElev)
# Calculate aspect in degrees, using north orientation:
aspectNorth <- terrain(elev, "aspect")
# Re-orient to east-facing:
aspectEast <- reorient(aspectNorth)
# Re-reorienting is the same, to within rounding error:
aspectNorth - reorient(reorient(aspectNorth))
# Plot:
aspects <- c(aspectNorth, aspectEast)
names(aspects) <- c("north_orientation", "east_orientation")
plot(aspects)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.