├── .github └── workflows │ ├── update_map.yml │ └── workflow.yml ├── .gitignore ├── LICENSE ├── README.md ├── ai ├── ai2html-config.json ├── hello-ai-project.ai └── vaccination_map.ai ├── config.json ├── copy-template.js ├── data-old ├── vaccinations.csv └── vaccinations.json ├── package.json ├── pre-render.js ├── process-data ├── make_as-of_file.sh └── make_vax_map.sh ├── public ├── build │ ├── bundle.css │ ├── bundle.js │ └── bundle.js.map ├── favicon.png ├── global.css ├── index.html ├── pym.v1.min.js ├── pymtest.html ├── pymtest2.html ├── states.png ├── styles.css ├── styles.css.map ├── vaccination_map-Artboard_1.png ├── vaccination_map.html ├── vaccinations_county_map.svg ├── vaccinations_county_map_test.svg ├── vaccinations_map.json └── vaccinations_map.svg ├── rollup.config-ssr.js ├── rollup.config.js ├── scripts ├── pym.v1.min.js └── setupTypeScript.js └── src ├── App.svelte ├── components ├── layercake │ ├── Annotations.svelte │ ├── Area.svelte │ ├── AreaStacked.svelte │ ├── ArrowheadDef.svelte │ ├── Arrows.svelte │ ├── AxisRadial.svelte │ ├── AxisX.html.svelte │ ├── AxisX.svelte │ ├── AxisY.html.svelte │ ├── AxisY.svelte │ ├── Bar.svelte │ ├── BarStacked.svelte │ ├── Beeswarm.html.svelte │ ├── Beeswarm.svelte │ ├── BeeswarmForce.html.svelte │ ├── BeeswarmForce.svelte │ ├── Brush.svelte │ ├── CalendarMonth.svelte │ ├── CirclePack.html.svelte │ ├── CirclePackForce.svelte │ ├── ClevelandDotPlot.html.svelte │ ├── ClevelandDotPlot.svelte │ ├── Column.svelte │ ├── ColumnLinear.svelte │ ├── ColumnStacked.svelte │ ├── ForceDirectedGraph.svelte │ ├── Key.svelte │ ├── Labels.svelte │ ├── Line.svelte │ ├── Map.canvas.svelte │ ├── Map.svg.svelte │ ├── MultiLine.svelte │ ├── QuadTree.percent-range.svelte │ ├── QuadTree.svelte │ ├── Radar.svelte │ ├── Sankey.svelte │ ├── Scatter.canvas.svelte │ ├── Scatter.html.svelte │ ├── Scatter.svg.svelte │ ├── Scatter.webgl.svelte │ ├── SharedTooltip.percent-range.svelte │ ├── SharedTooltip.svelte │ ├── SmallMultipleWrapper.percent-range.svelte │ ├── SmallMultipleWrapper.svelte │ ├── SyncedBrushWrapper.percent-range.svelte │ ├── SyncedBrushWrapper.svelte │ ├── Tooltip.svelte │ └── Voronoi.svelte └── smarts │ ├── HtmlRender.svelte │ ├── Map.albers.svelte │ ├── MapKey.svelte │ ├── MapLabels.albers.svelte │ └── SvgImage.svelte ├── data ├── as-of.json ├── counties.json ├── innerlines.json ├── names.json ├── points.csv ├── states.json ├── us_counties_albers.json ├── us_states_albers.json ├── us_states_albers_innerlines.json ├── us_states_albers_labels_nyt.json ├── vaccinations.csv ├── vaccinations.json ├── vaccinations_county.csv ├── vaccinations_county.json ├── vaccinations_county_map.topojson.json ├── vaccinations_map.topojson.json └── vaccinations_states_subset.topojson.json ├── main.js └── template.svelte /.github/workflows/update_map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/.github/workflows/update_map.yml -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/README.md -------------------------------------------------------------------------------- /ai/ai2html-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/ai/ai2html-config.json -------------------------------------------------------------------------------- /ai/hello-ai-project.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/ai/hello-ai-project.ai -------------------------------------------------------------------------------- /ai/vaccination_map.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/ai/vaccination_map.ai -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "hydrate": false 3 | } 4 | -------------------------------------------------------------------------------- /copy-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/copy-template.js -------------------------------------------------------------------------------- /data-old/vaccinations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/data-old/vaccinations.csv -------------------------------------------------------------------------------- /data-old/vaccinations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/data-old/vaccinations.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/package.json -------------------------------------------------------------------------------- /pre-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/pre-render.js -------------------------------------------------------------------------------- /process-data/make_as-of_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/process-data/make_as-of_file.sh -------------------------------------------------------------------------------- /process-data/make_vax_map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/process-data/make_vax_map.sh -------------------------------------------------------------------------------- /public/build/bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/build/bundle.css -------------------------------------------------------------------------------- /public/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/build/bundle.js -------------------------------------------------------------------------------- /public/build/bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/build/bundle.js.map -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/pym.v1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/pym.v1.min.js -------------------------------------------------------------------------------- /public/pymtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/pymtest.html -------------------------------------------------------------------------------- /public/pymtest2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/pymtest2.html -------------------------------------------------------------------------------- /public/states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/states.png -------------------------------------------------------------------------------- /public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/styles.css -------------------------------------------------------------------------------- /public/styles.css.map: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /public/vaccination_map-Artboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/vaccination_map-Artboard_1.png -------------------------------------------------------------------------------- /public/vaccination_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/vaccination_map.html -------------------------------------------------------------------------------- /public/vaccinations_county_map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/vaccinations_county_map.svg -------------------------------------------------------------------------------- /public/vaccinations_county_map_test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/vaccinations_county_map_test.svg -------------------------------------------------------------------------------- /public/vaccinations_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/vaccinations_map.json -------------------------------------------------------------------------------- /public/vaccinations_map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/public/vaccinations_map.svg -------------------------------------------------------------------------------- /rollup.config-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/rollup.config-ssr.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/rollup.config.js -------------------------------------------------------------------------------- /scripts/pym.v1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/scripts/pym.v1.min.js -------------------------------------------------------------------------------- /scripts/setupTypeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/scripts/setupTypeScript.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/components/layercake/Annotations.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Annotations.svelte -------------------------------------------------------------------------------- /src/components/layercake/Area.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Area.svelte -------------------------------------------------------------------------------- /src/components/layercake/AreaStacked.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/AreaStacked.svelte -------------------------------------------------------------------------------- /src/components/layercake/ArrowheadDef.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/ArrowheadDef.svelte -------------------------------------------------------------------------------- /src/components/layercake/Arrows.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Arrows.svelte -------------------------------------------------------------------------------- /src/components/layercake/AxisRadial.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/AxisRadial.svelte -------------------------------------------------------------------------------- /src/components/layercake/AxisX.html.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/AxisX.html.svelte -------------------------------------------------------------------------------- /src/components/layercake/AxisX.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/AxisX.svelte -------------------------------------------------------------------------------- /src/components/layercake/AxisY.html.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/AxisY.html.svelte -------------------------------------------------------------------------------- /src/components/layercake/AxisY.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/AxisY.svelte -------------------------------------------------------------------------------- /src/components/layercake/Bar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Bar.svelte -------------------------------------------------------------------------------- /src/components/layercake/BarStacked.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/BarStacked.svelte -------------------------------------------------------------------------------- /src/components/layercake/Beeswarm.html.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Beeswarm.html.svelte -------------------------------------------------------------------------------- /src/components/layercake/Beeswarm.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Beeswarm.svelte -------------------------------------------------------------------------------- /src/components/layercake/BeeswarmForce.html.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/BeeswarmForce.html.svelte -------------------------------------------------------------------------------- /src/components/layercake/BeeswarmForce.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/BeeswarmForce.svelte -------------------------------------------------------------------------------- /src/components/layercake/Brush.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Brush.svelte -------------------------------------------------------------------------------- /src/components/layercake/CalendarMonth.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/CalendarMonth.svelte -------------------------------------------------------------------------------- /src/components/layercake/CirclePack.html.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/CirclePack.html.svelte -------------------------------------------------------------------------------- /src/components/layercake/CirclePackForce.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/CirclePackForce.svelte -------------------------------------------------------------------------------- /src/components/layercake/ClevelandDotPlot.html.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/ClevelandDotPlot.html.svelte -------------------------------------------------------------------------------- /src/components/layercake/ClevelandDotPlot.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/ClevelandDotPlot.svelte -------------------------------------------------------------------------------- /src/components/layercake/Column.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Column.svelte -------------------------------------------------------------------------------- /src/components/layercake/ColumnLinear.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/ColumnLinear.svelte -------------------------------------------------------------------------------- /src/components/layercake/ColumnStacked.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/ColumnStacked.svelte -------------------------------------------------------------------------------- /src/components/layercake/ForceDirectedGraph.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/ForceDirectedGraph.svelte -------------------------------------------------------------------------------- /src/components/layercake/Key.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Key.svelte -------------------------------------------------------------------------------- /src/components/layercake/Labels.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Labels.svelte -------------------------------------------------------------------------------- /src/components/layercake/Line.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Line.svelte -------------------------------------------------------------------------------- /src/components/layercake/Map.canvas.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Map.canvas.svelte -------------------------------------------------------------------------------- /src/components/layercake/Map.svg.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Map.svg.svelte -------------------------------------------------------------------------------- /src/components/layercake/MultiLine.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/MultiLine.svelte -------------------------------------------------------------------------------- /src/components/layercake/QuadTree.percent-range.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/QuadTree.percent-range.svelte -------------------------------------------------------------------------------- /src/components/layercake/QuadTree.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/QuadTree.svelte -------------------------------------------------------------------------------- /src/components/layercake/Radar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Radar.svelte -------------------------------------------------------------------------------- /src/components/layercake/Sankey.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Sankey.svelte -------------------------------------------------------------------------------- /src/components/layercake/Scatter.canvas.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Scatter.canvas.svelte -------------------------------------------------------------------------------- /src/components/layercake/Scatter.html.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Scatter.html.svelte -------------------------------------------------------------------------------- /src/components/layercake/Scatter.svg.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Scatter.svg.svelte -------------------------------------------------------------------------------- /src/components/layercake/Scatter.webgl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Scatter.webgl.svelte -------------------------------------------------------------------------------- /src/components/layercake/SharedTooltip.percent-range.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/SharedTooltip.percent-range.svelte -------------------------------------------------------------------------------- /src/components/layercake/SharedTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/SharedTooltip.svelte -------------------------------------------------------------------------------- /src/components/layercake/SmallMultipleWrapper.percent-range.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/SmallMultipleWrapper.percent-range.svelte -------------------------------------------------------------------------------- /src/components/layercake/SmallMultipleWrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/SmallMultipleWrapper.svelte -------------------------------------------------------------------------------- /src/components/layercake/SyncedBrushWrapper.percent-range.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/SyncedBrushWrapper.percent-range.svelte -------------------------------------------------------------------------------- /src/components/layercake/SyncedBrushWrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/SyncedBrushWrapper.svelte -------------------------------------------------------------------------------- /src/components/layercake/Tooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Tooltip.svelte -------------------------------------------------------------------------------- /src/components/layercake/Voronoi.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/layercake/Voronoi.svelte -------------------------------------------------------------------------------- /src/components/smarts/HtmlRender.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/smarts/HtmlRender.svelte -------------------------------------------------------------------------------- /src/components/smarts/Map.albers.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/smarts/Map.albers.svelte -------------------------------------------------------------------------------- /src/components/smarts/MapKey.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/smarts/MapKey.svelte -------------------------------------------------------------------------------- /src/components/smarts/MapLabels.albers.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/smarts/MapLabels.albers.svelte -------------------------------------------------------------------------------- /src/components/smarts/SvgImage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/components/smarts/SvgImage.svelte -------------------------------------------------------------------------------- /src/data/as-of.json: -------------------------------------------------------------------------------- 1 | { "as_of": "2022-03-14" } 2 | -------------------------------------------------------------------------------- /src/data/counties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/counties.json -------------------------------------------------------------------------------- /src/data/innerlines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/innerlines.json -------------------------------------------------------------------------------- /src/data/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/names.json -------------------------------------------------------------------------------- /src/data/points.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/points.csv -------------------------------------------------------------------------------- /src/data/states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/states.json -------------------------------------------------------------------------------- /src/data/us_counties_albers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/us_counties_albers.json -------------------------------------------------------------------------------- /src/data/us_states_albers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/us_states_albers.json -------------------------------------------------------------------------------- /src/data/us_states_albers_innerlines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/us_states_albers_innerlines.json -------------------------------------------------------------------------------- /src/data/us_states_albers_labels_nyt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/us_states_albers_labels_nyt.json -------------------------------------------------------------------------------- /src/data/vaccinations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/vaccinations.csv -------------------------------------------------------------------------------- /src/data/vaccinations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/vaccinations.json -------------------------------------------------------------------------------- /src/data/vaccinations_county.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/vaccinations_county.csv -------------------------------------------------------------------------------- /src/data/vaccinations_county.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/vaccinations_county.json -------------------------------------------------------------------------------- /src/data/vaccinations_county_map.topojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/vaccinations_county_map.topojson.json -------------------------------------------------------------------------------- /src/data/vaccinations_map.topojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/vaccinations_map.topojson.json -------------------------------------------------------------------------------- /src/data/vaccinations_states_subset.topojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/data/vaccinations_states_subset.topojson.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/main.js -------------------------------------------------------------------------------- /src/template.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReallyGoodSmarts/datanews-rig-demo/HEAD/src/template.svelte --------------------------------------------------------------------------------