我正在尝试用d3中的旋转地球做一个chorolpleth。我可以让地球渲染得很好,但我不能让各国填写适当的色标。
更长的解释。我基本上从迈克博斯托克的旋转地球代码开始:
http://bl.ocks.org/mbostock/6747043
我从大约85个国家获得了一些经济数据,这些数据来自外部csv。而且我正在尝试将颜色映射到csv中每个值的国家/地区。这里还有另一个Bostock的等值线示例(静态和美国,在SO d3问题中频繁引用):
http://bl.ocks.org/mbostock/4060606
我最终得到的是全球范围内的纯白(#fff)国家。这不是我想要的。
我将ISO 3166-1数字代码添加到我的csv中,以便我可以将它们匹配到topojson数据中的相同ID。所以我的csv看起来像:
country id curracct
Germany 276 260.9
Sweden 752 7.24
Etc.
我的第一个想法是创建一个函数变量,它从topojson数据中经过'countries'的长度,找到id等于来自csv国家的id的国家,然后分配缩放他们的颜色。然后我将'context.fillStyle'设置为等于该变量/函数。那没用。
然后我将'context.fillStyle'直接放在一个函数中(这是下面当前编写的代码)。那也行不通。
同样,我试图让拥有csv数据的85个左右国家根据我设置的规模在前侧旋转地球上显示颜色编码。
我的猜测是,我不了解变量'context'及其处理的内容。如果这是.style(“填充”,[我的功能在这里映射颜色])语法我会没事的。那么,有人有任何想法吗?
我不是编码员。实际上我想我正在尝试编写一些代码。也许我应该说我是一个自学成才且最可怕的程序员。虽然通过示例,JS控制台以及有关SO的其他问题,我通常可以找出错误的位置。这次我到了一堵墙。任何帮助表示赞赏。感谢。
var width = 560,
height = 560,
speed = -1e-2,
start = Date.now();
var sphere = {type: "Sphere"};
var color = d3.scale.quantize()
.range(["#ffffd9", "#edf8b1","#c7e9b4","#7fcdbb","#41b6c4","#1d91c0","#225ea8","#253494","#081d58"]);
var projection = d3.geo.orthographic()
.scale(width / 2.1)
.clipAngle(90)
.translate([width / 2, height / 2]);
var graticule = d3.geo.graticule();
var canvas = d3.select("body")
.append("canvas")
.attr("width", width)
.attr("height", height);
var context = canvas.node().getContext("2d");
var path = d3.geo.path()
.projection(projection)
.context(context);
queue()
.defer(d3.json, "/d3/world-110m.json")
.defer(d3.csv, "trade.csv")
.await(globeTrade);
function globeTrade(error, topo, data) {
var land = topojson.feature(topo, topo.objects.land),
countries = topojson.feature(topo, topo.objects.countries),
borders = topojson.mesh(topo, topo.objects.countries, function(a, b) { return a !== b; }),
grid = graticule();
color.domain([0, d3.max(data, function(d){return d.curracct})]);
d3.timer(function() {
var λ = speed * (Date.now() - start),
φ = -15;
context.clearRect(0, 10, width, height);
context.beginPath();
path(sphere);
context.lineWidth = 2.5;
context.strokeStyle = "#000";
context.stroke();
context.fillStyle = "#fff";
context.fill();
context.save();
context.translate(width / 2, 0);
context.scale(-1, 1);
context.translate(-width / 2, 0);
projection.rotate([λ + 180, -φ]);
context.beginPath();
path(land);
context.fillStyle = "#ddd" //changed to a nuetral gray
context.fill();
context.beginPath();
path(grid);
context.lineWidth = .5;
context.strokeStyle = "rgba(119,119,119,.5)";
context.stroke();
context.beginPath();
path(borders);
context.lineWidth = .25;
context.strokeStyle="#fff";
context.stroke();
context.restore();
projection.rotate([λ, φ]);
context.beginPath();
path(grid);
context.lineWidth = .5;
context.strokeStyle = "rgba(119,119,119,.5)";
context.stroke();
// This is where I am failing
context.beginPath();
path(countries);
function render (d){
for (var j = 0; j < countries.features.length; j++) {
if (d.id == countries.features[j].id) {
context.fillStyle = color(d.curracct)
}
else {
context.fillStyle = "#737368"; //left Bostock's color for now
}
}
}
context.fill();
context.lineWidth = .1;
context.strokeStyle = "#000";
context.stroke();
});
data.forEach(function(d, i) {
d.curracct = +d.curracct;
d.id = +d.id;
});
d3.select(self.frameElement).style("height", height + "px");
</script>
</body>