Skip to content

Instantly share code, notes, and snippets.

View blehman's full-sized avatar

Brian Lehman blehman

  • Viz Farm LLC
  • Boulder, CO
View GitHub Profile
@blehman
blehman / _.md
Created October 18, 2013 22:56
intro to d3
@blehman
blehman / _.md
Last active December 26, 2015 12:08
bar graph
@blehman
blehman / _.md
Created November 3, 2013 22:57
Tributary inlet
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@blehman
blehman / geoData.json
Last active April 7, 2017 01:32
d3 map (basic)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@blehman
blehman / tweet2GeoJSON.bash
Created October 1, 2014 08:42
using JQ to transform geotagged tweets into valid geojson
echo '{"type":"FeatureCollection","features":'"$(cat data.json | jq 'select(.geo)| {type: "Feature", geometry:{type:"Point", coordinates:[.geo.coordinates[1],.geo.coordinates[0]]},properties:{tweet_body:.body,handle:.actor.displayName}}' | jq -s .)"'}'
@blehman
blehman / _.md
Last active August 29, 2015 14:10
ex1 (part 1): scatter plot
@blehman
blehman / _.md
Last active August 29, 2015 14:10
ex2: legend
@blehman
blehman / _.md
Last active August 29, 2015 14:10
ex3: event handler
@blehman
blehman / _.md
Last active August 29, 2015 14:10
ex 1 (part 3): event handler scafolding