gpt4 book ai didi

javascript - D3.js绘制定长圆

转载 作者:行者123 更新时间:2023-11-30 00:30:32 26 4
gpt4 key购买 nike

这看起来应该很简单,但我正在努力弄明白。

在D3.js中很容易在 map 投影上画一个圆,例如

p = projection([-73.94,40.7]);
svg
.append("svg:circle")
.attr("cx", function(d, i) { return p[0]; }) //x position translated through projection function
.attr("cy", function(d, i) { return p[1]; }) //y position
.attr("r", function(d, i) { return 20; })
;

好的,但是如果不是将半径设置为像素值(如上所示,设置为 20 像素),我想将其设置为一个距离值,该距离值将适本地缩放到投影?

简而言之,这归结为我要问,“这个投影中 20 公里的像素值是多少?”现在我知道这会因预测而有所不同——例如墨卡托中 20 公里的圆在赤道处(接近球形)与在两极附近(高度拉长)看起来非常不同。

D3.js 可以解决许多其他巧妙的投影问题,我很惊讶地发现我无法在这里轻易地想出某种可接受的答案。有什么建议么?我在想,好吧,你可以计算一个圆的多个纬度/经度点,然后将其绘制为某种路径……这对 D3.js 来说感觉异常笨重。有没有更简单的方法?

最佳答案

好的,所以我想出了一个办法。它有点笨拙——感觉应该更自动化——但它确实有效。它只涉及使用圆点手动构建路径元素。下面是两个函数和一个使用示例:

//example — draws a 15 km circle centered on New York City using my existing projection
var circle = svg
.append("path")
.attr("d", "M"+circlePath( 40.7, -73.94, 15, projection).join("L")+"Z")
.attr("fill","none")
.attr("stroke","red")
.attr("stroke-width",2);

//this function generates the points for the path. If a projection is specified, it will
//automatically convert them to it. If not, it returns lat/lon positions.
//from http://stackoverflow.com/questions/20130186/d3-geo-buffer-around-a-feature with modifications
function circlePath(lat, lon, radius, projection) {
var intervals = 72;
var intervalAngle = (360 / intervals);
var pointsData = [];
for(var i = 0; i < intervals; i++){
pointsData.push(getDestinationPoint(lat, lon, i * intervalAngle, radius));
}
if(projection) {
pointsData2 = [];
for(i in pointsData) {
pointsData2.push([projection([pointsData[i][1],pointsData[i][0]])[0],projection([pointsData[i][1],pointsData[i][0]])[1]]);
}
return pointsData2;
} else {
return pointsData;
}
}

//function to get destination points given an initial lat/lon, bearing, distance
//from http://www.movable-type.co.uk/scripts/latlong.html
function getDestinationPoint(lat,lon, brng, d) {
var R = 6371; //earth's radius in km — change to whatever unit you plan on using (e.g. miles = 3959)
var deg2rad = Math.PI/180; var rad2deg = 180/Math.PI;
brng*=deg2rad; lat*=deg2rad; lon*=deg2rad;
var lat2 = Math.asin( Math.sin(lat)*Math.cos(d/R) +
Math.cos(lat)*Math.sin(d/R)*Math.cos(brng) );
var lon2 = lon + Math.atan2(Math.sin(brng)*Math.sin(d/R)*Math.cos(lat),
Math.cos(d/R)-Math.sin(lat)*Math.sin(lat2));
return [lat2*rad2deg, lon2*rad2deg];
}

关于javascript - D3.js绘制定长圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29734397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com