我正在使用D3 Library的版本4 ,到目前为止,无法在Symbol Map上的点之间绘制连接线。在该示例中,从库的早期版本开始,使用以下代码绘制连接线:
// calculate the Great Arc between each pair of points
var arc = d3.geo.greatArc()
.source(function(d) { return locationByAirport[d.source]; })
.target(function(d) { return locationByAirport[d.target]; });
[snip]
// Draw the Great Arcs on the Chart.
g.selectAll("path.arc")
.data(function(d) { return linksByOrigin[d.iata] || []; })
.enter().append("svg:path")
.attr("class", "arc")
.attr("d", function(d) { return path(arc(d)); });
评论是我的(可能是错误的),代码来自上面的符号图示例。
在版本4中,d3.geo.greatArc()
appears to have been deprecated赞成d3.geoDistance()
。我不能肯定地说这个,但我在版本4中找不到greatArc
的引用。不幸的是,我不知道如何设置对geoDistance()
的调用来获取{{1}的相同信息用来返回。 documentation provided for geoDistance()
不足以让我理解如何使用它。
所以,我的问题是:如何使用库的第4版在D3符号图表上的点(纬度/长对)之间绘制线条?
答案 0 :(得分:6)
Spherical Shapes上的文档包含:
要生成great arc(大圆的一部分),只需将GeoJSON LineString几何对象传递给d3.geoPath即可。 D3的投影对中间点使用大弧插值,因此不需要很好的弧形发生器。
这意味着您可以通过创建包含其coordinates
属性中起点和终点坐标的GeoJSON LineString
对象来渲染大弧:
{type: "LineString", coordinates: [[lonStart, latStart], [lonEnd, latEnd]]}
由于这是一个标准的GeoJSON对象,因此路径生成器(d3.geoPath)将能够消化它,并且 - 使用基础投影 - 进行大弧度插值以创建投影的大弧。
对于工作演示,请查看Mike Bostock使用D3 v4构建的Block,这与您的示例类似。请注意,Block使用MultiLineString
个对象来计算往返任何特定机场的多个航班,这些航班可以与简单LineString
对象相同的方式提供给路径生成器。该示例创建了如下的大弧:
在阅读机场信息时,为每个机场创建空MultiLineString
个对象:
d3.queue()
.defer(d3.csv, "airports.csv", typeAirport)
// ...
function typeAirport(d) {
d[0] = +d.longitude;
d[1] = +d.latitude;
d.arcs = {type: "MultiLineString", coordinates: []};
return d;
}
迭代航班并将源和目标机场的坐标推送到coordinates
对象的MultiLineString
属性。
flights.forEach(function(flight) {
var source = airportByIata.get(flight.origin),
target = airportByIata.get(flight.destination);
source.arcs.coordinates.push([source, target]);
target.arcs.coordinates.push([target, source]);
});
创建合适的地理路径生成器。
var path = d3.geoPath()
.projection(projection)
.pointRadius(2.5);
绑定数据,使路径生成器可以实际绘制大弧。
var airport = svg.selectAll(".airport")
.data(airports)
.enter().append("g")
.attr("class", "airport");
// ...
airport.append("path")
.attr("class", "airport-arc")
.attr("d", function(d) { return path(d.arcs); }); // great arc's path