View source: R/select_unitemporal.R
select_unitemporal | R Documentation |
Selection is done according to aoi cloud cover (in case of optical data) and temporal characteristics. Both optical and SAR records are supported as well as combined selection for different products across systems and data providers.
select_unitemporal( records, max_sub_period, min_improvement = 5, max_cloudcov_tile = 80, satisfaction_value = 98, prio_products = c(), aoi = NULL, write_cmask_mosaic = TRUE, write_preview_mosaic = TRUE, dir_out = NULL, as_sf = TRUE, verbose = TRUE )
records |
data.frame as returned by calc_cloudcov, either complete or subsetted but with all columns.
Records will be selected from these records. If |
max_sub_period |
numeric maximum number of days to be used for creating a mosaic per timestamp if mosaicking is needed. This determines how temporally close together the selected records for one timestamp are (if mosaicking is needed). |
min_improvement |
numeric the minimum increase of valid pixels percentage in a tile when adding a record. This protects from adding large amounts of records that improve coverage by only a few pixels. Default is 100. |
max_cloudcov_tile |
numeric maximum aoi cloud cover (%) a selected tile is allowed to have. The assumption is that a high cloud cover in a scene makes it unlikely that theoretically non-cloudy pixels are free from haze or shadows. Default is 80. |
satisfaction_value |
numeric percentage value at which mosaic is considered as cloud-free. Default is 98. |
prio_products |
character vector optional. Product names ordered by priority. Selection is done in the order
of prio_products starting with the first product. Following products are included consecutively in case
selection was not fullfilled by previous product. Product names must be provided as returned by get_select_supported.
Landsat and MODIS can be summarized by 'landsat' respectively 'modis' if no further differentiation demanded.
If prio_products is empty, given products in |
aoi |
sfc_POLYGON or SpatialPolygons or matrix, representing a single multi-point
(at least three points) polygon of your area-of-interest (AOI). If it is a matrix, it has to
have two columns (longitude and latitude) and at least three rows (each row representing one
#corner coordinate). If its projection is not |
write_cmask_mosaic |
logical specifies if the timestamp-wise cloud mask mosaic rasters are written to file. |
write_preview_mosaic |
logical specifies if the timestamp-wise preview mosaic rasters are written to file. |
dir_out |
character. If |
as_sf |
logical, whether records should be returned as |
verbose |
logical, if |
For running the selection you have to process calc_cloudcov first.
Generally, the following products can be processed in select_*
functionalities:
Sentinel-1
Sentinel-2 A/B
Sentinel-3 OLCI
Landsat 5-8
MODIS
For the precise supported product names call get_select_supported.
When aiming at mixing two or more optical products you may order them by priority
through prio_products
.
Coupled selection of optical and SAR sensors is possible. Optical records will always
be selected first, SAR records second, in temporal accordance with the selected
optical records.
records
data.frame holding three additional columns:
selected_for_unitemporal logical column indicating for each record if it was selected (==TRUE).
rgb_mosaic_file: character path where the RGB preview mosaic is saved on disk.
cmask_mosaic_file: character path where the cloud mask mosaic is saved on disk.
This functionality creates a 'tmp' folder below dir_out
where
temporary files are saved. This folder will be deleted at the end of the function call.
Henrik Fisser
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.