Returns available police forces, details on a specific police force, or officers on that force.
ukc_forces()
ukc_force_details(force = NULL)
ukc_officers(force)
The id of the police force, available from the id
column
returned by ukc_forces
. Not case sensitive.
ukc_forces
returns a tibble
with all police forces in England
and Wales, ukc_force_details
returns details on a given police force and
ukc_officers
returns details on senior officers for a given police force.
if (FALSE) {
forces <- ukc_forces()
cops <- ukc_officers("cumbria")
details <- ukc_force_details("thames-valley")
}