-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
36 lines (21 loc) · 1.18 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
---
title: "LapseRateCalculator"
output: github_document
---
# Title: "Readme"
## Introduction
The R package LapseRateCalculator is an example of lapse rate calculator applied to dew point temperature (derived from T_Air and RH). The algorithm **example_transect_dew_point.R** in folder **inst** applies function **Tdew** in folder **R** to produce dew point temperature for each station. All station in folder *data/Input* are analyzed togheder and the lapse rate is calculated for each hour using a linear fit model.
## How to start
Clone the package from https://github.com/EURAC-Ecohydro/LapseRateCalculator
## How to install
```{r,echo=TRUE, eval=FALSE}
install_packages("devtools")
library(devtools)
install_github("EURAC-Ecohydro/LapseRateCalculator")
library("LapseRateCalculator")
```
## How to use
In folder **inst** there is the script example_transect_dew_point.R
In folder **R** there are some functions used by scripts in inst folder
In folder **data** there are subfolders where put input data, support files and a folder where scripts save outputs
## [Package Documentetion: Vignette](https://github.com/EURAC-Ecohydro/LapseRateCalculator/blob/master/LapseRateCalculator.Rmd)