在D3.js / GeoJSON / TopoJSON / Shapefile中平滑弧/绘图点(沿途某处)

时间:2015-04-01 13:43:35

标签: javascript d3.js gis geojson topojson

我一直在寻找答案,我无法弄明白。

  • 我最终是从基于网格的数据(GRIB文件)创建TopoJSON文件。
  • 我可以很容易地将数据内插到更精细的分辨率网格,因此当缩小时,绘图点显示更平滑,但是当放大时,不可避免地会看到块状网格点。
  • 我也考虑过简化,它确实有点有点但它不太平滑。
  • 我正在使用D3来渲染数据。
  • 这可以在前端完成,还是应该/可以在原始TopoJSON数据中完成?
  • 我基本上不希望你能够告诉它是一个网格,即使你放大了10,000%。
  • 这是我所追求的一个例子:

enter image description here

3 个答案:

答案 0 :(得分:1)

如果你正在使用D3.js,并且你正在使用直线,那么内置的interpolate()函数就是你的选择。

这是D3的line.interpolate()的一个工作示例,使用" cardinal"平滑:

http://codepen.io/gracefulcode/pen/doPmOK

example of D3's line.interpolate()

以下是代码:

var margin = {
    top: 30,
    right: 20,
    bottom: 30,
    left: 50
  },
  width = 600 - margin.left - margin.right,
  height = 270 - margin.top - margin.bottom;
// Parse the date / time
var parseDate = d3.time.format("%d-%b-%y").parse;
// Set the ranges
var x = d3.time.scale().range([0, width]);
var y = d3.scale.linear().range([height, 0]);
// Define the axes
var xAxis = d3.svg.axis().scale(x).orient("bottom").ticks(5);
var yAxis = d3.svg.axis().scale(y).orient("left").ticks(5);

// Define the line
var valueline = d3.svg.line()
  .interpolate("cardinal")
  .x(function(d) {
    return x(d.date);
  })
  .y(function(d) {
    return y(d.close);
  });

// Adds the svg canvas
var svg = d3.select("body").append("svg")
  .attr("width", width + margin.left + margin.right)
  .attr("height", height + margin.top + margin.bottom)
  .append("g")
  .attr("transform",
    "translate(" + margin.left + "," + margin.top + ")");

// Get the data
d3.json('https://api.myjson.com/bins/175jl', function(error, data) {
  data.forEach(function(d) {
    d.date = parseDate(d.date);
    d.close = +d.close;
  });
  // Scale the range of the data
  // Starting with a basic graph 14
  x.domain(d3.extent(data, function(d) {
    return d.date;
  }));
  y.domain([0, d3.max(data, function(d) {
    return d.close;
  })]);
  // Add the valueline path.
  svg.append("path")
    .attr("class", "line")
    .attr("d", valueline(data));
  // Add the X Axis
  svg.append("g")
    .attr("class", "x axis")
    .attr("transform", "translate(0," + height + ")")
    .call(xAxis);
  // Add the Y Axis
  svg.append("g")
    .attr("class", "y axis")
    .call(yAxis);
});

答案 1 :(得分:1)

  

这可以在前端完成,还是应该/可以在原始TopoJSON数据中完成?

这是应该在前端完成的事情。如果您在将数据写入JSON文件之前对数据进行平滑处理,则该文件将不必要地大。

答案 2 :(得分:0)