View source: R/geom_glyph_ribbon.R
geom_glyph_ribbon | R Documentation |
This function creates a ribbon geometry designed to display glyphs based on the combination of 'x_major' and 'y_major'. For each 'x_minor' value, 'geom_glyph_ribbon()' displays a y interval defined by 'ymin_minor' and 'ymax_minor'.
geom_glyph_ribbon(
mapping = NULL,
data = NULL,
show.legend = NA,
stat = "identity",
position = "identity",
x_major = NULL,
y_major = NULL,
x_minor = NULL,
ymin_minor = NULL,
ymax_minor = NULL,
height = "default",
width = "default",
x_scale = identity,
y_scale = identity,
global_rescale = TRUE,
inherit.aes = TRUE,
...
)
mapping |
Set of aesthetic mappings created by |
data |
The data to be displayed in this layer. There are three options: If A A |
show.legend |
logical. Should this layer be included in the legends?
|
stat |
The statistical transformation to use on the data for this layer.
When using a
|
position |
A position adjustment to use on the data for this layer. This
can be used in various ways, including to prevent overplotting and
improving the display. The
|
x_major , y_major , x_minor , ymin_minor , ymax_minor |
Each combination of 'x_major' and 'y_major' forms a unique grid cell. 'ymin_minor' and 'ymax_minor' define the lower and upper bounds of the geom_ribbon. |
height |
The height of each glyph. The 'default' is calculated using the ratio (1:1.618) relative to the 'width', to maintain a consistent aspect ratio. |
width |
The width of each glyph. The 'default' is set to the smallest distance between two consecutive coordinates, converted from meters to degrees of latitude using the Haversine method. |
x_scale , y_scale |
The scaling function applied to each set of minor values within a grid cell. Defaults to 'identity'. |
global_rescale |
A setting that determines whether to perform rescaling globally or on individual glyphs. |
inherit.aes |
If |
... |
Additional arguments passed on to function. |
A ggplot object.
library(ggplot2)
# Basic glyph map with base map and custom theme
aus_temp |>
ggplot(aes(x_major = long, y_major = lat,
x_minor = month, ymin_minor = tmin, ymax_minor = tmax)) +
geom_sf(data = ozmaps::abs_ste, fill = "grey95",
color = "white",inherit.aes = FALSE) +
geom_glyph_ribbon() +
ggthemes::theme_map()
# Adjust width and height of the glyph
aus_temp |>
ggplot(aes(x_major = long, y_major = lat,
x_minor = month, ymin_minor = tmin, ymax_minor = tmax)) +
geom_sf(data = ozmaps::abs_ste, fill = "grey95",
color = "white",inherit.aes = FALSE) +
geom_glyph_ribbon(width = rel(4.5), height = rel(3)) +
ggthemes::theme_map()
# Extend glyph map with reference box and line
aus_temp |>
ggplot(aes(x_major = long, y_major = lat,
x_minor = month, ymin_minor = tmin, ymax_minor = tmax)) +
geom_sf(data = ozmaps::abs_ste, fill = "grey95",
color = "white",inherit.aes = FALSE) +
add_glyph_boxes() +
add_ref_lines() +
geom_glyph_ribbon() +
ggthemes::theme_map()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.