You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OSM imports are currently a bit slow through the API, so speeding them up would be desirable.
There are two ways of doing this:
Introducing the read from OSM files as an alternative to going through the API (the osmium package)
Using a different OSM importer into a known format (OSM2GMNS)
Do nothing and just change how we deal with triggers
The first option has not been explored yet, but the second alternative is very simple:
import osm2gmns as og
net = og.getNetFromFile("D:\south-africa-latest.osm.pbf")
og.outputNetToCSV(net, output_folder="D:/wb")
The result (links and nodes) can be imported directly into the project file.
Dealing with triggers means checking whether we can remove all triggers from the network before inserting links and nodes and then adding the triggers again.
The text was updated successfully, but these errors were encountered:
OSM imports are currently a bit slow through the API, so speeding them up would be desirable.
There are two ways of doing this:
The first option has not been explored yet, but the second alternative is very simple:
The result (links and nodes) can be imported directly into the project file.
Dealing with triggers means checking whether we can remove all triggers from the network before inserting links and nodes and then adding the triggers again.
The text was updated successfully, but these errors were encountered: