https://github.com/cran/gstat
Raw File
Tip revision: 1b2742a3d71abc7fbde73ca141b23e1375f185bf authored by Edzer Pebesma on 30 October 2011, 00:00:00 UTC
version 1.0-9
Tip revision: 1b2742a
meuse.alt.Rd
% $Id: meuse.alt.Rd,v 1.6 2006-02-10 19:03:27 edzer Exp $
\name{meuse.alt}
\alias{meuse.alt}
\title{Meuse river altitude data set}
\description{
This data set gives a point set with altitudes, digitized from the
1:10,000 topographical map of the Netherlands.
}
\format{
  This data frame contains the following columns:
  \describe{
    \item{x}{a numeric vector; x-coordinate (m) in RDM (Dutch topographical map coordinates) }
    \item{y}{a numeric vector; y-coordinate (m) in RDM (Dutch topographical map coordinates)}
	\item{alt}{altitude in m. above NAP (Dutch zero for sea level)}
  }
}
\usage{
data(meuse.alt)
}
\references{ 
\url{http:/www.gstat.org/} 
}
\seealso{\link{meuse.all}}
\keyword{datasets}
\examples{
data(meuse.alt)
library(lattice)
xyplot(y~x, meuse.alt, aspect = "iso")
}
back to top