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
function get_route_nodes(m::OpenStreetMapX.MapData, route_indices::Array{Int64,1})
route_nodes = Array{Int}(undef,length(route_indices))
v = Dict{Int,Int}(reverse.(collect(m.v)))
for n = 1:length(route_nodes)
route_nodes[n] = v[route_indices[n]]
end
return route_nodes
end
In the above function, is the variable v the same as m.n or did I miss something?
The text was updated successfully, but these errors were encountered:
In the above function, is the variable v the same as m.n or did I miss something?
The text was updated successfully, but these errors were encountered: