用于生成 TomTom GPS poi 数据的 Java 库
我想知道是否存在任何Java库,可以为Tomtom导航设备生成poi数据(通常该文件具有.ov2扩展名)。
我使用 Tomtom 的 Tomtom makeov2.exe util,但它不稳定,似乎不再受支持。
I wonder, if there exists any Java library, which could generate poi-data for Tomtom navigation devices (usually the file has .ov2 extension).
I use Tomtom makeov2.exe util from Tomtom, but it is not stable and it seems that not longer supported.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我无法找到一个可以进行写入的库,尽管我确实找到了这个类来读取
.ov2
文件:我还找到了这个 PHP 代码来写入文件:
我不知道你是如何做到的可以像 PHP 函数一样编写一个 Java 类(或扩展上面的类)来编写文件,但您也许能够深入了解文件是如何编码的。
I wasn't able to find a library that does writing, although I did find this class to read
.ov2
files:I also found this PHP code to write the file:
I'm not sure how you'd go about writing a Java class (or extending the one above) to write the file like the PHP function does, but you may be able to get some insight into how the file is encoded from it.