-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
46 lines (34 loc) · 1.24 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
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# coagmetr
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![Travis build status](https://travis-ci.org/gacolitti/coagmetr.svg?branch=master)](https://travis-ci.org/gacolitti/coagmetr)
[![Codecov test coverage](https://codecov.io/gh/gacolitti/coagmetr/branch/master/graph/badge.svg)](https://codecov.io/gh/gacolitti/coagmetr?branch=master)
<!-- badges: end -->
`coagmetr` facilitates data fetching from [Colorado Climate Center Web Services](https://coagmet.colostate.edu/cgi-bin/web_services.pl).
Currently, only CoAgMet daily, hourly, and five minute data is supported (including daily and hourly soil moisture).
## Installation
```{r, eval=FALSE}
# install.packages("devtools")
devtools::install_github("gacolitti/coagmetr")
```
## Examples
Station meta data:
```{r example1}
library(coagmet)
get_coagmet_data("meta")
```
Hourly data for all stations from January 1st, 2020 to current:
```{r example2}
get_coagmet_data("hourly", start_date = "2020-01-01")
```