File: roundExtent.Rd

package info (click to toggle)
r-cran-raster 3.6-31-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,300 kB
  • sloc: cpp: 2,367; ansic: 1,572; sh: 13; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 918 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
\name{Extent math}

\alias{floor,Extent-method}
\alias{ceiling,Extent-method}
  
\title{round Extent coordinates}

\description{

use \code{round(x, digits=0)} to round the coordinates of an Extent object to the number of digits specified. This can be useful when dealing with a small imprecision in the data (e.g. 179.9999 instead of 180). \code{floor} and \code{ceiling} move the coordiantes to the outer or inner whole integer numbers.

It is also possible to use Arithmetic functions with Extent objects (but these work perhaps unexpectedly!)

See \code{\link[raster]{Math-methods}} for these (and many more) methods with Raster* objects.
}

\usage{
\S4method{floor}{Extent}(x)
\S4method{ceiling}{Extent}(x)
}

\arguments{
\item{x}{Extent object }
}


\seealso{\code{\link[raster]{Math-methods}}}
  

\examples{
e <- extent(c(0.999999,  10.000011, -60.4, 60))
round(e)
ceiling(e)
floor(e)
}

\keyword{ spatial }