EVOLUTION-MANAGER
Edit File: stat_sf_coordinates.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Extract coordinates from 'sf' objects</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for stat_sf_coordinates {ggplot2}"><tr><td>stat_sf_coordinates {ggplot2}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Extract coordinates from 'sf' objects</h2> <h3>Description</h3> <p><code>stat_sf_coordinates()</code> extracts the coordinates from 'sf' objects and summarises them to one pair of coordinates (x and y) per geometry. This is convenient when you draw an sf object as geoms like text and labels (so <code><a href="ggsf.html">geom_sf_text()</a></code> and <code><a href="ggsf.html">geom_sf_label()</a></code> relies on this). </p> <h3>Usage</h3> <pre> stat_sf_coordinates( mapping = aes(), data = NULL, geom = "point", position = "identity", na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, fun.geometry = NULL, ... ) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>mapping</code></td> <td> <p>Set of aesthetic mappings created by <code><a href="aes.html">aes()</a></code> or <code><a href="aes_.html">aes_()</a></code>. If specified and <code>inherit.aes = TRUE</code> (the default), it is combined with the default mapping at the top level of the plot. You must supply <code>mapping</code> if there is no plot mapping.</p> </td></tr> <tr valign="top"><td><code>data</code></td> <td> <p>The data to be displayed in this layer. There are three options: </p> <p>If <code>NULL</code>, the default, the data is inherited from the plot data as specified in the call to <code><a href="ggplot.html">ggplot()</a></code>. </p> <p>A <code>data.frame</code>, or other object, will override the plot data. All objects will be fortified to produce a data frame. See <code><a href="fortify.html">fortify()</a></code> for which variables will be created. </p> <p>A <code>function</code> will be called with a single argument, the plot data. The return value must be a <code>data.frame</code>, and will be used as the layer data. A <code>function</code> can be created from a <code>formula</code> (e.g. <code>~ head(.x, 10)</code>).</p> </td></tr> <tr valign="top"><td><code>geom</code></td> <td> <p>The geometric object to use display the data</p> </td></tr> <tr valign="top"><td><code>position</code></td> <td> <p>Position adjustment, either as a string, or the result of a call to a position adjustment function.</p> </td></tr> <tr valign="top"><td><code>na.rm</code></td> <td> <p>If <code>FALSE</code>, the default, missing values are removed with a warning. If <code>TRUE</code>, missing values are silently removed.</p> </td></tr> <tr valign="top"><td><code>show.legend</code></td> <td> <p>logical. Should this layer be included in the legends? <code>NA</code>, the default, includes if any aesthetics are mapped. <code>FALSE</code> never includes, and <code>TRUE</code> always includes. It can also be a named logical vector to finely select the aesthetics to display.</p> </td></tr> <tr valign="top"><td><code>inherit.aes</code></td> <td> <p>If <code>FALSE</code>, 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. <code><a href="borders.html">borders()</a></code>.</p> </td></tr> <tr valign="top"><td><code>fun.geometry</code></td> <td> <p>A function that takes a <code>sfc</code> object and returns a <code>sfc_POINT</code> with the same length as the input. If <code>NULL</code>, <code>function(x) sf::st_point_on_surface(sf::st_zm(x))</code> will be used. Note that the function may warn about the incorrectness of the result if the data is not projected, but you can ignore this except when you really care about the exact locations.</p> </td></tr> <tr valign="top"><td><code>...</code></td> <td> <p>Other arguments passed on to <code><a href="layer.html">layer()</a></code>. These are often aesthetics, used to set an aesthetic to a fixed value, like <code>colour = "red"</code> or <code>size = 3</code>. They may also be parameters to the paired geom/stat.</p> </td></tr> </table> <h3>Details</h3> <p>coordinates of an <code>sf</code> object can be retrieved by <code>sf::st_coordinates()</code>. But, we cannot simply use <code>sf::st_coordinates()</code> because, whereas text and labels require exactly one coordinate per geometry, it returns multiple ones for a polygon or a line. Thus, these two steps are needed: </p> <ol> <li><p> Choose one point per geometry by some function like <code>sf::st_centroid()</code> or <code>sf::st_point_on_surface()</code>. </p> </li> <li><p> Retrieve coordinates from the points by <code>sf::st_coordinates()</code>. </p> </li></ol> <p>For the first step, you can use an arbitrary function via <code>fun.geometry</code>. By default, <code>function(x) sf::st_point_on_surface(sf::st_zm(x))</code> is used; <code>sf::st_point_on_surface()</code> seems more appropriate than <code>sf::st_centroid()</code> since lables and text usually are intended to be put within the polygon or the line. <code>sf::st_zm()</code> is needed to drop Z and M dimension beforehand, otherwise <code>sf::st_point_on_surface()</code> may fail when the geometries have M dimension. </p> <h3>Computed variables</h3> <dl> <dt>x</dt><dd><p>X dimension of the simple feature</p> </dd> <dt>y</dt><dd><p>Y dimension of the simple feature</p> </dd> </dl> <h3>Examples</h3> <pre> if (requireNamespace("sf", quietly = TRUE)) { nc <- sf::st_read(system.file("shape/nc.shp", package="sf")) ggplot(nc) + stat_sf_coordinates() ggplot(nc) + geom_errorbarh( aes(geometry = geometry, xmin = after_stat(x) - 0.1, xmax = after_stat(x) + 0.1, y = after_stat(y), height = 0.04), stat = "sf_coordinates" ) } </pre> <hr /><div style="text-align: center;">[Package <em>ggplot2</em> version 3.3.2 <a href="00Index.html">Index</a>]</div> </body></html>