Skip to contents

Visualise vector fields (such as, electric/magnetic fields, wind speed, or water currents) with arrows as a layer in a ggplot.

Usage

GeomFields

geom_fields(
  mapping = NULL,
  data = NULL,
  stat = "fields",
  position = "identity",
  na.rm = FALSE,
  show.legend = NA,
  max_radius = ggplot2::unit(0.5, "cm"),
  .angle_correction = angle_correction,
  arrow = grid::arrow(length = ggplot2::unit(0.2, "cm")),
  inherit.aes = TRUE,
  ...
)

Format

An object of class GeomFields (inherits from GeomSegment, Geom, ggproto, gg) of length 8.

Arguments

mapping

Set of aesthetic mappings created by aes(). If specified and inherit.aes = TRUE (the default), it is combined with the default mapping at the top level of the plot. You must supply mapping if there is no plot mapping.

data

Can be one of four things:

  • NULL: in that case data from the parent ggplot call is inherited.

  • data.frame: you need to assign the x and y aesthetics.

  • sf object: it should contain a geometry column with only POINT geometries.

  • stars object: it will be converted automatically to an sf object.

stat

The statistical transformation to use on the data for this layer. By default it is set to GeomFields() ("fields").

position

Position adjustment, either as a string naming the adjustment (e.g. "jitter" to use position_jitter), or the result of a call to a position adjustment function. Use the latter if you need to change the settings of the adjustment.

na.rm

If FALSE, the default, missing values are removed with a warning. If TRUE, missing values are silently removed.

show.legend

logical. Should this layer be included in the legends? NA, the default, includes if any aesthetics are mapped. FALSE never includes, and TRUE always includes. It can also be a named logical vector to finely select the aesthetics to display.

max_radius

Maximum radius to which the radius aesthetic is scaled in the plot. You can use absolute ("e.g., "cm", "in", "pt") and relative ("npc") units to set its value. Default is 0.5 cm.

.angle_correction

Function to correct the angle in the aesthetics for the projection and/or aspect ratio used in the plot. When set to NULL the angle is not corrected and is treated as the angle in the final plot. A custom function can be provided which should accept at least three arguments (data, panel_params and coord). See angle_correction() and vignette("angle_correction") for more details.

arrow

specification for arrow heads, as created by grid::arrow().

inherit.aes

If FALSE, overrides the default aesthetics, rather than combining with them. This is most useful for helper functions that define both data and aesthetics and shouldn't inherit behaviour from the default plot specification, e.g. borders().

...

Other arguments passed on to layer(). These are often aesthetics, used to set an aesthetic to a fixed value, like colour = "red" or size = 3. They may also be parameters to the paired geom/stat.

Value

A layer which can be added to a ggplot.

Details

Adds a layer with vector fields to a ggplot. In order to achieve this two special aesthetic are required: radius and angle.

Aesthetics

  • geometry|x: Either a geometry column or x coordinate. In case of geometry the column should be of class sf::sfc_POINT. In case of x, it should be a numeric vector, and the aesthetic y needs to be specified as well. It specifies the location of the origin of each vector.

  • radius: This aesthetic will be used to scale the radius of the vector arrows in the field you wish to display. The maximum radius of the arrows is given by parameter max_radius. See vignette("radius_aes") for more details.

  • angle: This aesthetic represent the angles of the vectors in your field in radians. Contrary to the mathematical definition, an angle of 0 radians will point upwards (instead of to the right). This was chosen such because in most geographical applications an angle of zero degrees points Northwards. Before plotting these angles are corrected by the function passed to the .angle_correction argument. See vignette("angle_corrections) for more details.

  • y: This aesthetic needs to be used in combination with the x aesthetic. It needs to be a numeric vector.

  • fill: See vignette("ggplot2-specs", "ggplot2")

  • colour: See vignette("ggplot2-specs", "ggplot2")

  • linetype: See vignette("ggplot2-specs", "ggplot2")

  • linewidth: See vignette("ggplot2-specs", "ggplot2")

  • alpha: A variable to control the opacity of an element.

Author

Pepijn de Vries

Examples

data(seawatervelocity)

if (requireNamespace("ggplot2") && requireNamespace("stars") &&
      requireNamespace("scales")) {
  library(ggplot2)
  library(stars)
  
  sw_df <- as.data.frame(seawatervelocity)
  ggplot(sw_df, aes(x = x, y = y, radius = as.numeric(v), angle = as.numeric(angle))) +
    geom_fields(max_radius = unit(0.5, "cm"), na.rm = TRUE)
  
  ggplot() +
    geom_fields(data    = seawatervelocity,
                mapping = aes(radius = as.numeric(v),
                              angle  = as.numeric(angle),
                              col    = as.numeric(v)),
                max_radius = unit(0.5, "cm")) +
    scale_colour_viridis_c()
}