CopernicusDEM


Copernicus Digital Elevation Model datasets (DEM) of 90 and 30 meters resolution using the ‘awscli’ command line tool. The Copernicus (DEM) is included in the Registry of Open Data on AWS. Details on how to use the R package can be found both in the Vignette and in the blog post.


System Requirements:

This R package uses the command line awscli internally, which has to be installed first in the Operating System.


On Ubuntu this can be done using:

sudo apt install -y awscli


On Macintosh use,

brew install awscli


and on Windows 10 (tested) open the command line (cmd) and type,

msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi

which will open a new window (‘AWS command line interface v2 Setup’), then click twice on ‘next’ and then ‘install’ and ‘allow the device to make changes’ and once another window pop-ups click ‘finish’


Then verify the installation using,

aws --version


and proceed to configure aws using either

aws configure

or

export AWS_ACCESS_KEY_ID=xxxxxxxxx
export AWS_SECRET_ACCESS_KEY=xxxxxxxxx
export AWS_DEFAULT_REGION=eu-central-1


To check that awscli was installed and configured successfully run the following line in the command line. It returns the first 10 files of the 90 meter DEM product (for verification purposes),

aws s3 ls s3://copernicus-dem-90m | head -n 10


To install the package from CRAN use,

install.packages("CopernicusDEM")


and to download the latest version of the package from Github,

remotes::install_github('mlampros/CopernicusDEM')


Citation:


If you use the CopernicusDEM R package in your paper or research please cite:


@Manual{,
  title = {{CopernicusDEM}: Copernicus Digital Elevation Models},
  author = {Lampros Mouselimis},
  year = {2022},
  note = {R package version 1.0.3 produced using Copernicus
    WorldDEMTM-90 DLR e.V. 2010-2014 and Airbus Defence and Space
    GmbH 2014-2018 provided under COPERNICUS by the European Union
    and ESA; all rights reserved},
  url = {https://CRAN.R-project.org/package=CopernicusDEM},
}