DEM_request function

Get metadata and links to available digital elevation models

Get metadata and links to available digital elevation models

DEM_request(x)

Arguments

  • x: an sf, sfc or SpatVector object with one or more features (requests are based on the bounding boxes of the provided features)

Returns

a data frame with metadata and links to the digital elevation models (different formats of digital terrain model, digital surface model and point clouds)

Details

The server can return a maximum of 1000 records in a single query. If your area of interest exceeds this limit, you can generate a grid of smaller polygons (sf::st_make_grid()) or a regular grid of points (sf::st_sample()).

Examples

## Not run: library(sf) polygon_path = system.file("datasets/search_area.gpkg", package = "rgugik") polygon = read_sf(polygon_path) req_df = DEM_request(polygon) # simple filtering by attributes req_df = req_df[req_df$year > 2018, ] req_df = req_df[req_df$product == "PointCloud" & req_df$format == "LAS", ] ## End(Not run)

See Also

tile_download()

  • Maintainer: Krzysztof Dyba
  • License: MIT + file LICENSE
  • Last published: 2025-03-04