-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
61 lines (45 loc) · 2.4 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
author: "Philipp Baumann ( [email protected] | [email protected])."
date: "Last update: `r format(Sys.Date(), '%Y-%m-%d')`"
output: github_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# Overview
This repo shares the raw (binary), parsed and processed spectra used to develop
the general models of the Swiss mid-infrared (mid-IR) soil spectral library
(SSL) in version 1. The spectral measurements and modeling were done at the
[Sustainable Agroecosystems Group](https://sae.ethz.ch/) at ETH Zürich. The data
and hands-on were compiled at the [Swiss Competence Center for Soils
(KOBO)](https://ccsols.ch/). This work was done as a PhD project, in
collaboration with the [Swiss Soil Monitoring group
(NABO)](https://www.agroscope.admin.ch/agroscope/en/home/topics/environment-resources/soil-bodies-water-nutrients/nabo.html)
at Agroscope. The associated laboratory analytical reference data needs to be
requested from NABO.This version comes along with this open-access publication:
Baumann, P., Helfenstein, A., Gubler, A., Keller, A., Meuli, R. G., Wächter, D., Lee, J., Viscarra Rossel, R., & Six, J. (2021). Developing the Swiss mid-infrared soil spectral library for local estimation and monitoring. SOIL, 7(2), 525–546. https://doi.org/10.5194/soil-7-525-2021
# How to fetch and use the data
Because this repository contains both binaries (OPUS files with spectra), and
large files (> 100MB), the relevant data are stored on GitHub via Large File
Storage (LFS).
On Linux, either install git-lfs with your supported package manager, or follow
the [instructions on the official Git Large File Storage
page](https://git-lfs.github.com/). On Debian, you can just use:
```{bash, eval=FALSE}
sudo apt install git-lfs
```
On MacOS, you can use [Homebrew](https://formulae.brew.sh/formula/git-lfs):
```{bash, eval=FALSE}
brew install git-lfs
```
On Windows, you can follow the instructions
[here](https://docs.github.com/en/repositories/working-with-files/managing-large-files/installing-git-large-file-storage),
where you are referred to download and execute the `.exe` file provided
[here](https://git-lfs.github.com/) (installer).
To enable it for your local user, you need to only type once to activate LFS on
your system:
```{bash, eval=FALSE}
git lfs install
```
After this, you are ready to clone this repository, whereby git will resolve and
download all large files via LFS.