-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
I tried it now for a graph spanning all of Austria:
- generate the topology with osm2po:
java -Xmx2g -jar osm2po-core-5.3.2-signed.jar cmd=c prefix=austria austria-latest.osm.pbf - load the resulting sql:
psql -U postgres -W -h localhost -d gis_test -f austria/austria_2po_4pgr.sql - create the view following the README:
CREATE VIEW pgrserver AS SELECT id,source,target,cost,geom_way AS geom FROM austria_2po_4pgr ;
That leads to:
- 1.7 Mio (bidirectional) edges
- ~ 2 GB RAM base graph
- ~ 40 seconds to load the graph from PG
That I'm actually quite happy with, good performance, bit too much RAM maybe.
When I try to query even short distances I get an empty response (tried Dijkstra, AStar, CH). If I actually try from on end of Austria to the other (Vienna -> Liechtenstein), CH is running for 10 minutes at > 7 GB RAM on 8 threads before I canceled.
However, small extracts (I tried Sydney real quick) with the same workflow works well!
Did you ever try a bigger graph?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels