Code Monkey home page Code Monkey logo

sonic_fiber's Introduction

Sonic Fiber Map

A map highlighting Sonic.net fiber deployments generated from publicly-available street permits.

Demo

The map itself can be found at https://thatdan.github.io/sonic_fiber/

The data within is recent as of August 8, 2017. (Except permit 17TOC-3140. I've left that as an exercise for the user to figure out why ๐Ÿ˜‰)

Disclaimer

This map is purely speculative based on street permits. I have not verified whether Sonic's fiber service is available on every street highlighted. To quote samstave on HackerNews:

Having the permit doesnt mean the fiber is pulled.

One can check addresses at https://www.sonic.com/availability

Changelog

2017-08-17

  • Including Leaflet to prevent CDN issues.
  • Manually fixing "COLLINGWO OD" issue for now.

2017-08-08

  • Waited for some permits to collect before updating. Biggest ones are for 19th St, Douglas St, Clipper St, 26th St, and Cesar Chavez St. Some permits are for underground conduit checks (e.g. 17TOC-4689 in Excelsior) which might hint to future plans.

TODO

  • Use street centerlines instead of intersecion points
  • Add central office points
  • Write single script for pulling/updating data
  • Include permit number
  • and date on map
  • Add timelapse of permits

How To

Permit data can be found at http://bsm.sfdpw.org/reports/public/permitsearch.aspx

A search for "Sonic Telecom" as the Agency and "Temporary Occupancy" as the Permit Type returns a list of permits mostly (but not always) associated with pulling aerial fiber up and down streets.

PDFs of the permits contain detailed street information and can be downloaded with the Print link next to each permit. Any number of plugins or tools can be used to download these en masse.

Once all the permits are downloaded, they can be run through tabula-java to convert the info into CSVs:

java -jar tabula-0.9.2-jar-with-dependencies.jar -b . -l -p all -r -u;

There's a lot of cruft in the CSVs, but the important rows (street, start and end intersections) can be found by looking for rows containing "RW :" in the 6th column.

The included Python script clean_tabula_csv.py can be run against all the CSVs and filters lines by this rule while adding the current street name to every first column:

echo "permit,streetname,from_st,to_st" > sonic_intersections.csv;
ls 1*TOC*.csv | xargs -L1 python clean_tabula_csv.py >> sonic_intersections.csv;

The city of San Francisco provides street and intersection data at data.sfgov.org. I used their List of Streets and Intersections and Basemap Street Centerlines datasets. The List of Streets contains every intersection of every street in the City by name as printed in the permits while the Basemap contains street geometry by "CNN" which is referenced in the List of Streets. Exporting both sets as CSVs, I imported them and our permit CSV into an sqlite database:

rm sonic.sqlite;
echo "
.separator ','
.import sonic_intersections.csv sonic_intersections
.import List_of_Streets_and_Intersections.csv sf_intersections
.import San_Francisco_Basemap_Street_Centerlines.csv sf_cnn
" | sqlite3 sonic.sqlite

After importing our CSVs, we can do a few joins to get the geometry of the streets covered by the permits. I could have used PostgreSQL or SpatiaLite to generate proper geospatial data, but it's easier to just use the WKT the City includes with their CNN data.

echo "
SELECT sf_cnn.cnn, sonic.permit, sonic.streetname, sonic.from_st, sonic.to_st, sf_cnn.geometry
FROM sonic_intersections sonic
LEFT JOIN sf_intersections sf
  ON sonic.streetname = sf.streetname
  AND sonic.from_st = sf.from_st
  AND sonic.to_st = sf.to_st
LEFT JOIN sf_cnn
  ON sf.cnn = sf_cnn.cnn;
" | sqlite3 sonic.sqlite > sonic_fiber.csv

The included index.html contains a basic Leaflet map with the Wicket plugin to parse and draw sonic_fiber.csv.

Central Office Locations

Per a request from phillijw I added markers highlighting Sonic's central offices as found in this post from Dane Jasper. A CSV with coordinates is in sonic_cos.csv.

sonic_fiber's People

Contributors

danspitler avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.