Ways to project topojson?
Given a shapefile : Natural_earth/ ne_10m_admin_0_sovereignty.zip Given we want to reproject it for a D3js data viz, we could reproject at different levels. 1. Get a reprojected shapefile ( 1 ), using ogr2ogr : ogr2ogr -f 'ESRI Shapefile' -t_srs 'EPSG:...' output.shp input.shp OR 2. get a reprojected topojson ( 2 ), using (npm) topojson.js : topojson \ -o output.topo.json --projection 'd3.geo.albersUsa()' \ -q 1e5 \ -s 1 \ -- input.shp OR 3. get a reprojected D3js data / SVG ( 1 ), D3js code including: var path = d3.geo.path() .projection(d3.geo.albersUsa()) // unsure of this syntaxe,