View source: R/geom_glyph_segment.R
geom_glyph_segment | R Documentation |
This function enables the creation of segment glyphs by defining major coordinates (longitude and latitude) and minor segment structures within a grid cell. Each glyph's appearance can be customized by specifying its height, width, and scaling, allowing for flexible data representation in a visual context.
geom_glyph_segment(
mapping = NULL,
data = NULL,
stat = "identity",
position = "identity",
...,
x_major = NULL,
x_minor = NULL,
y_major = NULL,
y_minor = NULL,
yend_minor = NULL,
width = "default",
x_scale = identity,
y_scale = identity,
height = "default",
global_rescale = TRUE,
show.legend = NA,
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 |
stat |
The statistical transformation to use on the data for this
layer, either as a |
position |
Position adjustment, either as a string naming the adjustment
(e.g. |
... |
Other arguments passed on to |
x_major , x_minor , y_major , y_minor , yend_minor |
The name of the
variable (as a string) for the major and minor x and y axes. |
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. |
y_scale , x_scale |
The scaling function to be applied to each set of
minor values within a grid cell. The default is |
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. |
global_rescale |
Determines whether or not the rescaling is performed globally or separately for each individual glyph. |
show.legend |
logical. Should this layer be included in the legends?
|
inherit.aes |
If |
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, y_minor = tmin, yend_minor = tmax)) +
geom_sf(data = ozmaps::abs_ste, fill = "grey95",
color = "white",inherit.aes = FALSE) +
geom_glyph_segment() +
ggthemes::theme_map()
# Adjust width and height of the glyph
aus_temp |>
ggplot(aes(x_major = long, y_major = lat,
x_minor = month, y_minor = tmin, yend_minor = tmax)) +
geom_sf(data = ozmaps::abs_ste, fill = "grey95",
color = "white",inherit.aes = FALSE) +
geom_glyph_segment(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, y_minor = tmin, yend_minor = tmax)) +
geom_sf(data = ozmaps::abs_ste, fill = "grey95",
color = "white",inherit.aes = FALSE) +
add_glyph_boxes() +
add_ref_lines() +
geom_glyph_segment() +
ggthemes::theme_map()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.