pgRouting / osm2pgrouting

Import tool for OpenStreetMap data to pgRouting database
https://pgrouting.org
GNU General Public License v2.0
289 stars 111 forks source link

Use swap space for large data queries (current tool crashes when size of data is larger than RAM). #58

Open cvvergara opened 9 years ago

cvvergara commented 9 years ago

Origin of issue osm files can be big, users might have world, continent, country, states, county/municipalities, or might just have a small bbox download of osm data. difficulty: Unknown but probably high Urgency: yes, urgent, this version should work with any size of osm file.

woodbri commented 9 years ago

You might look at using std::stxxl which implements extra large standard containers the automatically overflow to disk as needed but without the need to explicitly handle this at the C++ access level.