在JAVA中将EPSG:32632坐标转换为米
我正在尝试找到将 epsg:32632 坐标转换为米的解决方案。 epsg:32632 坐标如下:13.39453125、58.34765625。
有谁知道我怎样才能在java中做到这一点?
谢谢,
阿瑞斯
I'm trying to find a solution to convert my epsg:32632 coordinates into meters.
epsg:32632 coordinates look like: 13.39453125, 58.34765625.
Does anyone know how can i do this in java?
Thanks,
Ares
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要查看其中一个地理工具包。 GeoTools (geotools.org) 可能可以做到这一点。您需要做的是在上面的 SRID 中创建一个线几何图形,然后将其转换为另一个或多或少与您的球体等匹配但单位为米的 SRID。
You're going to need to look at one of the geo toolkits out there. GeoTools (geotools.org) may have something to do this. What you're going to need to do is create a line geometry in the SRID you have above, then convert it to another SRID that more or less matches your spheroid etc but has a unit of meters.