├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── GapAnalysis.Rproj ├── NAMESPACE ├── NEWS.md ├── R ├── ERSex.R ├── ERSin.R ├── FCSc_mean.R ├── FCSex.R ├── FCSin.R ├── GRSex.R ├── GRSin.R ├── SRSex.R ├── SRSin.R ├── checkEcoregion.R ├── checkOccurrences.R ├── checkProtectedAreas.R ├── checkRasters.R ├── data.R ├── generateCounts.R ├── generateEcoSelection.R ├── generateGBuffers.R ├── getDatasets.R └── globals.R ├── README.md ├── cran-comments.md ├── data ├── CucurbitaData.rda ├── CucurbitaRasts.rda ├── ProtectedAreas.rda └── ecoregions.rda ├── man ├── CucurbitaData.Rd ├── CucurbitaRasters.Rd ├── ERSex.Rd ├── ERSin.Rd ├── FCSc_mean.Rd ├── FCSex.Rd ├── FCSin.Rd ├── GRSex.Rd ├── GRSin.Rd ├── ProtectedAreas.Rd ├── SRSex.Rd ├── SRSin.Rd ├── checkEcoregion.Rd ├── checkOccurrences.Rd ├── checkProtectedAreas.Rd ├── checksdm.Rd ├── ecoregions.Rd ├── generateCounts.Rd ├── generateEcoSelection.Rd ├── generateGBuffers.Rd └── getDatasets.Rd └── multipleSpecies_vignette.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /GapAnalysis.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/GapAnalysis.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/ERSex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/ERSex.R -------------------------------------------------------------------------------- /R/ERSin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/ERSin.R -------------------------------------------------------------------------------- /R/FCSc_mean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/FCSc_mean.R -------------------------------------------------------------------------------- /R/FCSex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/FCSex.R -------------------------------------------------------------------------------- /R/FCSin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/FCSin.R -------------------------------------------------------------------------------- /R/GRSex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/GRSex.R -------------------------------------------------------------------------------- /R/GRSin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/GRSin.R -------------------------------------------------------------------------------- /R/SRSex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/SRSex.R -------------------------------------------------------------------------------- /R/SRSin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/SRSin.R -------------------------------------------------------------------------------- /R/checkEcoregion.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/checkEcoregion.R -------------------------------------------------------------------------------- /R/checkOccurrences.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/checkOccurrences.R -------------------------------------------------------------------------------- /R/checkProtectedAreas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/checkProtectedAreas.R -------------------------------------------------------------------------------- /R/checkRasters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/checkRasters.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/data.R -------------------------------------------------------------------------------- /R/generateCounts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/generateCounts.R -------------------------------------------------------------------------------- /R/generateEcoSelection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/generateEcoSelection.R -------------------------------------------------------------------------------- /R/generateGBuffers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/generateGBuffers.R -------------------------------------------------------------------------------- /R/getDatasets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/getDatasets.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/R/globals.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/CucurbitaData.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/data/CucurbitaData.rda -------------------------------------------------------------------------------- /data/CucurbitaRasts.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/data/CucurbitaRasts.rda -------------------------------------------------------------------------------- /data/ProtectedAreas.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/data/ProtectedAreas.rda -------------------------------------------------------------------------------- /data/ecoregions.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/data/ecoregions.rda -------------------------------------------------------------------------------- /man/CucurbitaData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/CucurbitaData.Rd -------------------------------------------------------------------------------- /man/CucurbitaRasters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/CucurbitaRasters.Rd -------------------------------------------------------------------------------- /man/ERSex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/ERSex.Rd -------------------------------------------------------------------------------- /man/ERSin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/ERSin.Rd -------------------------------------------------------------------------------- /man/FCSc_mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/FCSc_mean.Rd -------------------------------------------------------------------------------- /man/FCSex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/FCSex.Rd -------------------------------------------------------------------------------- /man/FCSin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/FCSin.Rd -------------------------------------------------------------------------------- /man/GRSex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/GRSex.Rd -------------------------------------------------------------------------------- /man/GRSin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/GRSin.Rd -------------------------------------------------------------------------------- /man/ProtectedAreas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/ProtectedAreas.Rd -------------------------------------------------------------------------------- /man/SRSex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/SRSex.Rd -------------------------------------------------------------------------------- /man/SRSin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/SRSin.Rd -------------------------------------------------------------------------------- /man/checkEcoregion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/checkEcoregion.Rd -------------------------------------------------------------------------------- /man/checkOccurrences.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/checkOccurrences.Rd -------------------------------------------------------------------------------- /man/checkProtectedAreas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/checkProtectedAreas.Rd -------------------------------------------------------------------------------- /man/checksdm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/checksdm.Rd -------------------------------------------------------------------------------- /man/ecoregions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/ecoregions.Rd -------------------------------------------------------------------------------- /man/generateCounts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/generateCounts.Rd -------------------------------------------------------------------------------- /man/generateEcoSelection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/generateEcoSelection.Rd -------------------------------------------------------------------------------- /man/generateGBuffers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/generateGBuffers.Rd -------------------------------------------------------------------------------- /man/getDatasets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/man/getDatasets.Rd -------------------------------------------------------------------------------- /multipleSpecies_vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CIAT-DAPA/GapAnalysis/HEAD/multipleSpecies_vignette.Rmd --------------------------------------------------------------------------------