From Mike's bl.ock on topojson.merge: now merge multiple polygons into a single polygon with a hole.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// import processing.pdf.*; | |
// import java.util.Calendar; | |
// boolean savePDF = false; | |
var img; | |
var drawMode = 1; | |
function preload() { | |
img = loadImage("pic.png"); | |
} |
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!
When switching to horizontal the axis is not correctly positioned: bug.
A demonstration of D3’s vertically-oriented bullet charts, based on this example.
A demonstration of D3’s vertically-oriented bullet charts, based on this example.
This is an implementation of an interactive logo for PRU, inspired by IDL's one and by Mike's block.
Hover on it...
The implementation of the (vertical) bar plot as from the Vega tutorial.
The implementation of the horizontal version of the Vega tutorial bar plot.
Simple line plot for IFR traffic using Vega 2.0.