Skip to content

Instantly share code, notes, and snippets.

View JhumanJ's full-sized avatar

Julien Nahum JhumanJ

View GitHub Profile
@JhumanJ
JhumanJ / TFL-Tube-data.json
Last active January 18, 2021 18:03
TFL Tube data Json
// Original Data taken from https://gist.github.com/paulcuth/1111303
// and https://gist.github.com/Lissy93/cb316efbf4b0968bc744cbbe48a574ab
// Enriched with data from Google Place API
{
"lines": [
{
"id": "B",
"name": "Bakerloo",
"stations": [
"BST",
class LineChart {
// LineChart by https://kevinkub.de/
constructor(width, height, values) {
this.ctx = new DrawContext();
this.ctx.size = new Size(width, height);
this.values = values;
}
_calculatePath() {