Capture mousemove and print mouse coordinates.
Simple line plot for IFR traffic using Vega 2.0.
The implementation of the horizontal version of the Vega tutorial bar plot.
The implementation of the (vertical) bar plot as from the Vega tutorial.
This is an implementation of an interactive logo for PRU, inspired by IDL's one and by Mike's block.
Hover on it...
A demonstration of D3’s vertically-oriented bullet charts, based on this example.
When switching to horizontal the axis is not correctly positioned: bug.
A demonstration of D3’s vertically-oriented bullet charts, based on this example.
Take flight ASL334 on 16th Feb 2015 (and sort the position reports by timestamp)
echo "lat,lon,clock,type" > data.csv
cat adsb.json | \
jq -r 'select(.ident=="ASL334" and .clock >= "1424041200" and .clock < "1424127600")|[.lat,.lon,.clock,.updateType]|join(",")' | \
sort --key=3n -t, >> data.csv
click on the markers to get tracks details: spot the zig-zag at around track 60!
From Mike's bl.ock on topojson.merge: now merge multiple polygons into a single polygon with a hole.