Przemysław Szufel

Results 62 comments of Przemysław Szufel

One possible way to go would be to use `osmfilter` and have a reduced dataset (several pieces of information can be dropped without affecting the actual map content). Still the...

There are two versions of map parsers - routing oriented and raw Routing oriented (does additional processing) ``` julia> sample_file = joinpath(dirname(pathof(OpenStreetMapX)),"..","test","data","reno_east3.osm"); julia> @btime get_map_data($sample_file;use_cache=false); 93.730 ms (667494 allocations: 51.23...

One more test: ``` julia> dat = String(read(sample_file)); julia> @btime xp_parse($dat); 53.914 ms (739840 allocations: 66.95 MiB) ``` Hence currently the XML parser is the major source of problems. At...

Hi, thanks for *.pbf support! I have also updated the tests since they were relying on RNG and this has changed in Julia 1.6. Now all tests pass locally on...

I managed to reconfigure Travis and get everything to work, so now we have a new OpenStreetMapX release with pbf support! Should you need other functionality for your project (perhaps...

Hi, you can save any Julia object by using the [serialization API](https://docs.julialang.org/en/v1/stdlib/Serialization/) ``` using Serialization serialize("myfle.jld", mapdata) ``` Another good option is [BJSON.jl](https://github.com/JuliaIO/BSON.jl) Regarding visualisations in the tutorials I use...

We use the library for numerical simulations on maps (rather then general map data processing). However, a pull request would be always welcome. The easiest way to achieve it would...

We just should remove that parameter from the code. Lots of code has been re-engineered and in some places there are some leftovers.

Yes you are right. Identical code is executed where a `MapData` object is constructed: https://github.com/pszufe/OpenStreetMapX.jl/blob/919b76412883afd30a98da745219d87ac62383b0/src/parseMap.jl#L128

We do not have currently anyone to do it. However, if you have some proposals and would like to contribute we are open to talk and guide you.