Frank Purcell
Frank Purcell
In the docs, where there's mention of 'docker run ... tileserver-gl', suggest changing the port info from '-p 8080:80' to '-p 8080:8080' for version 3.1.x and greater, so that it...
is_interline = trip_id's end_stop_id === next_trip_id's begin_stop_id dwell_time = next_trip_id's stop_time at its begin_stop_id - trip_id's stop_time at its end_stop_id (e.g., begin_stop_id === end_stop_id ala is_interline shown above)
What was implemented was the simple option 1 for calculating the distance param ... a better option exists. Test whether the better option is needed, and then decided to execute...
stop.py:85: SADeprecationWarning: The joinedload_all() function is deprecated, and will be removed in a future release. Please use method chaining with joinedload() instead
gtfsdb firstly will need to write .gtfs files out (not yet implemented) secondly, there will be a process to filter the export based on route id any other filters? dates?...
https://requests.readthedocs.io/en/master/ RTD gives a 403 error with current implementation. Plus, the current urlretrieve(filename)[0] is mentioned in the py 3.x docs as possibly deprecated in the future
**what**: allow gtfsdb to connect to multiple databases and/or different schemas in a single instance **problem**: currently gtfsdb monkey patches ORM classes when using either schema or geom tables (postgres),...
calculate all the patterns belonging to a route into route_pattern further, do we need a current_route_pattern? alt, do we really need a current_pattern table, ala #45 ? I think we...
need a current patterns table like we have for stops & routes
Having a list of sql and orm queries could help users. https://stackoverflow.com/questions/30419707/sample-gtfs-sql-queries (just found this one): - Given the current time, list the positions of all vehicles along a particular...