download_CGLS_data {RCGLS} | R Documentation |
Download CGLS data
Description
Downloads manifest files of the Copernicus Global Land Service. Registration at https://land.copernicus.eu/global/ is required.
Usage
download_CGLS_data(username, password, timeframe, product, resolution, version)
Arguments
username |
Register at https://land.copernicus.eu/global/ |
password |
Register at https://land.copernicus.eu/global/ |
timeframe |
Time frame of interest, for example June 2019 |
product |
Product name: fapar, fcover, lai, ndvi, ss, swi, lst, ... |
resolution |
1km, 300m or 100m |
version |
Version number: v1, v2, v3,... |
Details
Check https://land.copernicus.eu/global/products/ for a product overview and product details. Check https://land.copernicus.vgt.vito.be/manifest/ for an overview for data availability in the manifest.
Value
CGLS data Data saved locally in chosen folder.
Examples
## Not run:
#library(RCurl)
UN <- "Willemijn"
PW <- "Testthis"
TF <- seq(as.Date("2019-06-01"), as.Date("2019-06-15"), by="days")
PROD <- "fapar" #Product name: fapar, fcover, lai, ndvi, ss, swi, lst, ...
RES <- "1km" #1km, 300m or 100m
V <- "v1" #Version number: v1, v2, v3, ...
download_CGLS_data(username=UN, password=PW, timeframe=TF, product=PROD, resolution=RES, version=V)
## End(Not run)
[Package RCGLS version 1.0.3 Index]