R interface for downloading TanDEM-X data. Information on the data can be found at DLR's geoservice.
Basic idea is to enable such a workflow to handle TanDEM-X data:
options("geoservice.usr" = "[email protected]")
tiffiles <- download_TanDEM()
library("stars")
vrt <- st_mosaic(tiffiles)
x <- read_stars(vrt, proxy = TRUE)
plot(x)
## Loading required package: abind
## Loading required package: sf
## Linking to GEOS 3.8.0, GDAL 3.0.4, PROJ 7.0.0
Via Devtools one-liner with specifying
subdir = "pkg"
:
devtools::install_github("meteosimon/TanDEM-R", subdir = "pkg")
First, you have to register at
DLR. Within the package I
use keyring for handling
authentification. The default for the keyring service is
"geoservice.dlr"
.