I am working on a vehicle routing program that needs to accurately get the driving distance between different locations for a vehicle using .Net. I could have used the Google API to get the distances, but the company isn't willing to commit at least USD$11000 per year for subscription fee subject to usage volume.

I tried using Haversine Formula to get the distances, but the correction factor for the route is overwhelmingly high for it to even get close to calculating the total travel time correctly. I have spent quite some time researching OpenStreetMaps but the documentation does not have any specific examples to suit my requirements. I do not need the actual "tiles" to display the maps, only text-response with the distance would suffice.

I was hoping there would be some free to use service I could invoke within OpenStreetMap or others similar, or maybe someone could point me in the right direction to get started.

Any help would be much appreciated.

link|improve this question

You might better ask that on their own Q&A site. – Bobby Dec 20 '10 at 8:21
feedback

3 Answers

up vote 2 down vote accepted

In case anyone is still interested, you can look up cloudmade for APIs to get travel distances for OpenStreetMap.

link|improve this answer
1  
I think you mean CloudMade and not Cloudmate. – winwaed Dec 27 '10 at 3:19
feedback

OpenStreetMap does not have their own routing algorithm.

On the OpenStreetMap wiki, there's a list of software libraries that perform routing. The Intermodal Transport Routing Information System is written in C#.

link|improve this answer
feedback

The CloudMade APIs should work fine for online work. For offline routing, you could use PGRouting. This is an extension to PostGres/PostGIS but can be loaded with an OSM file - or even a complete planet.osm file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.