ggpLayerAxesSI.Rd
Performs necessary transformations to display axes of surface plots and STS/IAS line- or ridgeplots with SI units of length.
ggpLayerAxesSI(
object,
unit = getSpatialMethod(object)@unit,
which = c("x", "y"),
breaks = NULL,
add_labs = TRUE,
round = 2,
xrange = NULL,
yrange = NULL,
...
)
An object of class SPATA2
or, in case of S4 generics,
objects of classes for which a method has been defined.
The desired unit. Defaults to the unit
in which the original size of the image of the spatial method is
provided. Obtain valid input options with validUnitsOfLengthSI()
.
One or two of 'x' and 'y'. Specifies for which axes the transformation is performed. Defaults to both.
Specifies where the breaks are set. Labels are plotted in the unit
specified in unit
. Valid input:
NULL
: No specification. Five breaks are set equally distributed. Does not work with STS/IAS related plots as
the range is taken from the whole image.
vector
: Vector of distance measures. Breaks are set for axes denoted in which
. (Defaults to both, x and y.)
list
: List with slots x and y. Vector of distance measures to set each axis specifically.
Logical. If TRUE
, adds x- and y-labs to the plot.
Numeric value or FALSE
. If numeric, given to digits
of base::round()
. Rounds transformed values before they are returned.
Distance vector of length
two or NULL
. If not NULL
, specifies the x- and y-range to which
the spatial output is cropped. E.g. xrange = c(200, 500)
results in
the two dimensional space being cropped from x-coordinate 200px up to
x-coordinate 500px. If NULL
, the original range is used.
Used to absorb deprecated arguments or functions.
Specifies how the axis are expanded. Using expand
of ggplot2::scale_x/y_continuous()
.
Valid input:
NULL
or TRUE
: No specification. Default is used.
FALSE
: No expansion.
vector
: Numeric vector of length two. Input is set for axes denoted in which
. (Defaults to both, x and y.)
list
: List with slots x and y. Numeric vector of length two, used for each axis specifically.
Deprecated in favor of breaks
.
Deprecated. Use ggplayerFrame*()
- functions.
Vectors of length two. Distance measures that set the limits on the respective axes.
ggpLayer*()
-functions return lists of ggproto
objects
that can be added to ggplots via the +
operator. In most of the cases
they are supposed to be added to plots created with the plotSurface*()
family.
Several functions in SPATA2
have arguments that take distance input.
To specifically refer to a distance the unit must be specified. There are
three ways to create valid input for these arguments.
1. In pixel:
There are two valid input options to specify the distance in pixel:
numeric: Single numeric values, e.g. arg_input <- c(2, 3.554, 69, 100.67)
. If no unit
is specified the input will be interpreted as pixels.
character: Suffixed with 'px', e.g. arg_input <- c('2px', '3.554px', '69px', '100.67px')
Note: The unit pixel (px) is used for distances as well as for areas. If pixel refers to a distance the pixel side length is meant. If pixel refers to an area the number of pixels is meant.
2. According to the Systeme international d`unites (SI):
Specifying distances in SI units e.g. arg_input <- c('2mm', '4mm')
etc.
requires the input to be a character as the unit must be provided as suffix.
Between the numeric value and the unit must be no empty space! Valid suffixes
can be obtained using the function validUnitsOfLengthSI()
.
3. As vectors of class unit
:
Behind the scenes SPATA2
works with the units
package. Input
is converted into vectors of class units
. Therefore, input can be directly
provided this way: arg_input <- units::set_unit(x = c(2,4), value = 'mm')
Note that pixel is not a valid unit in the units
package. If you want
to specify the input in pixel you have to use input option 1. In pixel.
library(SPATA2)
data("example_data")
object <- loadExampleObject("UKF275T")
containsPixelScaleFactor(object) # must be TRUE
# no axes specification
plotSurface(object, color_by = "METRN") +
ggpLayerThemeCoords()
# in millimeters
plotSurface(object, color_by = "METRN") +
ggpLayerThemeCoords() +
ggpLayerAxesSI(object, unit = "mm")
# in millimeters set specifically
my_breaks <- str_c(1:7, "mm")
print(my_breaks)
# breaks can be a vector of distance values
plotSurface(object, color_by = "METRN") +
ggpLayerThemeCoords() +
ggpLayerAxesSI(object, unit = "mm", breaks = my_breaks, add_labs = TRUE)
# or a list of vectors of distance values for each axis
plotSurface(object, color_by = "METRN") +
ggpLayerThemeCoords() +
ggpLayerAxesSI(object, unit = "mm", breaks = list(x = my_breaks, y = str_c(2:5, "mm")), add_labs = TRUE)