将纬度和经度转换为 x 的公式图像中的 Y
您好,
我有一个从 OpenstreetMap(Osmarender Image ) 获得的地图图像。我的问题是
如何将地理坐标转换为图片的坐标(即图片上 X 和 Y 上的像素)。也就是说我收到地理坐标,我有必要在我的图片上画出这个点。
QT中有没有可用的API来处理此类地图问题
HI
I have a Map Image that I got from OpenstreetMap(Osmarender Image ) .My question is
how to convert geographic coordinates to the co-ordinates of my picture (that is in pixels on X and Y on a picture). That is I receive geographic coordinates and it is necessary for me to draw this point on my picture.
Is there any API availabel in QT for processing this type of Map Problem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 Proj4 库。您需要将经纬度映射到 XY 坐标系(例如 UTM),然后将其映射到像素空间。不要以为Qt 有这样的东西。
Check out the Proj4 library. You need to map the lat-longs to an XY coordinate system (e.g. UTM) and then map this to pixel space. Don't think Qt has anything like this.
检查我的 mapsnap 示例的代码,特别是 MapModel::draw() 函数。如果您知道 OpenStreetMap 渲染图像的缩放级别和图块偏移量,则需要实现 滑动地图图块方法。
Check the code for my mapsnap example, in particular MapModel::draw() function. If you know the zoom level of the OpenStreetMap rendered image and the tile offset, it is a matter of implementing the slippy map tile approach.
我期待的答案可以在以下位置找到
将纬度/经度转换为 X/Y 坐标
谢谢
The Answer I was expecting can be found at
Convert Lat/Longs to X/Y Co-ordinates
Thanks