4

我正在尝试在 d3 中制作一个带有旋转地球的 chorollpleth。我可以让地球仪渲染得很好,但我无法让国家/地区填充适当的色阶。

更长的解释。我基本上是从 Mike Bostock 的旋转地球代码开始的:

http://bl.ocks.org/mbostock/6747043

我从外部 csv 读取了大约 85 个国家/地区的一些经济数据。我正在尝试根据 csv 中的值将颜色映射到国家/地区。这里还有另一个 Bostock 的 choropleth 示例(静态的,只是美国,在 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 数据中遍历“国家”的长度,并找到 id 等于 csv 国家/地区的 id 的国家,然后将缩放颜色分配给它们. 然后我将'context.fillStyle'设置为等于该变量/函数。那没有用。

然后我只是将'context.fillStyle'直接放在一个函数内(这是目前写在下面的代码)。那也没有用。

同样,我试图根据我设置的比例让 csv 中有数据的 85 个左右的国家在旋转地球仪的正面显示颜色编码。

我的猜测是,对于变量“上下文”及其处理的内容,我有些不理解。如果这是 .style("fill", [put my function here to map the colors]) 语法,我会没事的。那么,有人有什么想法吗?

我不是编码员。实际上,我想我正在尝试编写一些代码。也许我应该说我是一个自学成才的程序员,而且大多是糟糕的程序员。虽然通过示例、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>

4

0 回答 0