Skip to content

Screen-capping Google Maps during the January 2016 blizzard to see how bad traffic tracks with the storm

Notifications You must be signed in to change notification settings

m-crawley/snowzilla-traffic

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

snowzilla-traffic

Screen-capping Google Maps during the January 2016 blizzard to see how bad traffic tracks with the storm

Traffic animation

The morning of the January 2016 blizzard, my husband showed me Google Maps on his phone, with North Carolina's highways lit up with bad traffic: "I guess we know where the storm is!"

Inspired, I wrote a quick, crude PhantomJS script to take regular screenshots of Google Maps for the rest of the day. Then I selected the screenshots I wanted to use and turned them into a GIF using ImageMagick.

The final gif includes screengrabs taken roughly every half-hour. There's a gap between 2 and 4 p.m. (sadly, right about when the storm hits Washington, D.C., in earnest) when my script threw an error and I didn't notice.

This was a crude, pulled-together-in-10-min-or-so project, so nothing is done in a clean or optimized way. I'm saving it here on GitHub mostly for my own future reference.


Screen Capture

I wrote a crude PhantomJS script (here it is) to snap screengrabs of Google Maps (for traffic) and WNYC's weather radar (which I didn't end up using) every 5 minutes or so. I added an extra 5-second delay to help make sure that all/most of the page had rendered before PhantomJS captured the image. Even then, about a fourth of my Google Maps screencaps came out mostly blank, with just the map search bar and other wrapper items and no actual map.

Most PhantomJS scripts include a phantom.exit(); command somewhere. I excluded it because I wanted it to keep running until I cancelled it (ctrl-C) in terminal.

To set things up (sorry — the initial download will take a while because I saved the images in the repo):

git clone git@github.com:alykat/snowzilla-traffic.git
cd snowzilla-traffic
mkvirtualenv snowzilla-traffic
brew install phantomjs

To run the script:

phantomjs mapcapture.js

If that fails, try:

phantomjs --ignore-ssl-errors=true mapcapture.js

To exit the script, hit ctrl-C.


Composite

I used ImageMagick to turn my frames into a GIF:

convert -background white -alpha remove -layers optimize-plus -delay 15x60 -resize 800 *.png -loop 0 filmstrip.gif

Then I brought the GIF into Photoshop to crop out the Google Maps controls. I probably also could have done this with ImageMagick, but Photoshop was the speediest/simplest way to do it at the time.

About

Screen-capping Google Maps during the January 2016 blizzard to see how bad traffic tracks with the storm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%