OpenStreetMapX.jl icon indicating copy to clipboard operation
OpenStreetMapX.jl copied to clipboard

OpenStreetMap (*.osm) support for Julia 1.0 and up

Results 25 OpenStreetMapX.jl issues
Sort by recently updated
recently updated
newest added

It would be helpful to have the units for the returned value of `shortest_route` and `fastest_route` in the docstring

@pszufe I would like to know if openstreetMapX has any internal function that allows to have more than a one edge with the same node id as source and target?...

Hello, The `nodes_within_driving_time(map, [source], time_limit)[1] ` returns a set of nodes that are whithin driving time. Is there any `edge_within_driving_time` or `path_within_driving_time`? Or any idea of how to go from...

It is a bit confusing that the order of edges in `maps.e` doesn't respect the order `edges(mapx.g)` gives. ``` julia> collect(edges(mapx.g))[100] Edge 62 => 63 julia> mapx.n[ans.src], mapx.n[ans.dst] (140183299, 300033881)...

A new ProtoBuf.jl has been released (a new 1.0.0 version stream) @blegat would you consider updating the *.pbf code? Thank you for all your effort so far!

help wanted

There is a problem with the parseOSM function ```julia FILE=" lanelet2_map.osm" OpenStreetMapX.parseOSM(FILE) ``` ```julia "ArgumentError(\"cannot parse \\\"\\\" as Float64\"), , 0, 0, 0" in eval at [base/boot.jl:360](https://github.com/pszufe/OpenStreetMapX.jl/issues/new#) in top-level scope...

Hi! When I ran the https://pszufe.github.io/OpenStreetMapX_Tutorial/JuliaCon2020/ , the part that took 10 cars an let them drive between randomly selected pairs of points, gives the following error. I installed all...

Hi, Is there any specific command in OpenStreetMap.jl package to allow for extracting public transportation routes as well as their timetable? For example, the timetable and routes of all buses...

Just started to import Belgium. `belgium-latest.osm.bz2` makes 750 MB, and the unpacked `belgium-latest.osm` takes 8.6 GB. I tried `get_map_data("belgium-latest.osm")`, it took some time until my computer ran out of its...

The function plot_map included in samples, does not take into account roadways defined with polylines, so, tile streets do not match the plotted ones. I have substituted this part: for...