Search our website

From the blog

Automating Next-Generation 911 Law Enforcement Boundaries

Author · Erik Neemann
Published · Nov 14, 2019
Last modified · Mar 20, 2024
Category · Developer
Read time · 3 min

UGRC has created a Python script for law enforcement boundaries that automatically builds jurisdiction polygons based on existing boundaries (primarily county and municipal boundaries) in the State Geographic Information Database (SGID). In order to understand how this automation will improve law enforcement response, it’s important to understand Next-generation 911 (NG911).

Background

NG911 will change the paradigm for emergency call-routing from a table-based system to a GIS-based system. With NG911, each 911 call will be registered as a geographic point based on the location (i.e., latitude and longitude) of the cell phone or the address of the landline from which the call originates. Once that geographic point is determined, NG911 can determine which dispatch center, or public safety answering point (PSAP), boundary the point falls within, and the call can be routed appropriately. As a result, the GIS data informing the NG911 system is critical for ensuring that calls are routed to the correct PSAP. The new internet-based network infrastructure will also provide additional GIS-based information to the PSAP when the call is delivered. This information will include a recommendation on which agencies (i.e., which city’s/county’s law enforcement, fire, or emergency medical service agencies) should be dispatched according to the call’s geographic location.

In order to facilitate Utah’s transition to the NG911 system, UGRC is preparing statewide GIS data sets that will drive the call-routing and agency recommendations. Although the transition is still many months away, we are already working on preparing the GIS data. The emergency service boundaries will need to be accurate, with no gaps or overlaps, to ensure that every location has appropriate and unambiguous responding agency recommendations.

Python Script

With that information in mind, let’s get back to UGRC’s Python script. Our new script will automatically build jurisdiction polygons based on other boundaries that are maintained in the SGID (e.g., counties, municipalities). Police departments generally cover their own municipal boundaries, while county sheriff’s offices generally cover the rest of the county land that doesn’t belong to a municipality. However, not all municipalities have their own police department, and some police departments cover multiple municipalities. Further, there are unique law enforcement agencies that aren’t associated with either county or municipal boundaries (e.g., Ute tribal police). Each of these nuances is handled by the Python script, which references external files that list which police departments cover which municipalities or contain static boundaries for the unique law enforcement agencies.

NG911 Law Enforcement Boundaries

This script will allow the NG911 boundaries to be dynamically updated as boundaries are adjusted, new municipalities form, or annexations occur. The basic script logic is as follows:

  1. Generate sheriff’s office jurisdictions from SGID county boundaries
  2. Generate police department jurisdictions from SGID municipal boundaries
    • Only build boundaries for municipalities that have their own police department
    • Merge boundaries of municipalities that share a police department
  3. Insert police department boundaries into sheriff’s office boundaries to create a combined boundaries layer
  4. Insert unique jurisdiction boundaries into combined boundaries layer

If you would like to see the current law enforcement boundaries (November 2019) browse to this web map, opens in a new tab. Please explore this map and let us know if there are any errors or discrepancies in your area. We want to ensure that these boundaries are as accurate as possible, and we welcome feedback that leads to better data.