├── .gitignore ├── 00_empty_page_template.html ├── 01_bar.html ├── 02_bar_css_fills.html ├── 03_bar_highlights_classed.html ├── 04_bar_highlights_filter.html ├── 05_bar_loading_bars.html ├── 06_bar_loading_axis.html ├── 07_bar_loading_highlights.html ├── 08_bar_loading_highlights_smooth.html ├── 09_bar_mouseover_css.html ├── 10_bar_mouseover_js.html ├── 11_bar_mouseover_js_filter.html ├── 12_bar_tooltips_title.html ├── 13_bar_tooltips_g0.html ├── 14_bar_tooltips_g1.html ├── 15_bar_tooltips_g2.html ├── 16_bar_tooltips_g3.html ├── 17_bar_tooltips_div.html ├── 18_bar_sort1.html ├── 19_bar_sort2.html ├── 20_bar_two_charts.html ├── 21_bar_linked.html ├── 22_bar_page.html ├── 23_bar_page_side_by_side.html ├── 24_pie.html ├── 25_ring.html ├── 26_stacked_bar.html ├── 27_stacked_bar_flipped.html ├── 28_area_single.html ├── 29_area_stacked.html ├── 30_force.html ├── 31_map_base.html ├── 32_map_choropleth.html ├── 33_map_points.html ├── 34_map_points_sized.html ├── 35_map_zoom_buttons.html ├── 36_map_zoom_event.html ├── 37_map_presets.html ├── 38_map_tooltip.html ├── LICENSE.md ├── README.md ├── d3.js └── data ├── cities ├── CITATION.md └── cities.csv ├── co2 ├── CITATION.md ├── co2_emissions.csv ├── g7_co2_emissions.csv └── usa_co2_emissions.csv └── geo ├── CITATION.md ├── mapshaper_output.json ├── mapshaper_output_50simplified.json ├── mapshaper_output_indented.json ├── ne_110m_admin_0_countries ├── ne_110m_admin_0_countries.README.html ├── ne_110m_admin_0_countries.VERSION.txt ├── ne_110m_admin_0_countries.dbf ├── ne_110m_admin_0_countries.prj ├── ne_110m_admin_0_countries.shp └── ne_110m_admin_0_countries.shx ├── ogr2ogr_output.json └── ogr2ogr_output_indented.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /00_empty_page_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/00_empty_page_template.html -------------------------------------------------------------------------------- /01_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/01_bar.html -------------------------------------------------------------------------------- /02_bar_css_fills.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/02_bar_css_fills.html -------------------------------------------------------------------------------- /03_bar_highlights_classed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/03_bar_highlights_classed.html -------------------------------------------------------------------------------- /04_bar_highlights_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/04_bar_highlights_filter.html -------------------------------------------------------------------------------- /05_bar_loading_bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/05_bar_loading_bars.html -------------------------------------------------------------------------------- /06_bar_loading_axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/06_bar_loading_axis.html -------------------------------------------------------------------------------- /07_bar_loading_highlights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/07_bar_loading_highlights.html -------------------------------------------------------------------------------- /08_bar_loading_highlights_smooth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/08_bar_loading_highlights_smooth.html -------------------------------------------------------------------------------- /09_bar_mouseover_css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/09_bar_mouseover_css.html -------------------------------------------------------------------------------- /10_bar_mouseover_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/10_bar_mouseover_js.html -------------------------------------------------------------------------------- /11_bar_mouseover_js_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/11_bar_mouseover_js_filter.html -------------------------------------------------------------------------------- /12_bar_tooltips_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/12_bar_tooltips_title.html -------------------------------------------------------------------------------- /13_bar_tooltips_g0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/13_bar_tooltips_g0.html -------------------------------------------------------------------------------- /14_bar_tooltips_g1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/14_bar_tooltips_g1.html -------------------------------------------------------------------------------- /15_bar_tooltips_g2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/15_bar_tooltips_g2.html -------------------------------------------------------------------------------- /16_bar_tooltips_g3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/16_bar_tooltips_g3.html -------------------------------------------------------------------------------- /17_bar_tooltips_div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/17_bar_tooltips_div.html -------------------------------------------------------------------------------- /18_bar_sort1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/18_bar_sort1.html -------------------------------------------------------------------------------- /19_bar_sort2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/19_bar_sort2.html -------------------------------------------------------------------------------- /20_bar_two_charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/20_bar_two_charts.html -------------------------------------------------------------------------------- /21_bar_linked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/21_bar_linked.html -------------------------------------------------------------------------------- /22_bar_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/22_bar_page.html -------------------------------------------------------------------------------- /23_bar_page_side_by_side.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/23_bar_page_side_by_side.html -------------------------------------------------------------------------------- /24_pie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/24_pie.html -------------------------------------------------------------------------------- /25_ring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/25_ring.html -------------------------------------------------------------------------------- /26_stacked_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/26_stacked_bar.html -------------------------------------------------------------------------------- /27_stacked_bar_flipped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/27_stacked_bar_flipped.html -------------------------------------------------------------------------------- /28_area_single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/28_area_single.html -------------------------------------------------------------------------------- /29_area_stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/29_area_stacked.html -------------------------------------------------------------------------------- /30_force.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/30_force.html -------------------------------------------------------------------------------- /31_map_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/31_map_base.html -------------------------------------------------------------------------------- /32_map_choropleth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/32_map_choropleth.html -------------------------------------------------------------------------------- /33_map_points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/33_map_points.html -------------------------------------------------------------------------------- /34_map_points_sized.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/34_map_points_sized.html -------------------------------------------------------------------------------- /35_map_zoom_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/35_map_zoom_buttons.html -------------------------------------------------------------------------------- /36_map_zoom_event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/36_map_zoom_event.html -------------------------------------------------------------------------------- /37_map_presets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/37_map_presets.html -------------------------------------------------------------------------------- /38_map_tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/38_map_tooltip.html -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/README.md -------------------------------------------------------------------------------- /d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/d3.js -------------------------------------------------------------------------------- /data/cities/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/cities/CITATION.md -------------------------------------------------------------------------------- /data/cities/cities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/cities/cities.csv -------------------------------------------------------------------------------- /data/co2/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/co2/CITATION.md -------------------------------------------------------------------------------- /data/co2/co2_emissions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/co2/co2_emissions.csv -------------------------------------------------------------------------------- /data/co2/g7_co2_emissions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/co2/g7_co2_emissions.csv -------------------------------------------------------------------------------- /data/co2/usa_co2_emissions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/co2/usa_co2_emissions.csv -------------------------------------------------------------------------------- /data/geo/CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/CITATION.md -------------------------------------------------------------------------------- /data/geo/mapshaper_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/mapshaper_output.json -------------------------------------------------------------------------------- /data/geo/mapshaper_output_50simplified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/mapshaper_output_50simplified.json -------------------------------------------------------------------------------- /data/geo/mapshaper_output_indented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/mapshaper_output_indented.json -------------------------------------------------------------------------------- /data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.README.html -------------------------------------------------------------------------------- /data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.0.0 -------------------------------------------------------------------------------- /data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.dbf -------------------------------------------------------------------------------- /data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.prj -------------------------------------------------------------------------------- /data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.shp -------------------------------------------------------------------------------- /data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/ne_110m_admin_0_countries/ne_110m_admin_0_countries.shx -------------------------------------------------------------------------------- /data/geo/ogr2ogr_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/ogr2ogr_output.json -------------------------------------------------------------------------------- /data/geo/ogr2ogr_output_indented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotthmurray/intermediate-d3/HEAD/data/geo/ogr2ogr_output_indented.json --------------------------------------------------------------------------------