I've been attempting to run Mike Bostock's See-Through Globe demonstration, but I encountered issues with the correct referencing of his json files when attempting to replicate it locally.
The problem stems from this particular line of code:
d3.json("/mbostock/raw/4090846/world-110m.json", function(error, topo) {
var land = topojson.feature(topo, topo.objects.land),
grid = graticule();
});
I have looked into this example: d3: us states in topojson format filesize is way too large
and attempted altering the URLs to various versions in order to correctly reference those files for an external user;
"https://raw.github.com/mbostock/topojson/master/examples/world-110m.json"
"https://render.github.com/mbostock/topojson/master/examples/world-110m.json"
"http://bl.ocks.org/mbostock/raw/4090846/world-110m.json"
However, access is consistently denied. Any suggestions on how to accurately specify the json file?
I have also tested some of his other examples, facing the same issue each time. Has anyone managed to successfully replicate the examples?