Genuine candid question : why use this when we have more established solutions like Graphhopper[0], the OSRM Project[1] or Open Trip Planner[2] among others ?
Another option to consider: Valhalla, the only open-source routing engine that can plan multimodal journeys (car, transit, walk, cycle) around the world. It can, for example, plan a journey on foot, rail, and bus that crosses multiple metro regions.
Thanks for the question! I'll admit I have limited knowledge about those services, but I believe they solve a slightly different problem. Pathfinder's primary use is services that have N drivers that can service any of M transportation requests.
The GraphHopper and OSRM Matrix APIs are closer to what Pathfinder does, however they do not assign route segments to vehicles. Pathfinder is perhaps one abstraction layer over them.
What are you using for calculating the time or distances between the services? (Edit: okay, saw another comment stating you are using Google Matrix API)
Basically you need a distance matrix for your vehicle routing problem.
I understand your concern. At this point, we have no plans to charge for Pathfinder. Furthermore, if you're concerned about future viability of the API, all of our code is MIT-licensed at https://github.com/csse497 so it can be self hosted.
What is your plan for long term profitability if you have no plans to charge for this? I am nervous building tech around a free service that may either transition to a deal-breaking price (google app engine) or may disappear entirely due to the business going under.
I haven't dug around the code much but I assume this is using "As the Crow Flies" distances between points? I don't see any references to OSM or street network data.
We tried out "as the crow flies", OSM with the OSRM Distance Matrix API, and the Google Maps Distance Matrix API. We're currently using Google API although we may switch back to OSRM for scaling purposes.
At the moment, we only support Google SignIn for creating accounts. We will certainly support more options in the future, but up until now we've been spending most of our time building our routing and api servers.
[0] https://graphhopper.com/
[1] http://project-osrm.org/
[2] http://wiki.openstreetmap.org/wiki/OpenTripPlanner