Vega-Lite visualization of annual death total from natural disasters since 1900. Data from https://ourworldindata.org/natural-catastrophes/. Recreated from this tweet: https://twitter.com/HannahRitchie02/status/939213765127544832/photo/1.
forked from domoritz's block: Natural Disasters
xxxxxxxxxx
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/vega/3.0.8/vega.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vega-lite/2.0.3/vega-lite.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vega-embed/3.0.0-rc7/vega-embed.js"></script>
<style>
body {
font-family: sans-serif;
}
.vega-actions a {
padding: 0.2em;
}
</style>
</head>
<body>
<div id="vis"></div>
<script>
const spec = "chart.vl.json";
vegaEmbed('#vis', spec).catch(console.warn);
</script>
</body>
https://cdnjs.cloudflare.com/ajax/libs/vega/3.0.8/vega.js
https://cdnjs.cloudflare.com/ajax/libs/vega-lite/2.0.3/vega-lite.js
https://cdnjs.cloudflare.com/ajax/libs/vega-embed/3.0.0-rc7/vega-embed.js