├── .Rbuildignore ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── issue_template.md ├── pull_request_template.md └── workflows │ └── R-check.yml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── eol.R ├── flora_europaea.R ├── gisd.R ├── globals.R ├── griis.R ├── is_native.R ├── nsr.R ├── originr-package.R └── zzz.R ├── README-NOT.md ├── README.Rmd ├── README.md ├── codemeta.json ├── data ├── nsr_countries.RData └── nsr_pol_divisions.RData ├── man ├── eol.Rd ├── flora_europaea.Rd ├── gisd.Rd ├── griis.Rd ├── is_native.Rd ├── nsr.Rd ├── nsr_countries.Rd ├── nsr_pol_divisions.Rd └── originr-package.Rd ├── originr.Rproj └── tests ├── fixtures ├── flora_europaea.yml ├── flora_europaea_fail.yml ├── gisd.yml ├── gisd_not_found.yml ├── griis.yml ├── is_native.yml ├── nsr.yml └── nsr_no_results.yml ├── test-all.R └── testthat ├── helper-originr.R ├── test-eol.R ├── test-flora_europaea.R ├── test-gisd.R ├── test-griis.R ├── test-is_native.R └── test-nsr.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | tests/fixtures/**/* -diff 3 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/R-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/.github/workflows/R-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | cran-comments.md 5 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: originr authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/eol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/R/eol.R -------------------------------------------------------------------------------- /R/flora_europaea.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/R/flora_europaea.R -------------------------------------------------------------------------------- /R/gisd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/R/gisd.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/griis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/R/griis.R -------------------------------------------------------------------------------- /R/is_native.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/R/is_native.R -------------------------------------------------------------------------------- /R/nsr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/R/nsr.R -------------------------------------------------------------------------------- /R/originr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/R/originr-package.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README-NOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/README-NOT.md -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/README.md -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/codemeta.json -------------------------------------------------------------------------------- /data/nsr_countries.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/data/nsr_countries.RData -------------------------------------------------------------------------------- /data/nsr_pol_divisions.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/data/nsr_pol_divisions.RData -------------------------------------------------------------------------------- /man/eol.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/man/eol.Rd -------------------------------------------------------------------------------- /man/flora_europaea.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/man/flora_europaea.Rd -------------------------------------------------------------------------------- /man/gisd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/man/gisd.Rd -------------------------------------------------------------------------------- /man/griis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/man/griis.Rd -------------------------------------------------------------------------------- /man/is_native.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/man/is_native.Rd -------------------------------------------------------------------------------- /man/nsr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/man/nsr.Rd -------------------------------------------------------------------------------- /man/nsr_countries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/man/nsr_countries.Rd -------------------------------------------------------------------------------- /man/nsr_pol_divisions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/man/nsr_pol_divisions.Rd -------------------------------------------------------------------------------- /man/originr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/man/originr-package.Rd -------------------------------------------------------------------------------- /originr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/originr.Rproj -------------------------------------------------------------------------------- /tests/fixtures/flora_europaea.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/fixtures/flora_europaea.yml -------------------------------------------------------------------------------- /tests/fixtures/flora_europaea_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/fixtures/flora_europaea_fail.yml -------------------------------------------------------------------------------- /tests/fixtures/gisd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/fixtures/gisd.yml -------------------------------------------------------------------------------- /tests/fixtures/gisd_not_found.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/fixtures/gisd_not_found.yml -------------------------------------------------------------------------------- /tests/fixtures/griis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/fixtures/griis.yml -------------------------------------------------------------------------------- /tests/fixtures/is_native.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/fixtures/is_native.yml -------------------------------------------------------------------------------- /tests/fixtures/nsr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/fixtures/nsr.yml -------------------------------------------------------------------------------- /tests/fixtures/nsr_no_results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/fixtures/nsr_no_results.yml -------------------------------------------------------------------------------- /tests/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/test-all.R -------------------------------------------------------------------------------- /tests/testthat/helper-originr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/testthat/helper-originr.R -------------------------------------------------------------------------------- /tests/testthat/test-eol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/testthat/test-eol.R -------------------------------------------------------------------------------- /tests/testthat/test-flora_europaea.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/testthat/test-flora_europaea.R -------------------------------------------------------------------------------- /tests/testthat/test-gisd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/testthat/test-gisd.R -------------------------------------------------------------------------------- /tests/testthat/test-griis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/testthat/test-griis.R -------------------------------------------------------------------------------- /tests/testthat/test-is_native.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/testthat/test-is_native.R -------------------------------------------------------------------------------- /tests/testthat/test-nsr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci-archive/originr/HEAD/tests/testthat/test-nsr.R --------------------------------------------------------------------------------