ortho_request: Get metadata and links to available orthoimages

View source: R/ortho_request.R

ortho_requestR Documentation

Get metadata and links to available orthoimages

Description

Get metadata and links to available orthoimages

Usage

ortho_request(x)

orto_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)

Value

a data frame with metadata and links to the orthoimages

See Also

tile_download()

Examples

## 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)

rgugik documentation built on March 7, 2023, 5:22 p.m.