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
|
\name{epi.convgrid}
\alias{epi.convgrid}
\title{Convert British National Grid georeferences to easting and northing coordinates}
\description{
Convert British National Grid georeferences to Brtish National Grid (EPSG 27700) easting and northing coordinates.
}
\usage{
epi.convgrid(osref)
}
\arguments{
\item{osref}{a vector of character strings listing the British National Grid georeferences to be converted.}
}
\note{
If an invalid georeference is encountered in the vector \code{os.ref} the method returns a \code{NA}.
}
\examples{
## EXAMPLE 1:
os.ref <- c("SJ505585","SJ488573","SJ652636")
epi.convgrid(os.ref)
os.ref <- c("SJ505585","SJ488573","ZZ123456")
epi.convgrid(os.ref)
}
\keyword{univar}% at least one, from doc/KEYWORDS
\keyword{univar}% __ONLY ONE__ keyword per line
|