-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* heatmap draft * add data * improve heatmap * pre changing data to signals * transfer data to signals * visualize map * add modified map schema * html option * update heatmap * Renaming key variables to be more semantically clear (lat/lon vs. x/y) * Changing map+heatmap interactive output handling to write at user-specified location * add test for heatmap Co-authored-by: Joseph Cottam <[email protected]>
- Loading branch information
1 parent
a7da30f
commit 3f16962
Showing
9 changed files
with
48,804 additions
and
7 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/vega@5"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script> | ||
</head> | ||
|
||
<body> | ||
<div id="vis" /> | ||
<script> | ||
$.getJSON('modified_map_heatmap.json', function (spec) { | ||
|
||
vegaEmbed("#vis", spec, { mode: "vega" }).then(console.log).catch(console.warn); | ||
}); | ||
</script> | ||
</body> | ||
|
||
</html> |
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
Oops, something went wrong.