gpt4 book ai didi

javascript - 纬度/经度 -> X/Y, X/Y -> 纬度/经度

转载 作者:行者123 更新时间:2023-12-03 07:26:07 40 4
gpt4 key购买 nike

我找到了一些代码,用于将纬度/经度转换为给定图像上的像素,反之亦然。我将其移植到 JavaScript,但在纬度上得到了不正确的返回值。我测试了原始的、未修改的代码,它给出了同样的不准确之处。下面是带有返回值的代码。

function degrees_pixels(latitude, longitude, width, height) {
return {
x: ( longitude + 180 ) * ( width / 360 ),
y: ( height / 2 ) - ( width * Math.log(Math.tan(( Math.PI / 4 ) + ( ( latitude * Math.PI / 180 ) / 2 )) ) / ( 2 * Math.PI ) )
};
};

function pixels_degrees(pixel_x, pixel_y, width, height) {
return {
latitude: ( Math.exp( -( pixel_y - ( height / 2 ) ) / width * ( 2 * Math.PI )) - Math.tan(( Math.PI / 4 )) * 2 ) / ( Math.PI / 180 ),
longitude: ( pixel_x - ( width / 2 ) ) / ( width / 360 )
};
};

var tmp1 = degrees_pixels(40.7127, -74.0059, 256, 256);
console.log(tmp1); // Prints {"x":75.3735822222222,"y":96.2511781695169} which is correct
console.log(pixels_degrees(tmp1.x, tmp1.y, 256, 256)); // Prints {"latitude":10.3018054035438,"longitude":-74.0059} of which the latitude is incorrect

我尝试自己解决这个问题,但我在数学方面遇到了困难。我不太确定为什么它偏离了原来的样子。

最佳答案

您已经尝试过this吗? ?

所以你的代码看起来像这样

function degrees_pixels(latitude, longitude, width, height) {
return {
x: Math.round((longitude + 180) * (width / 360));,
y: Math.round(((-1 * latitude) + 90) * (height / 180))
};
};
function pixels_degrees(pixel_x, pixel_y, width, height) {
return {
latitude: (pixel_y/(height/180)-90)/-1,
longitude: pixel_x/(width/360)-180
};
};

或者,如果您不想要整个世界地图 this

并确保您的坐标是按照 EPSG:3857 标准给出的。

关于javascript - 纬度/经度 -> X/Y, X/Y -> 纬度/经度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36001250/

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