-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* get_storms and get_storm_data now utilize crul to help with asyncrhonous requests and to prohibit too many requests to the NHC archives within a given period of time. * load_storm data has been removed. Users are encouraged to download the rrricanesdata pkg for all data up to the previous month. * All checks and tests pass. 0 ERRORS, 0 WARNINGS, 0 NOTES
- Loading branch information
Showing
283 changed files
with
8,997 additions
and
5,261 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ | |
^datasets/ | ||
^reports/ | ||
^\.github$ | ||
^_pkgdown.yml$ | ||
^_pkgdown\.yml$ | ||
^deploy\.sh$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,38 @@ | ||
language: r | ||
|
||
warnings_are_errors: true | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- libgdal-dev | ||
- libproj-dev | ||
|
||
# Test package on multiple platforms | ||
- libgdal-dev | ||
- libproj-dev | ||
matrix: | ||
include: | ||
- os: linux | ||
dist: trusty | ||
sudo: false | ||
r: 3.3.3 | ||
- os: linux | ||
dist: trusty | ||
sudo: false | ||
r: release | ||
- os: linux | ||
dist: trusty | ||
sudo: false | ||
r: devel | ||
- os: osx | ||
r: 3.3.3 | ||
- os: osx | ||
r: release | ||
|
||
- os: linux | ||
dist: trusty | ||
sudo: false | ||
r: 3.3.3 | ||
- os: linux | ||
dist: trusty | ||
sudo: false | ||
r: release | ||
- os: linux | ||
dist: trusty | ||
sudo: false | ||
r: devel | ||
- os: osx | ||
r: 3.3.3 | ||
- os: osx | ||
r: release | ||
r_packages: | ||
- covr | ||
|
||
r_github_packages: | ||
- timtrice/rrricanesdata@feature/drat | ||
cache: packages | ||
|
||
after_success: | ||
- Rscript -e 'library(covr); codecov()' | ||
|
||
#r_github_packages: | ||
# - ropenscilabs/rnaturalearthhires | ||
- test $TRAVIS_PULL_REQUEST == "false" && | ||
test $TRAVIS_BRANCH == "master" && | ||
bash deploy.sh | ||
env: | ||
global: | ||
secure: t3RJn4gGOnWDc2DSBOHwZ+DkLTZsmo2f9JDfg0H9ugzhZQFvXWy9/+HCak4t00aCpRojkMadqmQPORoeGCvzbdZV6Iu+ueFBb9JPD6CVgBiUYLcBL0aaYtPydKpw5EAFmvoHQo2J/p6bVtVvpBPOf+OVaeLqzcKFD8mxJtVl/sbSuZzCUKhs2KPIEtfpYZuchlZKRV6K+vrDomQytqQJeTlc5TTqY1VMOyY2E1eRgTxpTnN44caWSiqAmMkBx403TmFRpA0XZzsxxmUxTpXrNayT6S0qdn/VClyTTvJb/E92jFjm6c2MxCL6D5Xw7mv51srHf4qIxf3eLyj2ilZUKB4aNeecr5Y1/NeBgmx9K+WD16e9TJYOfR0J8i2HikBLgSgFCvU8D5p3sC6gI/+GCPBXyAEVcndnPUBCaRqfz4eeu3CkxiWgzWwabBoqjas/jp7gyOaj1lwEqOm+WNgA4E/7Klv161CXVHPLyvC7w/7mwVLK6PYN/6yyLAgGA8sumigSPxUvRSnzpDhBRaZH0/39pMFcY+XDjM0tVGj2ku/fdWwKHK8nwTEjNYVWGEjnFuJt9mGnacWOnyeEG9AAMvXYKrLkbKVWh+i4332F0YGqSmtzBn+2X9EQ753fujXd+s3jKkoKaYI58hb+A7BVPeVInDJOfDMmj6KklT6JFHM= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,10 @@ Type: Package | |
Title: Web scraper for Atlantic and east Pacific hurricanes and tropical storms | ||
Description: Get archived data of past and current hurricanes and tropical | ||
storms for the Atlantic and eastern Pacific oceans. Data is available for | ||
storms since 1998. | ||
Version: 0.2.0-5.1 | ||
storms since 1998. Datasets are updated via the rrricanesdata package. | ||
Currently, this package is about 6MB of datasets. See the README or view | ||
`vignette("drat")` for more information. | ||
Version: 0.2.0-6 | ||
Authors@R: c(person("Tim", "Trice", email = "[email protected]", role = c("aut", "cre"))) | ||
Depends: | ||
R (>= 3.3.3) | ||
|
@@ -15,28 +17,31 @@ LazyData: TRUE | |
ByteCompile: TRUE | ||
Imports: | ||
broom (>= 0.4.2), | ||
dplyr (>= 0.7.1), | ||
crul (>= 0.3.4), | ||
dplyr (>= 0.5.0), | ||
ggplot2 (>= 2.2.1), | ||
httr (>= 1.2.1), | ||
lubridate (>= 1.6.0), | ||
magrittr (>= 1.5), | ||
maptools (>= 0.9-2), | ||
purrr (>= 0.2.2.2), | ||
readr (>= 1.1.1), | ||
rgdal (>= 1.2-7), | ||
purrr (>= 0.2.2), | ||
readr (>= 1.1.0), | ||
rgdal (>= 1.2-6), | ||
rgeos (>= 0.3-23), | ||
rlang (>= 0.1.1), | ||
rnaturalearthdata (>= 0.1.0), | ||
rvest (>= 0.3.2), | ||
stringr (>= 1.2.0), | ||
tibble (>= 1.3.3), | ||
tidyr (>= 0.6.3), | ||
tibble (>= 1.3.0), | ||
tidyr (>= 0.6.1), | ||
xml2 (>= 1.1.1) | ||
Suggests: | ||
devtools, | ||
knitr, | ||
rmarkdown, | ||
rrricanesdata (>= 0.0.1), | ||
sp, | ||
testthat | ||
RoxygenNote: 6.0.1 | ||
VignetteBuilder: knitr | ||
Additional_repositories: https://timtrice.github.io/drat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.