-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathREADME.Rmd
executable file
·536 lines (446 loc) · 21.8 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
---
output: github_document
---
```{r, echo=FALSE, message=FALSE, warning=FALSE}
library(weathercan)
library(dplyr)
library(tibble)
knitr::opts_chunk$set(cache = FALSE,
fig.path = "tools/readme/")
old <- options(width = 160)
```
# weathercan <img src="https://github.com/ropensci/weathercan/raw/main/inst/assets/weathercan_logo.png" align = "right" width = 110/>
[](https://ropensci.r-universe.dev)
[](https://ropensci.r-universe.dev)
[](https://github.com/ropensci/weathercan/actions)
[](https://app.codecov.io/gh/ropensci/weathercan)
[](https://github.com/ropensci/software-review/issues/160) [](https://zenodo.org/badge/latestdoi/60650396) [](https://doi.org/10.21105/joss.00571)
<!-- [](https://cran.r-project.org/package=weathercan) [](https://CRAN.R-project.org/package=weathercan) -->
This package makes it easier to search for and download multiple months/years of historical weather data from [Environment and Climate Change Canada (ECCC) website](https://climate.weather.gc.ca/historical_data/search_historic_data_e.html).
Bear in mind that these downloads can be fairly large and performing multiple downloads may use up ECCC's bandwidth unnecessarily. Try to stick to what you need.
For more details and tutorials checkout the [weathercan website](https://docs.ropensci.org/weathercan/) (or see the [development docs](http://ropensci.github.io/weathercan/))
> Check out the Demo weathercan shiny dashboard ([html](https://steffilazerte.shinyapps.io/weathercan_shiny/); [source](https://github.com/steffilazerte/weathercan_shiny))
## Installation
You can install `weathercan` from the [rOpenSci r-Universe](https://ropensci.r-universe.dev/):
```{r, eval = FALSE}
install.packages("weathercan",
repos = c("https://ropensci.r-universe.dev",
"https://cloud.r-project.org"))
```
View the available vignettes with `vignette(package = "weathercan")`
View a particular vignette with, for example, `vignette("weathercan", package = "weathercan")`
## General usage
To download data, you first need to know the `station_id` associated with the station you're interested in.
### Stations
`weathercan` includes the function `stations()` which returns a list of stations and their details (including `station_id`).
```{r}
head(stations())
glimpse(stations())
```
You can look through this data frame directly, or you can use the `stations_search` function:
```{r}
stations_search("Kamloops", interval = "hour")
```
Time frame must be one of "hour", "day", or "month".
You can also search by proximity:
```{r}
stations_search(coords = c(50.667492, -120.329049), dist = 20, interval = "hour")
```
You can update this list of stations with
```{r}
stations_dl()
```
And check when it was last updated with
```{r}
stations_meta()
```
**Note:** For reproducibility, if you are using the stations list to gather your
data, it can be a good idea to take note of the ECCC date of modification and
include it in your reports/manuscripts.
### Weather
Once you have your `station_id`(s) you can download weather data:
```{r, R.options = list(tibble.max_extra_cols = 0)}
kam <- weather_dl(station_ids = 51423, start = "2018-02-01", end = "2018-04-15")
kam
```
You can also download data from multiple stations at once:
```{r, R.options = list(tibble.max_extra_cols = 0)}
kam_pg <- weather_dl(station_ids = c(48248, 51423), start = "2018-02-01", end = "2018-04-15")
```
## Climate Normals
To access climate normals, you first need to know the `climate_id` associated with the station you're interested in.
```{r}
stations_search("Winnipeg", normals_years = "current")
```
Then you can download the climate normals with the `normals_dl()` function.
```{r}
n <- normals_dl("5023222")
```
See the [Getting Started](https://docs.ropensci.org/weathercan/articles/weathercan.html)
vignette for more details.
## Citation
```{r, warning = FALSE}
citation("weathercan")
```
## License
The data and the code in this repository are licensed under multiple licences. All code is licensed [GPL-3](https://www.gnu.org/licenses/gpl-3.0.en.html). All weather data is licensed under the ([Open Government License - Canada](http://open.canada.ca/en/open-government-licence-canada)).
## `weathercan` in the wild!
- Browse [`weathercan` use cases](https://ropensci.org/usecases/) on rOpenSci.org
- Checkout the [`weathercan` Shiny App](https://nickrongkp.shinyapps.io/WeatherCan/) by Nick Rong (@nickyrong) and Nathan Smith (@WraySmith)
- R package [`RavenR`](https://github.com/rchlumsk/RavenR/tree/master/R) has functions for converting
ECCC data downloaded by `weathercan` to the .rvt format for Raven.
- R package [`meteoland`](https://github.com/emf-creaf/meteoland) has functions for converting ECCC
data downloaded by `weathercan` to the format required for use in `meteoland`.
## Similar packages
**[`rclimateca`](https://github.com/paleolimbot/rclimateca)**
`weathercan` and `rclimateca` were developed at roughly the same time and as a result, both present up-to-date methods for accessing and downloading data from ECCC. The largest differences between the two packages are: a) `weathercan` includes functions for interpolating weather data and directly integrating it into other data sources. b) `weathercan` actively seeks to apply tidy data principles in R and integrates well with the tidyverse including using tibbles and nested listcols. c) `rclimateca` contains arguments for specifying short vs. long data formats. d) `rclimateca` has the option of formatting data in the MUData format using the [`mudata2`](https://cran.r-project.org/package=mudata2) package by the same author.
**[`CHCN`](https://cran.r-project.org/package=CHCN)**
`CHCN` is an older package last updated in 2012. Unfortunately, ECCC updated their services within the last couple of years which caused a great many of the previous web scrapers to fail. `CHCN` relies on a decommissioned [older web-scraper](https://quickcode.io/) and so is currently broken.
## Code of Conduct
Please note that this project is released with a [Contributor Code of Conduct](https://ropensci.org/code-of-conduct/). By participating in this project you agree to abide by its terms.
## Contributions
We welcome any and all contributions! To make the process as painless as possible for all involved, please see our [guide to contributing](CONTRIBUTING.md)
## Contributors
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
All contributions to this project are gratefully acknowledged using the [`allcontributors` package](https://github.com/ropensci/allcontributors) following the [all-contributors](https://allcontributors.org) specification. Contributions of any kind are welcome!
### Code
<table>
<tr>
<td align="center">
<a href="https://github.com/steffilazerte">
<img src="https://avatars.githubusercontent.com/u/14676081?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=steffilazerte">steffilazerte</a>
</td>
<td align="center">
<a href="https://github.com/boshek">
<img src="https://avatars.githubusercontent.com/u/18472598?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=boshek">boshek</a>
</td>
<td align="center">
<a href="https://github.com/JauntyJJS">
<img src="https://avatars.githubusercontent.com/u/9066508?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=JauntyJJS">JauntyJJS</a>
</td>
<td align="center">
<a href="https://github.com/maelle">
<img src="https://avatars.githubusercontent.com/u/8360597?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=maelle">maelle</a>
</td>
<td align="center">
<a href="https://github.com/nicholas512">
<img src="https://avatars.githubusercontent.com/u/15223327?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=nicholas512">nicholas512</a>
</td>
<td align="center">
<a href="https://github.com/mciechanumich">
<img src="https://avatars.githubusercontent.com/u/110423309?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=mciechanumich">mciechanumich</a>
</td>
<td align="center">
<a href="https://github.com/jeroen">
<img src="https://avatars.githubusercontent.com/u/216319?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=jeroen">jeroen</a>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/RichardLitt">
<img src="https://avatars.githubusercontent.com/u/910753?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=RichardLitt">RichardLitt</a>
</td>
<td align="center">
<a href="https://github.com/shandiya">
<img src="https://avatars.githubusercontent.com/u/25561324?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=shandiya">shandiya</a>
</td>
<td align="center">
<a href="https://github.com/kellijohnson-NOAA">
<img src="https://avatars.githubusercontent.com/u/4108564?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/commits?author=kellijohnson-NOAA">kellijohnson-NOAA</a>
</td>
</tr>
</table>
### Issue Authors
<table>
<tr>
<td align="center">
<a href="https://github.com/paleolimbot">
<img src="https://avatars.githubusercontent.com/u/10995762?u=964d5dc69b45b5f96975903f08c42457b3b6f8bb&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Apaleolimbot">paleolimbot</a>
</td>
<td align="center">
<a href="https://github.com/joethorley">
<img src="https://avatars.githubusercontent.com/u/613671?u=36846e1d63ac2709c1f9cfe69f5e0a740f90ec3b&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Ajoethorley">joethorley</a>
</td>
<td align="center">
<a href="https://github.com/pbulsink">
<img src="https://avatars.githubusercontent.com/u/5419974?u=a8ef3c2ac1c7db26335c1883b438d4857fc4dd08&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Apbulsink">pbulsink</a>
</td>
<td align="center">
<a href="https://github.com/durraniu">
<img src="https://avatars.githubusercontent.com/u/7092652?u=35c3f6ca06e50fae23addf2ea0530dd0ea3c619b&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Adurraniu">durraniu</a>
</td>
<td align="center">
<a href="https://github.com/stefaniebutland">
<img src="https://avatars.githubusercontent.com/u/11927811?u=ea2b36cbdc6c1d4b5cd9231b397c03998d730626&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Astefaniebutland">stefaniebutland</a>
</td>
<td align="center">
<a href="https://github.com/adamhsparks">
<img src="https://avatars.githubusercontent.com/u/3195906?u=ff1ca92ae028fe7eb18d006f92cb8a725625e69c&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Aadamhsparks">adamhsparks</a>
</td>
<td align="center">
<a href="https://github.com/nadrojordan">
<img src="https://avatars.githubusercontent.com/u/45609791?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Anadrojordan">nadrojordan</a>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/macsmith26">
<img src="https://avatars.githubusercontent.com/u/8423170?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Amacsmith26">macsmith26</a>
</td>
<td align="center">
<a href="https://github.com/essicolo">
<img src="https://avatars.githubusercontent.com/u/5118227?u=998bb82ad723f4a34d26337184270105d45065c5&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Aessicolo">essicolo</a>
</td>
<td align="center">
<a href="https://github.com/sckott">
<img src="https://avatars.githubusercontent.com/u/577668?u=c54eb1ce08ff22365e094559a109a12437bdca40&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Asckott">sckott</a>
</td>
<td align="center">
<a href="https://github.com/AreliaTW">
<img src="https://avatars.githubusercontent.com/u/9757190?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3AAreliaTW">AreliaTW</a>
</td>
<td align="center">
<a href="https://github.com/WatershedFlow">
<img src="https://avatars.githubusercontent.com/u/54557989?u=9f928dbad590dee9cee8b3bbd412ead410aeb7f8&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3AWatershedFlow">WatershedFlow</a>
</td>
<td align="center">
<a href="https://github.com/cgquick">
<img src="https://avatars.githubusercontent.com/u/41929199?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Acgquick">cgquick</a>
</td>
<td align="center">
<a href="https://github.com/emhodg">
<img src="https://avatars.githubusercontent.com/u/39999885?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Aemhodg">emhodg</a>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/klwilson23">
<img src="https://avatars.githubusercontent.com/u/17127598?u=5f4b8f7dc6a51ccc903c1bbda5eda94cf935d2f2&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Aklwilson23">klwilson23</a>
</td>
<td align="center">
<a href="https://github.com/jjvenky">
<img src="https://avatars.githubusercontent.com/u/5414862?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Ajjvenky">jjvenky</a>
</td>
<td align="center">
<a href="https://github.com/greenLauren">
<img src="https://avatars.githubusercontent.com/u/38663672?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3AgreenLauren">greenLauren</a>
</td>
<td align="center">
<a href="https://github.com/tspeidel">
<img src="https://avatars.githubusercontent.com/u/6731198?u=df8c5eb153bc062517dd937b4f59674ddec38b04&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Atspeidel">tspeidel</a>
</td>
<td align="center">
<a href="https://github.com/datacarvel">
<img src="https://avatars.githubusercontent.com/u/13441528?u=aebdf93bc1759b5c82752dbdeafb180021e8f315&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Adatacarvel">datacarvel</a>
</td>
<td align="center">
<a href="https://github.com/AmeerDotHydro">
<img src="https://avatars.githubusercontent.com/u/35280932?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3AAmeerDotHydro">AmeerDotHydro</a>
</td>
<td align="center">
<a href="https://github.com/tspeidel-ey">
<img src="https://avatars.githubusercontent.com/u/66435255?u=44d99c50f4be8d0b9c38b0e55338507d47158a70&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Atspeidel-ey">tspeidel-ey</a>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/Carina8899">
<img src="https://avatars.githubusercontent.com/u/62023172?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3ACarina8899">Carina8899</a>
</td>
<td align="center">
<a href="https://github.com/amcilraithRRC">
<img src="https://avatars.githubusercontent.com/u/72586000?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3AamcilraithRRC">amcilraithRRC</a>
</td>
<td align="center">
<a href="https://github.com/AnneDaySRK">
<img src="https://avatars.githubusercontent.com/u/76066790?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3AAnneDaySRK">AnneDaySRK</a>
</td>
<td align="center">
<a href="https://github.com/a2grotto">
<img src="https://avatars.githubusercontent.com/u/57048454?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Aa2grotto">a2grotto</a>
</td>
<td align="center">
<a href="https://github.com/FraserHemis">
<img src="https://avatars.githubusercontent.com/u/77513170?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3AFraserHemis">FraserHemis</a>
</td>
<td align="center">
<a href="https://github.com/rajibshibly">
<img src="https://avatars.githubusercontent.com/u/39829190?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Arajibshibly">rajibshibly</a>
</td>
<td align="center">
<a href="https://github.com/mjdzr">
<img src="https://avatars.githubusercontent.com/u/58193630?u=7a713c8a36c3339ec89b312cca1b976dd3bb8c8e&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Amjdzr">mjdzr</a>
</td>
</tr>
<tr>
<td align="center">
<a href="https://github.com/juliasunga">
<img src="https://avatars.githubusercontent.com/u/78092195?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Ajuliasunga">juliasunga</a>
</td>
<td align="center">
<a href="https://github.com/KevCaz">
<img src="https://avatars.githubusercontent.com/u/1583534?u=51c94bcad641cfffb79f57e263b794dcb9413621&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3AKevCaz">KevCaz</a>
</td>
<td align="center">
<a href="https://github.com/ecwiebe">
<img src="https://avatars.githubusercontent.com/u/13489492?u=8d05f05e9bb79cdaec1aa5a5e033f22759526f6e&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Aecwiebe">ecwiebe</a>
</td>
<td align="center">
<a href="https://github.com/carlos-arnillas">
<img src="https://avatars.githubusercontent.com/u/26018349?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Acarlos-arnillas">carlos-arnillas</a>
</td>
<td align="center">
<a href="https://github.com/gilberto-sassi">
<img src="https://avatars.githubusercontent.com/u/47753866?u=be2874420e4d6c3d6690a62e1ecf8dec8a6bae26&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Agilberto-sassi">gilberto-sassi</a>
</td>
<td align="center">
<a href="https://github.com/busmansholiday">
<img src="https://avatars.githubusercontent.com/u/108430289?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+author%3Abusmansholiday">busmansholiday</a>
</td>
</tr>
</table>
### Issue Contributors
<table>
<tr>
<td align="center">
<a href="https://github.com/ebourlon">
<img src="https://avatars.githubusercontent.com/u/26873630?u=3fe18d9da8d8064052ea0dc5ad11bbe9ea7b20fb&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+commenter%3Aebourlon">ebourlon</a>
</td>
<td align="center">
<a href="https://github.com/clairervh">
<img src="https://avatars.githubusercontent.com/u/2093182?u=dea38aba64f8a9f9a2dc9a85f3a6f30550aa7d0b&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+commenter%3Aclairervh">clairervh</a>
</td>
<td align="center">
<a href="https://github.com/rajeshroy402">
<img src="https://avatars.githubusercontent.com/u/40631866?u=a0340377b75b6f8038d009d2474131014a4ed0f6&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+commenter%3Arajeshroy402">rajeshroy402</a>
</td>
<td align="center">
<a href="https://github.com/urbaingeo4455">
<img src="https://avatars.githubusercontent.com/u/57878964?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+commenter%3Aurbaingeo4455">urbaingeo4455</a>
</td>
<td align="center">
<a href="https://github.com/CamMakoJ">
<img src="https://avatars.githubusercontent.com/u/16771660?u=67e4378f2c60ee6900bac76d3c6840492c75da84&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+commenter%3ACamMakoJ">CamMakoJ</a>
</td>
<td align="center">
<a href="https://github.com/salix-d">
<img src="https://avatars.githubusercontent.com/u/31168746?u=bdf7cc91649a046d6b6b159d153ac37557954c64&v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+commenter%3Asalix-d">salix-d</a>
</td>
<td align="center">
<a href="https://github.com/wgieni">
<img src="https://avatars.githubusercontent.com/u/38118614?v=4" width="100px;" alt=""/>
</a><br>
<a href="https://github.com/ropensci/weathercan/issues?q=is%3Aissue+commenter%3Awgieni">wgieni</a>
</td>
</tr>
</table>
<!-- markdownlint-enable -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->
[](https://ropensci.org)
```{r, include = FALSE}
# Reset options
options(old)
```