Coder Social home page Coder Social logo

Comments (7)

easbar avatar easbar commented on August 21, 2024

Starting from some node p you want to find all nodes q such that the weight of the shortest path p->q is less than some threshold ?

from fast_paths.

Eh2406 avatar Eh2406 commented on August 21, 2024

Yes. That is what I had in mind.

from fast_paths.

Eh2406 avatar Eh2406 commented on August 21, 2024

Now that I think about it we could have an iterator that returns q's sorted by the shortest path p->q. If you want a k nearest: iterator.take(k). If you want all in a range iterator.take_while(|p| p->q < range).

If you have some pointers I may be able to give this a try.

from fast_paths.

easbar avatar easbar commented on August 21, 2024

Ok yes the trivial way of doing this is calculating all paths p->q, then sorting by distance and taking only those up to some limit. Do you think this should be included here (it can easily be done using the existing API) ?

This can also be done more efficiently, but currently this is not supported. Btw in the context of routing networks this is sometimes called isochrone calculation.

from fast_paths.

Eh2406 avatar Eh2406 commented on August 21, 2024

Only when it can be done more efficiently than the alternatives. Do Contraction Hierarchies help make it more efficient than a Dijkstra's on an unprepared Graph? If so then yes it should be here. If not then I need talk to the pandana team about why they do it this way. :-P

from fast_paths.

easbar avatar easbar commented on August 21, 2024

Yes it can be more efficient. Even the trivial way we lined out above might be faster (on small maps at least).

why they do it this way

You mean they are doing this already ? How would implementing it here help with Pandana ?

from fast_paths.

Eh2406 avatar Eh2406 commented on August 21, 2024

It is a C++ python Library, it has in the past caused our entire model to segfault. I spent today trying to diagnose a regression in performance, our model is now taking an additional 16 hours to run. As someone who doesn't know C++... let's just say I would like the rust alternatives to be as ready to be a drop-in replacement as possible.

from fast_paths.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.