├── .Rbuildignore ├── .covrignore ├── .gitattributes ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── GET.R ├── as.geojson.R ├── chirps.R ├── get_chirps.R ├── get_chirts.R ├── get_esi.R ├── get_imerg.R ├── internal_functions.R ├── precip_indices.R ├── print.R └── tapajos.R ├── README.md ├── chirps.Rproj ├── codecov.yml ├── codemeta.json ├── data └── tapajos.rda ├── docs ├── 404.html ├── CODE_OF_CONDUCT.html ├── CONTRIBUTING.html ├── LICENSE-text.html ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── articles │ ├── Overview.html │ ├── Overview_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ └── header-attrs-2.3 │ │ │ └── header-attrs.js │ ├── days-1.png │ ├── index.html │ ├── map.png │ └── mm-1.png ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── days-1.png ├── docsearch.css ├── docsearch.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── link.svg ├── logo.svg ├── map.png ├── mm-1.png ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── chirps.html │ ├── dataframe_to_geojson.html │ ├── figures │ ├── logo.png │ ├── logo.svg │ └── logo_hq.png │ ├── get_chirps.html │ ├── get_esi.html │ ├── index.html │ ├── precip_indices.html │ ├── sf_to_geojson.html │ └── tapajos.html ├── inst ├── CITATION ├── WORDLIST ├── paper │ ├── Fig1.png │ ├── paper.bib │ ├── paper.log │ └── paper.md └── vector │ └── chirps-hex.svg ├── man ├── as.geojson.Rd ├── chirps.Rd ├── figures │ └── logo.png ├── get_chirps.Rd ├── get_chirts.Rd ├── get_esi.Rd ├── get_imerg.Rd ├── precip_indices.Rd └── tapajos.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── testthat.R └── testthat │ ├── test-get_chirps.R │ ├── test-get_chirts.R │ ├── test-get_esi.R │ ├── test-get_imerg.R │ ├── test-internal_functions.R │ ├── test-precip_indices.R │ └── test_data.rda └── vignettes ├── Overview.Rmd ├── Overview.Rmd.orig ├── Overview.md ├── chirps.bib ├── citation_style.csl ├── days-1.png ├── map.png ├── mm-1.png └── precompile.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.covrignore: -------------------------------------------------------------------------------- 1 | ^R/print\.R$ 2 | 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | tests/fixtures/**/* -diff 3 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Kauê de Sousa -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/GET.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/GET.R -------------------------------------------------------------------------------- /R/as.geojson.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/as.geojson.R -------------------------------------------------------------------------------- /R/chirps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/chirps.R -------------------------------------------------------------------------------- /R/get_chirps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/get_chirps.R -------------------------------------------------------------------------------- /R/get_chirts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/get_chirts.R -------------------------------------------------------------------------------- /R/get_esi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/get_esi.R -------------------------------------------------------------------------------- /R/get_imerg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/get_imerg.R -------------------------------------------------------------------------------- /R/internal_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/internal_functions.R -------------------------------------------------------------------------------- /R/precip_indices.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/precip_indices.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/print.R -------------------------------------------------------------------------------- /R/tapajos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/R/tapajos.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/README.md -------------------------------------------------------------------------------- /chirps.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/chirps.Rproj -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/codemeta.json -------------------------------------------------------------------------------- /data/tapajos.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/data/tapajos.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/CODE_OF_CONDUCT.html -------------------------------------------------------------------------------- /docs/CONTRIBUTING.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/CONTRIBUTING.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/Overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/articles/Overview.html -------------------------------------------------------------------------------- /docs/articles/Overview_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/articles/Overview_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/Overview_files/header-attrs-2.3/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/articles/Overview_files/header-attrs-2.3/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/days-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/articles/days-1.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/articles/map.png -------------------------------------------------------------------------------- /docs/articles/mm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/articles/mm-1.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/days-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/days-1.png -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/map.png -------------------------------------------------------------------------------- /docs/mm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/mm-1.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/chirps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/chirps.html -------------------------------------------------------------------------------- /docs/reference/dataframe_to_geojson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/dataframe_to_geojson.html -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/figures/logo.svg -------------------------------------------------------------------------------- /docs/reference/figures/logo_hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/figures/logo_hq.png -------------------------------------------------------------------------------- /docs/reference/get_chirps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/get_chirps.html -------------------------------------------------------------------------------- /docs/reference/get_esi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/get_esi.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/precip_indices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/precip_indices.html -------------------------------------------------------------------------------- /docs/reference/sf_to_geojson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/sf_to_geojson.html -------------------------------------------------------------------------------- /docs/reference/tapajos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/docs/reference/tapajos.html -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/paper/Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/inst/paper/Fig1.png -------------------------------------------------------------------------------- /inst/paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/inst/paper/paper.bib -------------------------------------------------------------------------------- /inst/paper/paper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/inst/paper/paper.log -------------------------------------------------------------------------------- /inst/paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/inst/paper/paper.md -------------------------------------------------------------------------------- /inst/vector/chirps-hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/inst/vector/chirps-hex.svg -------------------------------------------------------------------------------- /man/as.geojson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/man/as.geojson.Rd -------------------------------------------------------------------------------- /man/chirps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/man/chirps.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/get_chirps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/man/get_chirps.Rd -------------------------------------------------------------------------------- /man/get_chirts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/man/get_chirts.Rd -------------------------------------------------------------------------------- /man/get_esi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/man/get_esi.Rd -------------------------------------------------------------------------------- /man/get_imerg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/man/get_imerg.Rd -------------------------------------------------------------------------------- /man/precip_indices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/man/precip_indices.Rd -------------------------------------------------------------------------------- /man/tapajos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/man/tapajos.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-get_chirps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/tests/testthat/test-get_chirps.R -------------------------------------------------------------------------------- /tests/testthat/test-get_chirts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/tests/testthat/test-get_chirts.R -------------------------------------------------------------------------------- /tests/testthat/test-get_esi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/tests/testthat/test-get_esi.R -------------------------------------------------------------------------------- /tests/testthat/test-get_imerg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/tests/testthat/test-get_imerg.R -------------------------------------------------------------------------------- /tests/testthat/test-internal_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/tests/testthat/test-internal_functions.R -------------------------------------------------------------------------------- /tests/testthat/test-precip_indices.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/tests/testthat/test-precip_indices.R -------------------------------------------------------------------------------- /tests/testthat/test_data.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/tests/testthat/test_data.rda -------------------------------------------------------------------------------- /vignettes/Overview.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/vignettes/Overview.Rmd -------------------------------------------------------------------------------- /vignettes/Overview.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/vignettes/Overview.Rmd.orig -------------------------------------------------------------------------------- /vignettes/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/vignettes/Overview.md -------------------------------------------------------------------------------- /vignettes/chirps.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/vignettes/chirps.bib -------------------------------------------------------------------------------- /vignettes/citation_style.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/vignettes/citation_style.csl -------------------------------------------------------------------------------- /vignettes/days-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/vignettes/days-1.png -------------------------------------------------------------------------------- /vignettes/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/vignettes/map.png -------------------------------------------------------------------------------- /vignettes/mm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/vignettes/mm-1.png -------------------------------------------------------------------------------- /vignettes/precompile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/chirps/HEAD/vignettes/precompile.R --------------------------------------------------------------------------------