RCGLS (version 1.0.3)

download_CGLS_data: 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,...

Value

CGLS data Data saved locally in chosen folder.

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.

Examples

Run this code
# 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) 
# }

Run the code above in your browser using DataCamp Workspace