POC of a JS Array Adapter which enables d3 selections to amend its content.
This file contains hidden or 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
| license: Apache-2.0 |
Google Map with several D3 generated layers:
- Graticule
- Countries
- US Counties
- GeoHash
- Pins
- Graph
- Heat
D3 ConicEqualArea Projection with several D3 generated layers:
- Graticule
- Countries
- US Counties
- GeoHash
- Pins
- Graph
- Heat
HPCC Column Chart
This file contains hidden or 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
| license: Apache-2.0 |
This file contains hidden or 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
| license: Apache-2.0 |
HPCC Mega Chart
HPCC Palettes
This file contains hidden or 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
| define(["d3", "src/common/Utility", "src/other/Comms", "src/map/Graph", "es6-promise"], function (d3, Utility, Comms, Graph) { | |
| var params = Utility.urlParams(); | |
| var hasParams = Object.keys(params).length && params["from"] && params["to"] && params["date"]; | |
| var Query = { | |
| send: function (from, to, date) { | |
| return new Promise(function (resolve, reject) { | |
| Promise.all([ | |
| Query.airports ? Promise.resolve(Query.airports) : new Promise(function (resolve, reject) { | |
| d3.csv("./airports.csv", function (rows) { | |
| Query.airports = {}; |
OlderNewer