NOTE: this is a raw data package, it is used to help create the ozmaps package, which may be more suitable for your mapping needs.

The goal of ozmaps.data is to provide reasonably detailed data sets for various spatial subdivisions of Australia.

Installation

The package is not on CRAN but you can install ozmaps.data with:

devtools::install_github("mdsumner/ozmaps.data")

Example

Here we plot each available data set with a few variations using various packages.

plot(st_transform(abs_gccsa, LCC), main = "Greater Capital City Statistical Areas", graticule = TRUE)

ggplot(abs_ireg, aes(fill = NAME)) + geom_sf() + guides(fill = FALSE) + coord_sf(crs = 3577)  + ggtitle("Indigenous Regions (EPSG:3577)")



plot(abs_ra, main = "Regional Areas")



plot(st_transform(abs_sa2, 3112), main = 'abs_sa2', graticule = TRUE)

plot(st_transform(abs_sa3, 28354), main = 'abs_sa3', graticule = TRUE)

plot(st_transform(abs_sa4, 28348), main = 'abs_sa4', graticule = TRUE)

plot(st_transform(abs_sed, 3111), main = 'abs_sed', graticule = TRUE)

plot(st_transform(abs_ste, "+proj=gnom +lon_0=160 +lat_0=0 +datum=WGS84"), main = 'abs_ste', graticule = TRUE)

Please note that the ‘ozmaps.data’ project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.