| elb_map | R Documentation |
Provides the points that make up the boundaries of each electoral division in the 2025 Australian Federal Election.
elb_map
A tibble of 8 columns:
Longitude of point in polygon
Latitude of point in polygon
Whether the polygon has a hole
Polygon piece number
Polygon group number
Order of polygon within group
Unique identifier for polygon
Electoral division name
Australian Electoral Commission (AEC) https://www.aec.gov.au/electorates/maps.htm
library(ggplot2)
library(ggthemes)
# Load the dataset
data(elb_map)
# Plot the map
ggplot(elb_map) +
geom_polygon(
aes(x = long, y = lat, group = group),
fill = "grey90", color = "white") +
theme_map()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.