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

Order of edges in `.e` and `.class`

Open mschauer opened this issue 1 year ago • 0 comments

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)

julia> mapx.e[100]
(140251695, 140251692)

mschauer avatar Apr 05 '23 15:04 mschauer