├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── check-standard.yaml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── AOO_functions.R ├── EOO_functions.R ├── change_functions.R └── gridUncertainty_functions.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── inst └── extdata │ ├── example_distribution_2000.tif │ └── example_distribution_2017.tif ├── man ├── createGrid.Rd ├── extrapolateEstimate.Rd ├── futureAreaEstimate.Rd ├── getAOO.Rd ├── getAOOSilent.Rd ├── getArea.RasterLayer.Rd ├── getArea.Rd ├── getArea.SpatRaster.Rd ├── getArea.SpatVect.Rd ├── getArea.SpatialPolygons.Rd ├── getArea.sf.Rd ├── getAreaEOO.Rd ├── getAreaLoss.Rd ├── getDeclineStats.Rd ├── gridUncertainty.Rd ├── gridUncertaintyBase.Rd ├── gridUncertaintyRandom.Rd ├── gridUncertaintyRandomManual.Rd ├── gridUncertaintyRestricted.Rd ├── gridUncertaintySimulation.Rd ├── makeAOOGrid.Rd ├── makeEOO.Rd └── sequentialExtrapolate.Rd ├── redlistr.Rproj ├── tests ├── testthat.R └── testthat │ ├── test-AOO_functions.R │ └── test_areaAndChange.R └── vignettes ├── iteration-vignette.Rmd └── redlistr-vignette.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | inst/doc 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Calvin Ka Fai Lee 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/AOO_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/R/AOO_functions.R -------------------------------------------------------------------------------- /R/EOO_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/R/EOO_functions.R -------------------------------------------------------------------------------- /R/change_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/R/change_functions.R -------------------------------------------------------------------------------- /R/gridUncertainty_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/R/gridUncertainty_functions.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/extdata/example_distribution_2000.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/inst/extdata/example_distribution_2000.tif -------------------------------------------------------------------------------- /inst/extdata/example_distribution_2017.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/inst/extdata/example_distribution_2017.tif -------------------------------------------------------------------------------- /man/createGrid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/createGrid.Rd -------------------------------------------------------------------------------- /man/extrapolateEstimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/extrapolateEstimate.Rd -------------------------------------------------------------------------------- /man/futureAreaEstimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/futureAreaEstimate.Rd -------------------------------------------------------------------------------- /man/getAOO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getAOO.Rd -------------------------------------------------------------------------------- /man/getAOOSilent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getAOOSilent.Rd -------------------------------------------------------------------------------- /man/getArea.RasterLayer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getArea.RasterLayer.Rd -------------------------------------------------------------------------------- /man/getArea.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getArea.Rd -------------------------------------------------------------------------------- /man/getArea.SpatRaster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getArea.SpatRaster.Rd -------------------------------------------------------------------------------- /man/getArea.SpatVect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getArea.SpatVect.Rd -------------------------------------------------------------------------------- /man/getArea.SpatialPolygons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getArea.SpatialPolygons.Rd -------------------------------------------------------------------------------- /man/getArea.sf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getArea.sf.Rd -------------------------------------------------------------------------------- /man/getAreaEOO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getAreaEOO.Rd -------------------------------------------------------------------------------- /man/getAreaLoss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getAreaLoss.Rd -------------------------------------------------------------------------------- /man/getDeclineStats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/getDeclineStats.Rd -------------------------------------------------------------------------------- /man/gridUncertainty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/gridUncertainty.Rd -------------------------------------------------------------------------------- /man/gridUncertaintyBase.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/gridUncertaintyBase.Rd -------------------------------------------------------------------------------- /man/gridUncertaintyRandom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/gridUncertaintyRandom.Rd -------------------------------------------------------------------------------- /man/gridUncertaintyRandomManual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/gridUncertaintyRandomManual.Rd -------------------------------------------------------------------------------- /man/gridUncertaintyRestricted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/gridUncertaintyRestricted.Rd -------------------------------------------------------------------------------- /man/gridUncertaintySimulation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/gridUncertaintySimulation.Rd -------------------------------------------------------------------------------- /man/makeAOOGrid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/makeAOOGrid.Rd -------------------------------------------------------------------------------- /man/makeEOO.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/makeEOO.Rd -------------------------------------------------------------------------------- /man/sequentialExtrapolate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/man/sequentialExtrapolate.Rd -------------------------------------------------------------------------------- /redlistr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/redlistr.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-AOO_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/tests/testthat/test-AOO_functions.R -------------------------------------------------------------------------------- /tests/testthat/test_areaAndChange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/tests/testthat/test_areaAndChange.R -------------------------------------------------------------------------------- /vignettes/iteration-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/vignettes/iteration-vignette.Rmd -------------------------------------------------------------------------------- /vignettes/redlistr-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-list-ecosystem/redlistr/HEAD/vignettes/redlistr-vignette.Rmd --------------------------------------------------------------------------------