Connectivity

February 19th, 2014

I was trying to de-clutter a streetmap I’m making and I found some interesting patterns along the way 🙂

Cincinnati Dayton connectivity index map

Cool colors are areas with more dead-ending street segments and warm colors indicate more connected streets than otherwise. That big top blob is Dayton, the lower Cincinnati sitting on the Ohio River. Disconnected streets simply cancel out connecting streets, so you can sort of consider this corrected for density.

Here is the relative intensity of dead-ending streets by themselves:

Cincinnati area disconnectivity index map

Since most streets connect to others at both ends1, the inverse of the above map doesn’t show much that the first one didn’t. It’s interesting to note the distinctly different patterns here. Clusters of connecting streets, many of their more intense appearances in gridded arrangements, form relatively distinct places. You can easily make out Hamilton, Middleton, Richmond or Oxford in the first map if you know where to look. The disconnected streets though seem to really blur recognizable places, totally changing the shape of Cincinnati and smearing it into Dayton, a visible connection not so apparent in the first map.

What’s going on in Kentucky? The rural area south of Cincinnati is a lot hillier than that to the North and there are a lot of long streets that branch out along the tops of hills and then end where the hills themselves do. In flatter places, such streets would pretty naturally just continue straight on until they met the next road.

Since you’re probably wondering if you made it this far just what counts as a connecting street, it’s a segment that connects to another at both ends. In fact, here they are below. You’re gonna want to click the image for the full resolution.  Red is connecting, blue unconnected.

map of dead-end streets in cincinnati ohio

Technical stuff:

Step-by-step:

  1. Create a routable topology from OSM data using osm2po.
  2. Identify  dead-ends recursively:
    • Identify nodes(‘source’ & ‘target’ fields) that are connected to only one edge
    • Identify the edges that are connected to those nodes
    • Isolate those edges from the rest of the network and recurse until everything you have left is connected at both ends. This took me about 20 iterations for this dataset and identified ~81,000 segments out of ~300,000
  3. Create a centroid geometry from the linear geometry of the edges
  4. Calculate a weight for each edge as it’s distance in miles, signed negatively for the dead-ending segments identified in #2
  5. Compute a kernel density surface using the centroids and weight values. I used an 8KM radius, and tri-weight kernels with the QGIS raster plugin which I think is simply a GUI for GDAL.

And then I made it kind of pretty 🙂

Some problems:

  1. Some very long dead-ending segments appeared around the edges as a result of clipping the original dataset out of it’s global context. Concentrating their weight in a centroid resulted in strongly negative spots which simply shouldn’t exist.
  2. Lines that turned back on themselves, or sub-networks of streets which where ultimately connected to the main network by only one edge, and which may thus reasonably be considered entirely dead ends were not identified at all.
  3. OSM data in the US is mainly derived from low-quality TIGER data that was imported several years ago. Many rural areas seem to have an enormous number of driveway type paths identified, many of them mislabelled as residential streets. There are also some places where actual suburban driveways have been identified as dead-ends, which may or may not be misleading to some degree. Most of these however are very short and so their weight shouldn’t be overwhelming. Though that huge negative area West of Dayton is Brookville, where someone seems to have added driveways for every house in town.
    driveways

Show 1 footnote

  1. about 73% when weighted by their lengths

3 responses to “Connectivity”

  1. AdJaGu mapped literally everything in Brookville in the span of two months. They may’ve even gotten a park bench or two in there. Talk about hometown pride!

  2. […] explains why the Silver Spring transit center in suburban Maryland is a terrible place for a park. Cincy Map uses street configurations to create a heat map of the most connected places in the Cincinnati […]

  3. […] talked about this geography of connectivity thing a little bit already, but since that post, I’ve switched to a better dead-end-finding algorithm. Where before I […]


Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *