File: origin.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 (42 lines) | stat: -rw-r--r-- 791 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
40
41
42
\name{origin}

\alias{origin}
\alias{origin,BasicRaster-method}
\alias{origin<-}
\alias{origin<-,BasicRaster-method}

  
\title{Origin}

\description{
Origin returns (or sets) the coordinates of the point of origin of a Raster* object. This is the point closest to (0, 0) that you could get if you moved towards that point in steps of the x and y resolution.
}

\usage{
origin(x, ...)
origin(x) <- value
}

\arguments{
  \item{x}{Raster* object}
  \item{value}{numeric vector of length 1 or 2}
  \item{...}{additional arguments. None implemented}  
}


\value{
A vector of two numbers (x and y coordinates), or a changed origin for \code{x}.
}

\seealso{ \code{\link[raster]{extent}}}


\examples{
r <- raster(xmn=-0.5, xmx = 9.5, ncols=10)
origin(r)
r
origin(r) <- 0
r
}

\keyword{spatial}