Learn R Programming

⚠️There's a newer version (0.99.0) of this package.Take me there.

elevatr

An R package for accessing elevation data from various sources

The elevatr package currently provides access to elevation data from from Mapzen (Mapzen Tile Service for raster digital elevation models. For point elevation data, either the Mapzen Elevation Service or the USGS Elevation Point Query Service) may be used. Additional elevation data sources may be added.

Current plan for this package includes just two functions to access elevation web services:

  • get_elev_point(): Get point elevations using the Mapzen Elevation Service or the USGS Elevation Point Query Service (for the US Only) . This will accept a data frame of x (long) and y (lat) or a SpatialPoints/SpatialPointsDataFame as input. A SpatialPointsDataFrame is returned.
  • get_elev_raster(): Get elevation data as a raster (e.g. a Digital Elevation Model) from the Mapzen Terrain GeoTIFF Service. Other sources may be added later. This will accept a data frame of of x (long) and y (lat) or any sp or raster object as input and will return a raster object of the elevation tiles that cover the bounding box of the input spatial data.

Installation

Version 0.1.1 of this package is currently available from CRAN and may be installed by:

install.packages("elevatr")

The development version (this repo) may installed with devtools:

library(devtools)
install_github("jhollist/elevatr")

API Keys

The elevatr packages will look for API keys stored as environment variables. Currently the only API key required is from Mapzen. Go to https://mapzen.com/developers and create a new key. Copy this key and add to your .Renviron file. This can be done using the method suggested here. For example:

cat("mapzen_key=mapzen-XXXXXXX\n",
    file=file.path(normalizePath("~/"), ".Renviron"),
    append=TRUE)

You will need to restart R, but once the key is there you are good to go on that machine. elevatr will access the key via Sys.getenv("mapzen_key")

Attribution

Mapzen terrain tiles contain 3DEP, SRTM, and GMTED2010 content courtesy of the U.S. Geological Survey and ETOPO1 content courtesy of U.S. National Oceanic and Atmospheric Administration.

Repositories

The source code for this repository is maintained at https://github.com/jhollist/elevatr which is also mirrored at https://github.com/usepa/elevatr

EPA Disclaimer

The United States Environmental Protection Agency (EPA) GitHub project code is provided on an "as is" basis and the user assumes responsibility for its use. EPA has relinquished control of the information and no longer has responsibility to protect the integrity , confidentiality, or availability of the information. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by EPA. The EPA seal and logo shall not be used in any manner to imply endorsement of any commercial product or activity by EPA or the United States Government.

Copy Link

Version

Install

install.packages('elevatr')

Monthly Downloads

4,000

Version

0.1.4

License

CC0

Issues

Pull Requests

Stars

Forks

Maintainer

Jeffrey W Hollister

Last Published

January 9th, 2018

Functions in elevatr (0.1.4)

get_mapzen_elev

Get point elevations from Mapzen
get_mapzen_terrain

Get a digital elevation model from the Mapzen Terrain Tiles
proj_expand

function to project bounding box and if needed expand it
pt_df

Small data frame of xy locations
get_aws_terrain

Get a digital elevation model from the AWS Terrain Tiles
get_elev_point

Get Point Elevation
set_api_key

Utility function to set API key from mapzen
sp_big

SpatialPoints of random points
get_elev_raster

Get Raster Elevation
get_epqs

Get point elevation data from the USGS Elevation Point Query Service
elevatr

Access elevation data from the web
get_api_key

function to get API key based on source
latlong_to_tilexy

function to convert lat long to xyz tile with decimals rounding to tile occurs in get_tilexy
loc_check

function to check input type and projection. All input types convert to a SpatialPointsDataFrame for point elevation and bbx for raster.
get_tilexy

function to get a data.frame of all xyz tiles to download
lake

SpatialPolygonsDataFrame of Lake Sunapee