Skip to content
Snippets Groups Projects
Commit f1b34d1f authored by Jentsch, Helge's avatar Jentsch, Helge
Browse files

last commit on gitlab.rrz.uni-hamburg.de - Migrating to Github.com

parent 065fcec9
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ Type: Package
Title: Downloads Climate Data from Chelsa and WorldClim
Version: 0.1.7-4
Authors@R: c(person("Helge", "Jentsch",
email = "helge.marc.ole.jentsch@uni-hamburg.de",
email = "helgejentsch.research@gmail.com",
role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-4955-8358")),
person("Maria", "Bobrowski",
......@@ -18,7 +18,7 @@ Authors@R: c(person("Helge", "Jentsch",
email = "nadine.kaul@uni-hamburg.de",
comment = c(ORCID = "0009-0002-0271-8019"),
role = c("ctb")))
Maintainer: Helge Jentsch <helge.marc.ole.jentsch@uni-hamburg.de>
Maintainer: Helge Jentsch <helgejentsch.research@gmail.com>
Description: This package `ClimDatDownloadR` provides functions to download, pre-process and
manage CHELSA and WorldClim climate data sets in respective available
spatial and temporal resolutions. The output is provided as GEOTIFF,
......@@ -32,7 +32,7 @@ Description: This package `ClimDatDownloadR` provides functions to download, pre
A applied comparison of the two data sets is given by
Bobrowski & Schickhoff 2017 <doi:10.1016/j.ecolmodel.2017.05.021>.
URL: https://doi.org/10.5281/zenodo.7924343,
https://gitlab.rrz.uni-hamburg.de/helgejentsch/climdatdownloadr
https://github.com/HelgeJentsch/ClimDatDownloadR
YEAR: 2021-2023
License: MIT + file LICENSE
Encoding: UTF-8
......@@ -45,7 +45,7 @@ Suggests: knitr, testthat, usethis, rmarkdown
VignetteBuilder: knitr
SystemRequirements: Tested with at least 4 GB RAM.
NeedsCompilation: no
Packaged: 2023-08-28 18:21:08 UTC; helge
Packaged: 2023-09-05 15:25:46 UTC; helge
Author: Helge Jentsch [aut, cre],
Maria Bobrowski [aut],
Johannes Weidinger [aut],
......
This diff is collapsed.
## Welcome to the ClimDatDownloadR
This R-package was developed as a student project for the masters programm Geography at the Universität Hamburg, Germany.
## Update 04.05.2023
As of today a new version of the ClimDatDownloadR is released.
If you want to test the ClimDatDownloadR-package please feel free to install the package via
`install.packages("https://gitlab.rrz.uni-hamburg.de/helgejentsch/climdatdownloadr/-/archive/master/climdatdownloadr-master.tar.gz", repos = NULL, type = "source")`
## Welcome to the ClimDatDownloadR - Update 05.09.2023
and if you need the dependencies via
Today we moved the active support of the repository and further development to GitHub.com ([github.com/HelgeJentsch/ClimDatDownloadR](https://github.com/HelgeJentsch/ClimDatDownloadR)).
`install.packages(c("gdalUtils", "httr", "ncdf4", "qpdf", "raster", "RCurl", "RefManageR", "rgdal", "stringr", "sf", "sp", "svMisc", "terra", "utils"), dependencies = TRUE)`
For the installation process you need to need to input the following code:
```(r)
if(!require(devtools)) install.packages("devtools")
library(devtools)
devtools::install_github("HelgeJentsch/ClimDatDownloadR")
```
I would appreciate your feedback and possible bug reports.
If you find anything, please send an email to [helge.marc.ole.jentsch@uni-hamburg.de](<mailto:helge.marc.ole.jentsch@uni-hamburg.de>)
Additionally, the feedback and support e-mail address is now **helgejentsch.research@gmail.com**.
Thank you very much for using ClimDatDownloadR!
Feedback and ideas for improving your user experience are always apprechiated!
If you want to cite ClimDatDownloadR you can find the package on Zenodo via [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7924343.svg)](https://doi.org/10.5281/zenodo.7924343)
## A warm welcome
## Welcome to the ClimDatDownloadR
Hello and welcome to the ClimDatDownloadR R-package.
With this package **cli**mate **dat**asets provided by [Chelsa](http://chelsa-climate.org/) and [WorldClim](https://www.worldclim.org/) can be automatically **download**ed, clipped, and converted with **R**.
To start, you'll have to install the package and it's dependencies first, if not already done. Then you can activate the package with the `library`-function.
```{r setup}
# install.packages(c("gdalUtils", "httr", "ncdf4", "qpdf", "raster", "RCurl", "RefManageR", "rgdal", "stringr", "sf", "sp", "svMisc", "terra", "utils"), dependencies = TRUE)
# install.packages("https://gitlab.rrz.uni-hamburg.de/helgejentsch/climdatdownloadr/-/archive/master/climdatdownloadr-master.tar.gz", repos = NULL, type = "source")
```(r)
if(!require(devtools)) install.packages("devtools")
library(devtools)
devtools::install_github("HelgeJentsch/ClimDatDownloadR")
library(ClimDatDownloadR)
```
Very well, now that you have the package installed and attached, let's start with the data sets of the climatologies of Chelsa and WorldClim.
If you have any feedback or are in need of support, you can reach me via **helgejentsch.research@gmail.com**.
Feedback and ideas for improving your user experience are always apprechiated!
## Overview of download-functions
Besides the functions to download the currend climatologies of [Chelsa](http://chelsa-climate.org/) and [WorldClim](https://www.worldclim.org/), described below as [`Chelsa.Clim.download()`](../man/Chelsa.Clim.download.Rd) and [`WorldClim.HistClim.download()`](../man/WorldClim.HistClim.download.Rd), the package offers more download functions.
......@@ -46,7 +47,7 @@ Besides the functions to download the currend climatologies of [Chelsa](http://c
In the help pages of [`Chelsa.Clim.download()`](../man/Chelsa.Clim.download.Rd) and [`WorldClim.HistClim.download()`](../man/WorldClim.HistClim.download.Rd) you can find further information about the handling of these functions. In fact running the functions all by itself bulk-downloads all the climatology data sets from the servers to your current working directory.
Let's start with a example of the Chelsa climatologies:
```{r setup}
```(r)
Chelsa.Clim.download(
# first you'll have to choose your working directory
# don't worry about having a directory for every parameter you want to download
......@@ -89,7 +90,7 @@ Chelsa.Clim.download(
```
___
With this showing the basic principle of these functions, here is a example of a WorldClim climatology download:
```{r setup}
```(r)
WorldClim.HistClim.download(
# As you can see, the structure of this function is very similar to the Chelsa-function
save.location = "./",
......@@ -114,3 +115,14 @@ WorldClim.HistClim.download(
```
To get more information, please proceed [here](./articles/ClimDatDownloadR.html).
This R-package was developed as a student project for the masters programm Geography at the Universität Hamburg, Germany.
Feedback, support, and ideas for improving your user experience are apprechiated at **helgejentsch.research@gmail.com**.
If you want to cite ClimDatDownloadR you can find the package on Zenodo via [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.7924343.svg)](https://doi.org/10.5281/zenodo.7924343)
We would like to be cited as:
```
Jentsch, Helge, Weidinger, Johannes, & Bobrowski, Maria. (_current year e.g. 2023_). ClimDatDownloadR: Downloads Climate Data from Chelsa and WorldClim (_current version e.g. 0.1.7-4_). Zenodo. doi: 10.5281/zenodo.7924343. URL: https://github.com/HelgeJentsch/ClimDatDownloadR.
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment