SeasonalFilter {CDSE} | R Documentation |
Filter image catalog for seasonal images
Description
Filters image catalog entries that fall in the season of interest -
dates between from
day/month and to
day/month for all years in the
from
- to
time range.
Usage
SeasonalFilter(catalog, from, to)
Arguments
catalog |
|
from |
start of the season of interest. |
to |
end of the season of interest. The |
Value
A data.frame
or a sf
object, depending on the type of the input.
See Also
SearchCatalog
, SeasonalTimerange
Examples
## Not run:
dsn <- system.file("extdata", "centralpark.geojson", package = "CDSE")
aoi <- sf::read_sf(dsn, as_tibble = FALSE)
all_images <- SearchCatalog(aoi = aoi, from = "2021-06-01", to = "2023-08-31",
collection = "sentinel-2-l2a", with_geometry = TRUE, client = OAuthClient)
sesonal_images <- SeasonalFilter(all_images, from = "2021-06-01", to = "2023-08-31")
## End(Not run)
[Package CDSE version 0.2.0 Index]