View source: R/ortho_request.R
ortho_request | R Documentation |
Get metadata and links to available orthoimages
ortho_request(x)
orto_request(x)
x |
an |
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()
).
a data frame with metadata and links to the orthoimages
tile_download()
## Not run:
library(sf)
polygon_path = system.file("datasets/search_area.gpkg", package = "rgugik")
polygon = read_sf(polygon_path)
req_df = ortho_request(polygon)
# simple filtering by attributes
req_df = req_df[req_df$composition == "CIR", ]
req_df = req_df[req_df$resolution <= 0.25 & req_df$year >= 2016, ]
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.