TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Do you use OpenStreetMaps (OSM) Routing systems on production?

6 pointsby __beeabout 7 years ago
Hi,<p>We are trying to replace [Google Maps]( https:&#x2F;&#x2F;developers.google.com&#x2F;maps&#x2F;premium&#x2F;) to use other alternatives like Mapbox, HERE in the future. However, we found that there are some Open Source Project like OSRM [1], Valhalla [2]. I would like to know what is your experiences with OpenStreetMaps as a backend for routing systems. If it is the case, would you please share your opinion and experience.<p>[1]: https:&#x2F;&#x2F;github.com&#x2F;Project-OSRM&#x2F;osrm-backend<p>[2]: https:&#x2F;&#x2F;github.com&#x2F;valhalla

2 comments

senthilnayagamabout 7 years ago
I am developing on OSRM.<p>OSRM is done by Mapbox guys, Valhalla team has joined Mapbox.<p>PGrouting is very slow. OSRM expects data in OSM&#x2F;PBF format for parsing. there are no Postgis plugins to export to OSM&#x2F;PBF. QGIS is a friend. OSRM is fast but needs 2 times the size of index as memory, for one server we are using 36gb RAM. Openstreetmap has many abandoned projects, does not have many features available in commercial projects. openstreetmap needs a fork to make it competitive for current generation of GIS apps.
Z_M_about 7 years ago
How about the pgRouting(<a href="http:&#x2F;&#x2F;pgrouting.org&#x2F;index.html" rel="nofollow">http:&#x2F;&#x2F;pgrouting.org&#x2F;index.html</a>) project? It&#x27;s based on postGIS and its database based routing approach.