Zoo Escape!

GitHub repo for this project

Contents

  1. Introduction
  2. Assembling Data
    1. Zoo
    2. Police Stations
    3. Network Dataset (Roads)
  3. Analysis
    1. Network Analyst Tools: Closest Facility
  4. Conclusion

Introduction

The goal of this project was to discover how far one could get from the zoo before being intercepted by police. I won’t get into the thinking behind it, but will record my methodology.

We need three main pieces of data for this project:

With this data, we perform some network analysis to discover how far in every direction on the road one could get from the zoo, before one could get there from the nearest police station. This analysis should produce, in effect, a web from the zoo of possible escape routes, each route coming to a dead-end where the cops could intercept.

Assembling Data

To Top

Zoo

I chose Maine Wildlife Park in Gray as my zoo of study. There are not many zoos around that call themselves a zoo.

Figure 1: Zoo.txt

To Top

Police Stations

Figure 2: The Zoo (light green circle), and all nearby police stations (red circles). There is a station directly West of the zoo that will cut off any escape routes in that direction

To Top

Network Dataset (Roads)

To use network analysis tools, you need a network dataset. This is like a roads shapefile except it includes all of the things an application needs to solve routing problems – turns, speed limits, number/direction of lanes, barriers

The easiest way I could create a network dataset for the roads in my study area was to use the OSM toolbox for ArcMap, which contained tools for turning Open Street Map data into a network dataset Arc can work with. That tool box is found at github.com/Esri/arcgis-osm-editor. The instructions I followed are in the documentation on that repository. This involved importing data from Open Street Map, and using the OSM toolbox in ArcMap to convert that data into a network dataset. When selecting the bounding box from within which all OSM data was exported, I went with 43.5 to 44.5 Latitude, -69.7 to -70.7 Longitude. This was more than big enough.

Figure 3: Network dataset for the study area. All roads, intersections, etc.

Analysis

To Top

Network Analyst Tools: Closest Facility

What the Closest Facility tool does is find, for any given “incidents”, what is the quickest (or closest, depending on what impedance is chosen in your network dataset) of the given “facilities” one could reach. From the sounds of it this tool is better suited to answer my question than the other one. And what to use as an Incidents dataset? The intersection points in the network dataset. There are thousands of them, so we'll get a fairly high-resolution result.

The result is a web of all viable escape routes: all the intersections to which the zoo is the closest facility.

Conclusion

As you can see, there is a considerable range, considering this is imagining that all police stations immediately deploy straight to the same intersections as the escapee.

See PDF Map/Report Visual

Scott Waechter

Oh it didn't work...