Skip to content

Instantly share code, notes, and snippets.

@runarorama
runarorama / gist:e2c3a206c94c00e12ed7
Created September 22, 2014 20:06
Interactive location plot of busses in Iceland
Block[{},
BusData[bus_] :=
"results" /. First[Import[StringJoin["http://apis.is/bus/realtime?busses=", bus], "JSON"]];
AllBusData := "results" /. First[Import["http://apis.is/bus/realtime?busses=", "JSON"]];
Dist[{x_ -> y_, a_ -> b_}] := (Flatten[{#1, a -> b}] & ) /@ y;
CommaSep[xs_] := StringTemplate["<*Row[`1`,\",\"]*>"][xs];