Giter VIP home page Giter VIP logo

Comments (2)

polettif avatar polettif commented on July 30, 2024 1

Frankly I only skimmed the code and its design and I don't know anything about the background implementations but I'd suggest cleanly separating filtering and routing. Meaning, gtfs_timetable should only be called on already prepared stop_times, transfers and stops (I guess feed using frequencies.txt are a different case).

Generally, routing can/should only be done for a given day and a given time of a feed. The time aspect is currently considered, what about the day? With the Swiss feed for example specifying the service ids and trips used on a given date is not that trivial but necessary to get a reliable routing result. Same with the modes of transport you mentioned: A well set up feed should use transport modes (route_type)Β in routes.txt. IMO filtering should be done with these data modes ready and not via grep, like (not that pretty to be honest)_

filtered_stop_times <- gtfs$routes_df %>% 
    filter(route_type == 3) %>% 
    inner_join(gtfs$trips_df, by="route_id") %>% 
    inner_join(gtfs$stop_times_df, by="trip_id")

Admittedly, there could be a number of wrapping "preparation functions" or you could do all this within gtfs_timetable. And maybe all this filtering is easier after a timetable has been created.

from gtfsrouter.

mpadge avatar mpadge commented on July 30, 2024

Thanks @polettif for highlighting the necessity of a day parameter, which I'd completely overlooked. This commit implements that in gtfs_timetable(), which defaults to current day. Now just have to filter by route ID ...

from gtfsrouter.

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.