├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore ├── CONTRIBUTING.md ├── issue_template.md ├── pull_request_template.md └── workflows │ ├── R-CMD-check.yaml │ ├── cran-checks.yaml │ ├── recheck.yml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── GSODR-package.R ├── get_GSOD.R ├── get_inventory.R ├── get_updates.R ├── globals.R ├── internal_functions.R ├── nearest_stations.R ├── process_csv.R ├── reformat_GSOD.R ├── update_station_list.R └── zzz.R ├── README.Rmd ├── README.md ├── air.toml ├── codecov.yml ├── codemeta.json ├── cran-comments.md ├── data-raw ├── README.md ├── fetch_isd-history.Rmd └── fetch_isd-history.md ├── flir └── config.yml ├── inst ├── CITATION ├── WORDLIST ├── extdata │ ├── isd_diff.rda │ └── isd_history.rda ├── paper │ ├── paper.bib │ ├── paper.md │ └── paper.pdf └── vector │ └── GSODR-hex.svg ├── man ├── GSODR-package.Rd ├── dot-agroclimatology_list.Rd ├── dot-apply_process_csv.Rd ├── dot-check_url_exists.Rd ├── dot-download_files.Rd ├── dot-subset_country_list.Rd ├── dot-untar_files.Rd ├── dot-validate_country.Rd ├── dot-validate_missing_days.Rd ├── dot-validate_station_data_years.Rd ├── dot-validate_station_id.Rd ├── dot-validate_years.Rd ├── figures │ └── logo.png ├── get_GSOD.Rd ├── get_inventory.Rd ├── get_updates.Rd ├── nearest_stations.Rd ├── reformat_GSOD.Rd └── update_station_list.Rd ├── revdep ├── README.md ├── cran.md ├── failures.md └── problems.md ├── tests ├── spelling.R ├── testthat.R └── testthat │ ├── test-get_GSOD.R │ ├── test-get_updates.R │ ├── test-nearest_stations.R │ └── test-reformat_GSOD.R └── vignettes ├── Ex5-1.png ├── GSODR.Rmd ├── GSODR.Rmd.orig ├── GSOD_Station_locations-1.png ├── precompile.R └── references.bib /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/cran-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.github/workflows/cran-checks.yaml -------------------------------------------------------------------------------- /.github/workflows/recheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.github/workflows/recheck.yml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Adam Sparks, Tomislav Hengl and Andrew Nelson 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/GSODR-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/GSODR-package.R -------------------------------------------------------------------------------- /R/get_GSOD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/get_GSOD.R -------------------------------------------------------------------------------- /R/get_inventory.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/get_inventory.R -------------------------------------------------------------------------------- /R/get_updates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/get_updates.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/internal_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/internal_functions.R -------------------------------------------------------------------------------- /R/nearest_stations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/nearest_stations.R -------------------------------------------------------------------------------- /R/process_csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/process_csv.R -------------------------------------------------------------------------------- /R/reformat_GSOD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/reformat_GSOD.R -------------------------------------------------------------------------------- /R/update_station_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/update_station_list.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/README.md -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/air.toml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/data-raw/README.md -------------------------------------------------------------------------------- /data-raw/fetch_isd-history.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/data-raw/fetch_isd-history.Rmd -------------------------------------------------------------------------------- /data-raw/fetch_isd-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/data-raw/fetch_isd-history.md -------------------------------------------------------------------------------- /flir/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/flir/config.yml -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/extdata/isd_diff.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/inst/extdata/isd_diff.rda -------------------------------------------------------------------------------- /inst/extdata/isd_history.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/inst/extdata/isd_history.rda -------------------------------------------------------------------------------- /inst/paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/inst/paper/paper.bib -------------------------------------------------------------------------------- /inst/paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/inst/paper/paper.md -------------------------------------------------------------------------------- /inst/paper/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/inst/paper/paper.pdf -------------------------------------------------------------------------------- /inst/vector/GSODR-hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/inst/vector/GSODR-hex.svg -------------------------------------------------------------------------------- /man/GSODR-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/GSODR-package.Rd -------------------------------------------------------------------------------- /man/dot-agroclimatology_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-agroclimatology_list.Rd -------------------------------------------------------------------------------- /man/dot-apply_process_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-apply_process_csv.Rd -------------------------------------------------------------------------------- /man/dot-check_url_exists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-check_url_exists.Rd -------------------------------------------------------------------------------- /man/dot-download_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-download_files.Rd -------------------------------------------------------------------------------- /man/dot-subset_country_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-subset_country_list.Rd -------------------------------------------------------------------------------- /man/dot-untar_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-untar_files.Rd -------------------------------------------------------------------------------- /man/dot-validate_country.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-validate_country.Rd -------------------------------------------------------------------------------- /man/dot-validate_missing_days.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-validate_missing_days.Rd -------------------------------------------------------------------------------- /man/dot-validate_station_data_years.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-validate_station_data_years.Rd -------------------------------------------------------------------------------- /man/dot-validate_station_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-validate_station_id.Rd -------------------------------------------------------------------------------- /man/dot-validate_years.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/dot-validate_years.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/get_GSOD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/get_GSOD.Rd -------------------------------------------------------------------------------- /man/get_inventory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/get_inventory.Rd -------------------------------------------------------------------------------- /man/get_updates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/get_updates.Rd -------------------------------------------------------------------------------- /man/nearest_stations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/nearest_stations.Rd -------------------------------------------------------------------------------- /man/reformat_GSOD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/reformat_GSOD.Rd -------------------------------------------------------------------------------- /man/update_station_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/man/update_station_list.Rd -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-get_GSOD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/tests/testthat/test-get_GSOD.R -------------------------------------------------------------------------------- /tests/testthat/test-get_updates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/tests/testthat/test-get_updates.R -------------------------------------------------------------------------------- /tests/testthat/test-nearest_stations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/tests/testthat/test-nearest_stations.R -------------------------------------------------------------------------------- /tests/testthat/test-reformat_GSOD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/tests/testthat/test-reformat_GSOD.R -------------------------------------------------------------------------------- /vignettes/Ex5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/vignettes/Ex5-1.png -------------------------------------------------------------------------------- /vignettes/GSODR.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/vignettes/GSODR.Rmd -------------------------------------------------------------------------------- /vignettes/GSODR.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/vignettes/GSODR.Rmd.orig -------------------------------------------------------------------------------- /vignettes/GSOD_Station_locations-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/vignettes/GSOD_Station_locations-1.png -------------------------------------------------------------------------------- /vignettes/precompile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/vignettes/precompile.R -------------------------------------------------------------------------------- /vignettes/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/GSODR/HEAD/vignettes/references.bib --------------------------------------------------------------------------------