我有以色列的地图。
我需要创建一个获取两个双参数(经度和纬度)的函数,该函数应该在地图图像中的该区域上绘制一个小圆圈。
我有关于地图的以下信息:
我需要根据该图像将我得到的坐标转换为像素X,Y。
有以下地图图片:
例如(不是一个准确的例子,它只是一个例子,所以你理解我的意思),左上角坐标是33.5,34,它的X,Y是0,地图上的0。
如何将这些坐标转换为X,Y坐标?
我尝试了this answer但它没有真正起作用,它显示的是我31.5, 34.5
而不是33, 34
。
更新:这是另一个问题的虚拟快速代码示例;
public class MapRenderer extends JFrame {
public static void main(String... args) throws IOException {
new MapRenderer();
}
public MapRenderer() throws IOException {
setSize(new Dimension(614, 1141));
add(new TestPane());
setVisible(true);
}
}
class TestPane extends JPanel {
private BufferedImage image;
public TestPane() throws IOException {
File file = new File("israel_map.jpg");
BufferedImage image = ImageIO.read(file);
this.image = image;
}
@Override
public void paintComponent(Graphics g) {
double lon = 34;
double lat = 33;
int mapW = 614;
int mapH = 1141;
double x = (lon + 180) * (mapW / 360);
double latRad = lat * Math.PI / 180;
double mercN = Math.log( Math.tan( (Math.PI / 4) + (latRad / 2)) );
double y = (mapH / 2) - (mapW * mercN / (2 * Math.PI));
System.out.println("[lon: " + lon + " lat: " + lat + "]: X: " + x + " Y: " + y);
g.drawImage(image, 0, 0, null);
g.setColor(Color.RED);
g.drawOval((int) x, (int) y, 5, 5);
}
}
输出:
[lon: 34.0 lat: 33.0]: X: 214.0 Y: 510.3190109117399
截图:
答案 0 :(得分:2)
除了像素之外,您还需要以经度/纬度添加地图的偏移量和长度。然后你就可以进行转换了。
static final int mapWidth = 614, mapHeight = 1141;
// offsets
static final double mapLongitudeStart = 33.5, mapLatitudeStart = 33.5;
// length of map in long/lat
static final double mapLongitude = 36.5-mapLongitudeStart,
// invert because it decreases as you go down
mapLatitude = mapLatitudeStart-29.5;
private static Point getPositionOnScreen(double longitude, double latitude){
// use offsets
longitude -= mapLongitudeStart;
// do inverse because the latitude increases as we go up but the y decreases as we go up.
// if we didn't do the inverse then all the y values would be negative.
latitude = mapLatitudeStart-latitude;
// set x & y using conversion
int x = (int) (mapWidth*(longitude/mapLongitude));
int y = (int) (mapHeight*(latitude/mapLatitude));
return new Point(x, y);
}
public static void main(String[] args) {
System.out.println(getPositionOnScreen(33.5, 33.5).toString());
System.out.println(getPositionOnScreen(35, 32).toString());
System.out.println(getPositionOnScreen(36.5, 29.5).toString());
}
这将打印出以下内容:
java.awt.Point[x=0,y=0]
java.awt.Point[x=307,y=427]
java.awt.Point[x=614,y=1141]
答案 1 :(得分:0)
您的代码未考虑您的地图不是整个世界地图。你需要调整它以使它有一个偏移(因为地图的左上角不是0,0可以这么说),所以它不认为地图的宽度是360'和身高180'。
对于初学者x = (longitude+180)*(mapWidth/360)
应该更像x = (longitude+<distance west of prime meridian of left side of map>)*(mapWidth/<width of map in degrees>)