0

我有一个独特的问题:投影和从图像中获取纬度/经度坐标。

我有一张 800 x 600 像素的美国图像,并且我知道图像的投影(原点中心为 -75 lon 的极地立体投影)、左下纬度/经度和右上纬度/经度。我已将图像放入网页中,并且可以将鼠标悬停在图像上并从 div 标签中的图像中获取 x 和 y“像素”坐标。是否有一个简单的公式可以帮助获得 x/y 像素坐标的纬度和经度?

我想要一个简化的流程,因为我有多个地图投影和图像大小。

4

1 回答 1

0

这是如何执行此操作的注释 js 代码:

//these define lat/lon at the bounds of the image
var geo_left=-75;
var geo_right=75;
var geo_top=-75;
var geo_bottom=75;

//dimensions of the canvas
//i set it to 400x400 for example purposes
var canvas_width=400;
var canvas_height=400;

//get relative coordinate of pixel, should be on a scale of 0 to 1
var rel_x = pixel_x/canvas_width;
var rel_y = pixel_y/canvas_height;

//linear interpolate to find latitude and longitude
var latitude = geo_left+(geo_right-geo_left)*rel_x;
var longitude = geo_top+(geo_bottom-geo_top)*rel_y;
于 2013-03-08T05:53:22.437 回答