Skip to content

Commit

Permalink
working on JSON merger
Browse files Browse the repository at this point in the history
  • Loading branch information
fbielejec committed Nov 17, 2015
1 parent db423d3 commit 906fd9a
Show file tree
Hide file tree
Showing 17 changed files with 651,333 additions and 381,318 deletions.
650,866 changes: 650,866 additions & 0 deletions d3renderer/data/antigenic_merged.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion d3renderer/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -494,9 +494,13 @@ d3.json("data/antigenic_merged.json", function ready(error, json) {
var pointAttributes = json.pointAttributes;
if (typeof pointAttributes != 'undefined') {
populatePointPanels(pointAttributes);
populateAreaPanels(pointAttributes);
}

var areaAttributes = json.areaAttributes;
if (typeof pointAttributes != 'undefined') {
populateAreaPanels(areaAttributes);
}

var mapAttributes = json.mapAttributes;
if (typeof mapAttributes != 'undefined') {
populateMapPanels(mapAttributes);
Expand Down
Loading

0 comments on commit 906fd9a

Please sign in to comment.