├── .Rbuildignore ├── .github └── workflows │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── biooracle.R ├── countries.R ├── crop_sacks.R ├── crop_spam.R ├── crops_monfreda.R ├── download.R ├── elevation.R ├── gadm.R ├── landuse.R ├── nasawth.R ├── occurrence.R ├── osm.R ├── path.R ├── pop.R ├── soil_afsis.R ├── soil_grids.R ├── soil_isda.R ├── travel_time.R ├── uri_helpers.R ├── worldclim.R └── zzz.R ├── README.md ├── _pkgdown.yml ├── inst └── ex │ ├── bior.rds │ ├── countries.rds │ └── tiles.rds └── man ├── biooracle.Rd ├── cmip6.Rd ├── countries.Rd ├── crop_calendar_Sacks.Rd ├── crop_calendar_rice.Rd ├── crop_monfreda.Rd ├── crop_spam.Rd ├── cropland.Rd ├── elevation.Rd ├── footprint.Rd ├── gadm.Rd ├── geodata-package.Rd ├── geodata_path.Rd ├── landcover.Rd ├── osm.Rd ├── population.Rd ├── soil_af.Rd ├── soil_af_elements.Rd ├── soil_af_isda.Rd ├── soil_af_isda_vsi.Rd ├── soil_af_water.Rd ├── soil_grids.Rd ├── soil_grids_vsi.Rd ├── sp_occurrence.Rd ├── travel_time.Rd ├── world.Rd └── worldclim.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/biooracle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/biooracle.R -------------------------------------------------------------------------------- /R/countries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/countries.R -------------------------------------------------------------------------------- /R/crop_sacks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/crop_sacks.R -------------------------------------------------------------------------------- /R/crop_spam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/crop_spam.R -------------------------------------------------------------------------------- /R/crops_monfreda.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/crops_monfreda.R -------------------------------------------------------------------------------- /R/download.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/download.R -------------------------------------------------------------------------------- /R/elevation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/elevation.R -------------------------------------------------------------------------------- /R/gadm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/gadm.R -------------------------------------------------------------------------------- /R/landuse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/landuse.R -------------------------------------------------------------------------------- /R/nasawth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/nasawth.R -------------------------------------------------------------------------------- /R/occurrence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/occurrence.R -------------------------------------------------------------------------------- /R/osm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/osm.R -------------------------------------------------------------------------------- /R/path.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/path.R -------------------------------------------------------------------------------- /R/pop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/pop.R -------------------------------------------------------------------------------- /R/soil_afsis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/soil_afsis.R -------------------------------------------------------------------------------- /R/soil_grids.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/soil_grids.R -------------------------------------------------------------------------------- /R/soil_isda.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/soil_isda.R -------------------------------------------------------------------------------- /R/travel_time.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/travel_time.R -------------------------------------------------------------------------------- /R/uri_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/uri_helpers.R -------------------------------------------------------------------------------- /R/worldclim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/worldclim.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /inst/ex/bior.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/inst/ex/bior.rds -------------------------------------------------------------------------------- /inst/ex/countries.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/inst/ex/countries.rds -------------------------------------------------------------------------------- /inst/ex/tiles.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/inst/ex/tiles.rds -------------------------------------------------------------------------------- /man/biooracle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/biooracle.Rd -------------------------------------------------------------------------------- /man/cmip6.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/cmip6.Rd -------------------------------------------------------------------------------- /man/countries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/countries.Rd -------------------------------------------------------------------------------- /man/crop_calendar_Sacks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/crop_calendar_Sacks.Rd -------------------------------------------------------------------------------- /man/crop_calendar_rice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/crop_calendar_rice.Rd -------------------------------------------------------------------------------- /man/crop_monfreda.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/crop_monfreda.Rd -------------------------------------------------------------------------------- /man/crop_spam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/crop_spam.Rd -------------------------------------------------------------------------------- /man/cropland.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/cropland.Rd -------------------------------------------------------------------------------- /man/elevation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/elevation.Rd -------------------------------------------------------------------------------- /man/footprint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/footprint.Rd -------------------------------------------------------------------------------- /man/gadm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/gadm.Rd -------------------------------------------------------------------------------- /man/geodata-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/geodata-package.Rd -------------------------------------------------------------------------------- /man/geodata_path.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/geodata_path.Rd -------------------------------------------------------------------------------- /man/landcover.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/landcover.Rd -------------------------------------------------------------------------------- /man/osm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/osm.Rd -------------------------------------------------------------------------------- /man/population.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/population.Rd -------------------------------------------------------------------------------- /man/soil_af.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/soil_af.Rd -------------------------------------------------------------------------------- /man/soil_af_elements.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/soil_af_elements.Rd -------------------------------------------------------------------------------- /man/soil_af_isda.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/soil_af_isda.Rd -------------------------------------------------------------------------------- /man/soil_af_isda_vsi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/soil_af_isda_vsi.Rd -------------------------------------------------------------------------------- /man/soil_af_water.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/soil_af_water.Rd -------------------------------------------------------------------------------- /man/soil_grids.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/soil_grids.Rd -------------------------------------------------------------------------------- /man/soil_grids_vsi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/soil_grids_vsi.Rd -------------------------------------------------------------------------------- /man/sp_occurrence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/sp_occurrence.Rd -------------------------------------------------------------------------------- /man/travel_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/travel_time.Rd -------------------------------------------------------------------------------- /man/world.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/world.Rd -------------------------------------------------------------------------------- /man/worldclim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rspatial/geodata/HEAD/man/worldclim.Rd --------------------------------------------------------------------------------