View source: R/senDownSearch.R
senDownSearch | R Documentation |
senDownSearch
searches and downloads Sentinel images concerning a
particular location and time interval from ‘SciHub’s' repository.
senDownSearch(username, password, AppRoot, verbose = FALSE, ...)
username |
ESA’s ‘SciHub’ username. |
password |
ESA’s ‘SciHub’ password. |
AppRoot |
the directory where the images are saved. |
verbose |
logical argument. If |
... |
arguments for nested functions:
|
senDownSearch
is a wrapper function of senSearch
and
senDownload
to search and download images in a single step.
The function requires ESA’s ‘SciHub’ credentials, which can be obtained
here.
this function does not return anything. It saves the imagery as
'zip’ (and JP2 files) in a folder called 'raw’ ('unzip’) in the
AppRoot
directory.
## Not run: # load a spatial polygon object of Navarre data(ex.navarre) # Download S2MSI1C products sensed by Sentinel-2 # between the julian dates 210 and 218, 2018 wdir <- file.path(tempdir(),"Path_for_downloading_folder") print(wdir) senDownSearch(startDate = as.Date("2018210", "%Y%j"), endDate = as.Date("2018218", "%Y%j"), platform = "Sentinel-2", extent = ex.navarre, product = "S2MSI1C", pathrow = c("R094"), username = "username", password = "password", AppRoot = wdir) wdir.sen <- file.path(wdir, "Sentinel-2") wdir.sen.unzip <- file.path(wdir.sen, "unzip") files.sen.unzip <- list.files(wdir.sen.unzip, pattern = "\\TCI.jp2$", full.names = TRUE, recursive = TRUE) img.sen.rgb <- stack(files.sen.unzip[1]) plotRGB(img.sen.rgb) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.