Skip to content

Commit d0dfd84

Browse files
committed
update README
1 parent 5d39549 commit d0dfd84

File tree

3 files changed

+28
-37
lines changed

3 files changed

+28
-37
lines changed

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ citation("tidyhydat")
119119
you may not use this file except in compliance with the License.
120120
You may obtain a copy of the License at
121121

122-
http://www.apache.org/licenses/LICENSE-2.0
122+
https://www.apache.org/licenses/LICENSE-2.0
123123

124124
Unless required by applicable law or agreed to in writing, software
125125
distributed under the License is distributed on an "AS IS" BASIS,

README.md

Lines changed: 27 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<!-- README.md is generated from README.Rmd. Please edit that file -->
22

3-
tidyhydat <img src="man/figures/tidyhydat.png" align="right" />
4-
===============================================================
3+
# tidyhydat <img src="man/figures/tidyhydat.png" align="right" />
54

65
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
76
[![Coverage
@@ -19,15 +18,13 @@ checks](https://cranchecks.info/badges/worst/tidyhydat)](https://cran.r-project.
1918
[![DOI](http://joss.theoj.org/papers/10.21105/joss.00511/status.svg)](https://doi.org/10.21105/joss.00511)
2019
[![DOI](https://zenodo.org/badge/100978874.svg)](https://zenodo.org/badge/latestdoi/100978874)
2120

22-
Project Status
23-
--------------
21+
## Project Status
2422

2523
This package is maintained by the Data Science and Analytics Branch of
2624
the [British Columbia Ministry of Citizens’
2725
Services](https://www2.gov.bc.ca/gov/content/governments/organizational-structure/ministries-organizations/ministries/citizens-services).
2826

29-
What does `tidyhydat` do?
30-
-------------------------
27+
## What does `tidyhydat` do?
3128

3229
- Provides functions (`hy_*`) that access hydrometric data from the
3330
HYDAT database, a national archive of Canadian hydrometric data and
@@ -42,8 +39,7 @@ What does `tidyhydat` do?
4239
data and returns a [tibble](https://tibble.tidyverse.org/) of daily
4340
flows.
4441

45-
Installation
46-
------------
42+
## Installation
4743

4844
You can install `tidyhydat` from CRAN:
4945

@@ -54,11 +50,10 @@ install directly from the rOpenSci development server:
5450

5551
install.packages("tidyhydat", repos = "https://dev.ropensci.org")
5652

57-
Usage
58-
-----
53+
## Usage
5954

6055
More documentation on `tidyhydat` can found at the rOpenSci doc page:
61-
<a href="https://docs.ropensci.org/tidyhydat/" class="uri">https://docs.ropensci.org/tidyhydat/</a>
56+
<https://docs.ropensci.org/tidyhydat/>
6257

6358
When you install `tidyhydat`, several other packages will be installed
6459
as well. One of those packages, `dplyr`, is useful for data
@@ -93,22 +88,22 @@ the same conventions discussed above. Using `realtime_dd()` we can
9388
easily select specific stations by supplying a station of interest:
9489

9590
realtime_dd(station_number = "08LG006")
96-
#> Queried on: 2020-10-06 20:15:00 (UTC)
97-
#> Date range: 2020-09-06 to 2020-10-06
98-
#> # A tibble: 17,532 x 8
99-
#> STATION_NUMBER PROV_TERR_STATE~ Date Parameter Value Grade
100-
#> <chr> <chr> <dttm> <chr> <dbl> <chr>
101-
#> 1 08LG006 BC 2020-09-06 08:00:00 Flow 4.01 <NA>
102-
#> 2 08LG006 BC 2020-09-06 08:05:00 Flow 4.01 <NA>
103-
#> 3 08LG006 BC 2020-09-06 08:10:00 Flow 3.98 <NA>
104-
#> 4 08LG006 BC 2020-09-06 08:15:00 Flow 3.98 <NA>
105-
#> 5 08LG006 BC 2020-09-06 08:20:00 Flow 3.98 <NA>
106-
#> 6 08LG006 BC 2020-09-06 08:25:00 Flow 3.98 <NA>
107-
#> 7 08LG006 BC 2020-09-06 08:30:00 Flow 3.98 <NA>
108-
#> 8 08LG006 BC 2020-09-06 08:35:00 Flow 3.98 <NA>
109-
#> 9 08LG006 BC 2020-09-06 08:40:00 Flow 3.98 <NA>
110-
#> 10 08LG006 BC 2020-09-06 08:45:00 Flow 3.98 <NA>
111-
#> # ... with 17,522 more rows, and 2 more variables: Symbol <chr>, Code <chr>
91+
#> Queried on: 2021-05-17 19:11:24 (UTC)
92+
#> Date range: 2021-04-17 to 2021-05-17
93+
#> # A tibble: 17,502 x 8
94+
#> STATION_NUMBER PROV_TERR_STATE_LOC Date Parameter Value Grade
95+
#> <chr> <chr> <dttm> <chr> <dbl> <chr>
96+
#> 1 08LG006 BC 2021-04-17 08:00:00 Flow 22.1 <NA>
97+
#> 2 08LG006 BC 2021-04-17 08:05:00 Flow 22.1 <NA>
98+
#> 3 08LG006 BC 2021-04-17 08:10:00 Flow 22.2 <NA>
99+
#> 4 08LG006 BC 2021-04-17 08:15:00 Flow 22.2 <NA>
100+
#> 5 08LG006 BC 2021-04-17 08:20:00 Flow 22.2 <NA>
101+
#> 6 08LG006 BC 2021-04-17 08:25:00 Flow 22.2 <NA>
102+
#> 7 08LG006 BC 2021-04-17 08:30:00 Flow 22.3 <NA>
103+
#> 8 08LG006 BC 2021-04-17 08:35:00 Flow 22.3 <NA>
104+
#> 9 08LG006 BC 2021-04-17 08:40:00 Flow 22.3 <NA>
105+
#> 10 08LG006 BC 2021-04-17 08:45:00 Flow 22.4 <NA>
106+
#> # ... with 17,492 more rows, and 2 more variables: Symbol <chr>, Code <chr>
112107

113108
### Plotting
114109

@@ -128,16 +123,14 @@ and also historical data:
128123

129124
![](man/figures/README-unnamed-chunk-8-1.png)
130125

131-
Getting Help or Reporting an Issue
132-
----------------------------------
126+
## Getting Help or Reporting an Issue
133127

134128
To report bugs/issues/feature requests, please file an
135129
[issue](https://github.com/ropensci/tidyhydat/issues/).
136130

137131
These are very welcome!
138132

139-
How to Contribute
140-
-----------------
133+
## How to Contribute
141134

142135
If you would like to contribute to the package, please see our
143136
[CONTRIBUTING](https://github.com/ropensci/tidyhydat/blob/master/CONTRIBUTING.md)
@@ -147,25 +140,23 @@ Please note that this project is released with a [Contributor Code of
147140
Conduct](https://github.com/ropensci/tidyhydat/blob/master/CODE_OF_CONDUCT.md).
148141
By participating in this project you agree to abide by its terms.
149142

150-
Citation
151-
--------
143+
## Citation
152144

153145
Get citation information for `tidyhydat` in R by running:
154146

155147
citation("tidyhydat")
156148

157149
[![ropensci\_footer](https://ropensci.org/public_images/ropensci_footer.png)](https://ropensci.org)
158150

159-
License
160-
-------
151+
## License
161152

162153
Copyright 2017 Province of British Columbia
163154

164155
Licensed under the Apache License, Version 2.0 (the “License”); you may
165156
not use this file except in compliance with the License. You may obtain
166157
a copy of the License at
167158

168-
<a href="http://www.apache.org/licenses/LICENSE-2.0" class="uri">http://www.apache.org/licenses/LICENSE-2.0</a>
159+
<https://www.apache.org/licenses/LICENSE-2.0>
169160

170161
Unless required by applicable law or agreed to in writing, software
171162
distributed under the License is distributed on an “AS IS” BASIS,
645 Bytes
Loading

0 commit comments

Comments
 (0)