Przemysław Szufel
Przemysław Szufel
Yes, the parameter is not needed. This is another leftover from code cleanup. Regarding the documentation - you are welcome to contribute. I can support you with technical issues. There...
I am not sure whether you are looking at k-shortest paths or dynamically changing weights. Since other people might use it, I will answer both cases. ### k-shortest paths OpenStreetMapX...
Hi, `LightGraphs.jl` is no longer maintained and has been replaced by `Graphs.jl`. Hence all you need to do is to replace the line: ``` using LightGraphs ``` with ``` using...
Change: ``` ns = LightGraphs.neighbors(s.m.g, agent.current_node) ``` to ``` ns = Graphs.neighbors(s.m.g, agent.current_node) ```
Yes they are unfortunately brief - we look for volunteers here! For time being have a look https://openstreetmapjl.readthedocs.io/en/stable/ This is the project that OpenStreetMapX.jl took most of the code (and...
Since `Way`s represent any kind of shape I understand that we can have a situation where the same nodes can occur more than once in a single `Way`. From graph...
You are right - seems that the Conda dep is actually not needed. It should be quite safe to drop it from the dependecies and remove `using Conda` from the...
PyCall can be built with an external Python, eg.: https://stackoverflow.com/questions/69968084/cannot-install-pycall-jl-with-julia-1-6-3-build-on-freebsd-13 This however should be better Anaconda/Miniconda rather than pure Python. A pure Python installation is also possible but often leads...
Hello, we are looking for people interested in contributing. Any Pull Request is welcome. We do not have specific plans at the moment but this might change depending on research...
We never removed any functionality and these were never available in this package. However, PRs are always welcome.