Questions tagged «mercator»

6
在墨卡托投影上将纬度/经度点转换为像素(x,y)
我正在尝试将经纬度点转换为2d点,以便可以在世界图像上显示它,这是墨卡托投影。 我已经看到了执行此操作的各种方法以及有关堆栈溢出的一些问题-我已经尝试了不同的代码段,尽管我获得了正确的像素经度,但是纬度始终似乎似乎变得越来越合理。 我需要公式来考虑图像的大小,宽度等。 我已经试过这段代码: double minLat = -85.05112878; double minLong = -180; double maxLat = 85.05112878; double maxLong = 180; // Map image size (in points) double mapHeight = 768.0; double mapWidth = 991.0; // Determine the map scale (points per degree) double xScale = mapWidth/ (maxLong - minLong); double …
69 java  math  maps  2d  mercator 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.