get_ned
returns a RasterLayer
of elevation data cropped to a given
template study area.
get_ned(template, label, res = "1", raw.dir = "./RAW/NED",
extraction.dir = paste0("./EXTRACTIONS/", label, "/NED"),
raster.options = c("COMPRESS=DEFLATE", "ZLEVEL=9", "INTERLEAVE=BAND"),
force.redo = F)
A RasterLayer
DEM cropped to the extent of the template.
A Raster* or Spatial* object to serve as a template for cropping.
A character string naming the study area.
A character string representing the desired resolution of the NED. '1' indicates the 1 arc-second NED (the default), while '13' indicates the 1/3 arc-second dataset.
A character string indicating where raw downloaded files should be put. The directory will be created if missing. Defaults to './RAW/NED/'.
A character string indicating where the extracted and cropped DEM should be put. The directory will be created if missing. Defaults to './EXTRACTIONS/NED/'.
a vector of options for raster::writeRaster.
If an extraction for this template and label already exists, should a new one be created?
if (FALSE) {
# Extract data for the Village Ecodynamics Project 'VEPIIN' study area:
# http://village.anth.wsu.edu
vepPolygon <- polygon_from_extent(raster::extent(672800,740000,4102000,4170000),
proj4string='+proj=utm +datum=NAD83 +zone=12')
# Get the NED (USA ONLY)
# Returns a raster
NED <- get_ned(template=vepPolygon, label='VEPIIN')
# Plot with raster::plot
plot(NED)
}
Run the code above in your browser using DataLab