download_CGLS_data: Download CGLS data

Description Usage Arguments Details Value Examples

View source: R/RCGLS-functions.R

Description

Downloads manifest files of the Copernicus Global Land Service. Registration at https://land.copernicus.eu/global/ is required.

Usage

1
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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## 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)

RCGLS documentation built on Jan. 13, 2021, 4:18 p.m.