D3.js is a small, open-source JavaScript visualization library for manipulating HTML and SVG documents based on data
3
votes
1answer
472 views
How do you open shapefiles with ogr2ogr
I'm following along the D3 tutorial, and on this line:
ogr2ogr \
-f GeoJSON \
-where "adm0_a3 IN ('GBR', 'IRL')" \
subunits.json \
ne_10m_admin_0_map_subunits.shp
run into the following ...
1
vote
0answers
91 views
D3, Polymaps and Lines
I'm quite new to d3 and Polymaps and I have a question to ask..
I am trying to connect two points using a line, using Polymaps and d3, my starting point is from this code that Mike provided ...
1
vote
0answers
231 views
translating and scaling viewport to fit geojson map in D3js
I am trying to load a map of Rio de Janeiro (Brazil) in GeoJson for with D3js
the code and the map is here:
https://gist.github.com/4157853
I can open the map normally with Qgis, but with d3js ...
0
votes
0answers
426 views
Plot poly-lines between few points in D3+Polymaps
I would like to create polyline on the click of the mouse. I have 4 circles 3 with radius 2 (Lets name it as B,C,D) and 1 with radius 8 (Lets name it as A). Now when I click on the circle A, poly line ...