Read 'Australian Agricultural and Grazing Industries Survey' (AAGIS) region mapping files
Source:R/read_aagis_regions.R
read_aagis_regions.Rd
Download, cache and import the Australian Agricultural and Grazing Industries Survey (AAGIS regions geospatial shapefile. Upon import, the geometries are automatically corrected to fix invalid geometries that are present in the original shapefile.
Arguments
- cache
Cache the AAGIS regions' geospatial file after downloading using
tools::R_user_dir("read.abares", "cache")
to identify the proper directory for storing user data in a cache for this package. Defaults toTRUE
, caching the files locally as a Geopackage. IfFALSE
, this function usestempdir()
and the files are deleted upon closing of the active R session.
Value
An sf object of the AAGIS regions.
References
https://www.agriculture.gov.au/abares/research-topics/surveys/farm-definitions-methods#regions
See also
Other AGFD:
get_agfd()
,
read_agfd_dt()
,
read_agfd_stars()
,
read_agfd_terra()
,
read_agfd_tidync()
Examples
if (FALSE) { # interactive()
aagis <- read_aagis_regions()
plot(aagis)
}