poa_lhd_concordance | R Documentation |
Contains the other administrative geometries which intersect with the local health district boundaries, along with the size of the intersection.
poa_lhd_concordance
An object of class data.frame
with 825 rows and 5 columns.
For geographic regions used by the Australian Bureau of Statistics (ABS), the ABS publishes correspondence files. These files compare how two different types of regions align with each other. The Australian Government Department of Health and Aged Care published analogous concordance files for primary health networks (PHNs). These are useful for mapping between different types of administrative districts. There does not appear to be a publicly available set of concordance files for New South Wales local health district geographies.
The concordance was computed here by intersecting the ABS geometries with the
local health district geometries. The fraction of the ABS geometry's area
included in the intersection is reported in the column FRAC_INCLUDED
.
Any intersection with FRAC_INCLUDED
at least 0.01% was retained.
Area computations were performed in crs_gda2020_albers()
(EPSG 9473 equal
area Albers) coordinates at the original reolution of the source data.
Note that postal areas are not precisely the same as postcodes used by Australia Post, however they are very similar.
Computed using the same source datasets as lhd
and poa_nsw
.
library(dplyr)
# postcodes that overlap with Murrumbidgee LHD
poa_lhd_concordance |>
filter(lhd_name == "Murrumbidgee", FRAC_INCLUDED > 0.005) |>
arrange(desc(FRAC_INCLUDED)) |>
pull(POA_NAME_2021)
# extract the main LHD for each postcode
poa_lhd_concordance |>
arrange(desc(FRAC_INCLUDED)) |>
slice_head(n = 1, by = POA_NAME_2021) |>
mutate(postcode = POA_NAME_2021, lhd = lhd_name, .keep = "none") |>
as_tibble()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.