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

Hi and thanks a lot for your work! I have an agent-based simulation running on an OSM map, using your package as well as Agents.jl. For testing purposes, I'd like...

This package roles it's own stuff for coordinate systems. However, I believe that [Geodesy.jl](https://github.com/JuliaGeo/Geodesy.jl), which itself depends on [CoordinateTransformations.jl](https://github.com/JuliaGeometry/CoordinateTransformations.jl), provides a superset of the functionality available here for translating between...

Hi , greetings from Chile, I was looking at your work and it caught my attention, but is it possible to save the Map Data Object in a file? I...

``` function find_segments(nodes::Dict{Int,T}, highways::Vector{OpenStreetMapX.Way}, intersections::Dict{Int,Set{Int}}) where T

Hi, I was wondering, what is exactly the purpose of this polyline.jl file? Why do I need to encode single coordinates? Thank you so much for your time and attention.

Hello, I was interested to get more information about the features to graph function. Thanks!

I'm confused about the following function. ``` ### Crop Single Node and Feature ### function crop!(nodes::Dict, bounds::OpenStreetMapX.Bounds, features::Dict, id::Int) if !OpenStreetMapX.inbounds(nodes[id], bounds) id in keys(features) && delete!(features, id) delete!(nodes,id) end...

``` ####################### ### Crop Single Way ### ####################### function crop!(nodes::Dict, bounds::OpenStreetMapX.Bounds, way::OpenStreetMapX.Way) valid = falses(length(way.nodes)+2) n = 1 while n

``` 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...

Hi, just a tiny question. I was wondering, the parameter `nodes::Dict{Int,T}` is not needed in the following function, right? ``` function get_edges(nodes::Dict{Int,T},roadways::Vector{OpenStreetMapX.Way}) where T