需要我可以交谈的驾驶距离库/应用程序
我们需要计算 SQL Server 数据库中记录的驾驶距离,因此我需要找到某种库或程序,让我无需连接到互联网即可完成此操作(如果它有自己的数据库,那就太好了,如果没有,我知道从哪里获取数据)。我现在不太担心计算类型,我们可能会使用 Djikstra 的,但我们只需要离线的东西。此外,我将与多个国家打交道,但主要是美国。
到目前为止,我还没有找到任何可以可靠工作的东西,最接近的是 MapPoint(根据 Marc Gravell),所以我想问一下有哪些离线解决方案可以插入、调用或在我的代码旁边工作(Delphi 和.NET)来计算行驶距离?谢谢。
We need to calculate driving distances for records in a SQL Server database, so I need to find some sort of library or program that will let me do so without connecting to the internet(if it has it's own database, great, if not, I know where to get data). I'm not too worried about calculation types right now, we're probably going to go with Djikstra's, but we just need something offline. Also, I will be dealing with multiple countries, though mostly USA.
So far, I haven't found anything that would work reliably, closest is MapPoint (per Marc Gravell), so I want to ask what offline solutions are available either to plug into, call from, or work next to my code (Delphi and .NET) to calculate driving distances? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
选项:
Options:
请检查 RW Net 的 http://www.routeware.dk。使用Delphi开发,可以使用TIGER进行离线计算。对于大规模矩阵计算非常快。
顺便说一句:解决此类问题的更好论坛是 https://gis.stackexchange.com/
Please check http://www.routeware.dk for RW Net. Developed with Delphi and can use TIGER for off-line calculations. Very fast for large scale matrix calculations.
btw: A better forum for such questions is https://gis.stackexchange.com/
好吧,睡了这个问题之后,我通过使用google搜索“车辆路由软件”找到了解决方案。到目前为止,我已经找到了三个看起来可行的选项,并将对其进行研究。这些是 ALK Technologies 的 PCMiler、Telogis 的开发人员工具和 DNA Evolutions 的 JOpt.NET。还有很多公司可以根据该搜索短语查看开发人员工具。我认为我的主要问题是我昨天使用“行驶距离”和“路线距离”作为搜索词。
编辑:对于我正在寻找的,Telogis 似乎拥有最完整的功能集。
Ok, after sleeping on the problem, I found a solution by using google to search on "vehicle routing software." So far I have found three options that look like they might work, and will be investigating them. Those are ALK Technologies' PCMiler, Telogis' Developer tools, and DNA Evolutions' JOpt.NET. Still plenty more companies to check out for developer tools on that search phrase. I think my main problem was I was using "Driving Distance" and "Route distance" as my search terms yesterday.
Edit: for what I'm looking for, Telogis seems to have the most complete function set.