EVOLUTION-MANAGER
Edit File: st_m_range.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: Return 'm' range of a simple feature or simple feature set</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 st_m_range {sf}"><tr><td>st_m_range {sf}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Return 'm' range of a simple feature or simple feature set</h2> <h3>Description</h3> <p>Return 'm' range of a simple feature or simple feature set </p> <h3>Usage</h3> <pre> ## S3 method for class 'm_range' is.na(x) st_m_range(obj, ...) ## S3 method for class 'POINT' st_m_range(obj, ...) ## S3 method for class 'MULTIPOINT' st_m_range(obj, ...) ## S3 method for class 'LINESTRING' st_m_range(obj, ...) ## S3 method for class 'POLYGON' st_m_range(obj, ...) ## S3 method for class 'MULTILINESTRING' st_m_range(obj, ...) ## S3 method for class 'MULTIPOLYGON' st_m_range(obj, ...) ## S3 method for class 'GEOMETRYCOLLECTION' st_m_range(obj, ...) ## S3 method for class 'MULTISURFACE' st_m_range(obj, ...) ## S3 method for class 'MULTICURVE' st_m_range(obj, ...) ## S3 method for class 'CURVEPOLYGON' st_m_range(obj, ...) ## S3 method for class 'COMPOUNDCURVE' st_m_range(obj, ...) ## S3 method for class 'POLYHEDRALSURFACE' st_m_range(obj, ...) ## S3 method for class 'TIN' st_m_range(obj, ...) ## S3 method for class 'TRIANGLE' st_m_range(obj, ...) ## S3 method for class 'CIRCULARSTRING' st_m_range(obj, ...) ## S3 method for class 'sfc' st_m_range(obj, ...) ## S3 method for class 'sf' st_m_range(obj, ...) ## S3 method for class 'numeric' st_m_range(obj, ..., crs = NA_crs_) NA_m_range_ </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>x</code></td> <td> <p>object of class <code>m_range</code></p> </td></tr> <tr valign="top"><td><code>obj</code></td> <td> <p>object to compute the m range from</p> </td></tr> <tr valign="top"><td><code>...</code></td> <td> <p>ignored</p> </td></tr> <tr valign="top"><td><code>crs</code></td> <td> <p>object of class <code>crs</code>, or argument to <a href="st_crs.html">st_crs</a>, specifying the CRS of this bounding box.</p> </td></tr> </table> <h3>Format</h3> <p>An object of class <code>m_range</code> of length 2. </p> <h3>Details</h3> <p><code>NA_m_range_</code> represents the missing value for a <code>m_range</code> object </p> <h3>Value</h3> <p>a numeric vector of length two, with <code>mmin</code> and <code>mmax</code> values; if <code>obj</code> is of class <code>sf</code> or <code>sfc</code> the object if <code>obj</code> is of class <code>sf</code> or <code>sfc</code> the object returned has a class <code>m_range</code> </p> <h3>Examples</h3> <pre> a = st_sf(a = 1:2, geom = st_sfc(st_point(0:3), st_point(1:4)), crs = 4326) st_m_range(a) st_m_range(c(mmin = 16.1, mmax = 16.6), crs = st_crs(4326)) </pre> <hr /><div style="text-align: center;">[Package <em>sf</em> version 0.9-5 <a href="00Index.html">Index</a>]</div> </body></html>