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
Currently OpenStreetMap.jl parses OSM datafiles using LightXML.jl, which loads the entire file into memory. Because we only access each element once and then close the file, it would be much more efficient to use a streaming XML parser instead, especially when reading from large datafiles.
I'm not sure why, but loading a 150 MB .osm file takes up a couple GB of RAM, so anything much larger than a city isn't really feasible right now.
The text was updated successfully, but these errors were encountered:
Currently OpenStreetMap.jl parses OSM datafiles using LightXML.jl, which loads the entire file into memory. Because we only access each element once and then close the file, it would be much more efficient to use a streaming XML parser instead, especially when reading from large datafiles.
I'm not sure why, but loading a 150 MB .osm file takes up a couple GB of RAM, so anything much larger than a city isn't really feasible right now.
The text was updated successfully, but these errors were encountered: