Searches the specified collection for available images in the given time interval and intersecting with the bounding box or the area of interest.
Usage
SearchCatalog(
aoi,
bbox,
from,
to,
collection,
as_data_frame = TRUE,
with_geometry = TRUE,
filter = NULL,
client,
token,
url = getOption("CDSE.catalog_url")
)
Arguments
- aoi
sf or sfc object, typically a (multi)polygon, describing the Area of Interest.
- bbox
numeric vector of four elements describing the bounding box of interest. Specify with a coordinate pair on two (opposite) vertices of the bounding box rectangle. Coordinates need to be in longitude, latitude.
Only one of either
aoi
orbbox
may be specified.- from
start of the time interval to search.
- to
end of the time interval to search.
from
andto
can be either Date or character that can be converted to date byas.Date
.Open interval (one side only) can be obtained by providing the
NA
orNULL
value for the corresponding argument.- collection
character indicating which collection to search. Must be one of the collections returned by
GetCollections
.- as_data_frame
logical indicating if the result should be returned as data frame. Default: TRUE
- with_geometry
logical indicating if the granule geometries should be included in the data.frame. Default: TRUE
- filter
character, CQL2 text filter. Use the function
GetQueryables
to find out which filters can bu used with the collection. Default: NULL (no filtering)- client
OAuth client object to use for authentication.
- token
OAuth token character string to use for authentication.
Exactly one of either
client
ortoken
must be specified. It is recommended to useclient
.- url
character indicating the STAC catalog search endpoint. Default: Copernicus Data Space Ecosystem STAC endpoint
Examples
if (FALSE) { # \dontrun{
dsn <- system.file("extdata", "luxembourg.geojson", package = "CDSE")
aoi <- sf::read_sf(dsn, as_tibble = FALSE)
images <- SearchCatalog(aoi = aoi, from = "2023-07-01", to = "2023-07-31",
collection = "sentinel-2-l2a", with_geometry = TRUE, client = OAuthClient)
images_cloudless <- SearchCatalog(aoi = aoi, from = "2023-07-01", to = "2023-07-31",
filter = "eo:cloud_cover < 5",
collection = "sentinel-2-l2a", with_geometry = TRUE, client = OAuthClient)
} # }