Main Menu

Data

World

var url = "world110.json"; d3.json(url, function(err, data){ console.log(url, "error", err); console.log(url, "data", data) })

We can load world landmass boundaries as TopoJSON data from a file.

Downlaod


Example In Tributary

Counties

var url = "californiaCounties.json"; d3.json(url, function(err, data){ console.log(url, "error", err); console.log(url, "data", data) })

California county boundaries simplified in TopoJSON.

Download.


Example in Tributary

Airports

var url = "airports.json"; d3.json(url, function(err, data){ console.log(url, "error", err); console.log(url, "data", data) })

We can load geometry that has data associated with it.

Download (from earthquake hackathon).

Example in Leaflet

Debris (by county)

var url = "debris.json"; d3.json(url, function(err, data){ console.log(url, "error", err); console.log(url, "data", data) })

We can load polygon geometry that has data associated with it.

Download (from earthquake hackathon).

Example in Leaflet

Top