Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

On-demand experiments #786

Draft
wants to merge 22 commits into
base: dev
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3941742
Reduce car linking limit from 30 min to 20 min.
ansoncfit Jan 27, 2022
010970c
Experimental: serialize bike and car linkages
ansoncfit Jan 27, 2022
71bd15a
set kryo NETWORK_FORMAT_VERSION to previous commit
ansoncfit Jan 27, 2022
1a28824
Increase limit on indexing bins
ansoncfit Jan 31, 2022
860221f
Refactor: dedicated package for on-demand services
ansoncfit Feb 6, 2022
70979b8
Feature: allow direct on-demand service to limited zones
ansoncfit Feb 6, 2022
f5c821b
Save transit shapes
ansoncfit Feb 6, 2022
48797a5
Scale driving speeds by 0.5x
ansoncfit Feb 6, 2022
e57f68f
set kryo NETWORK_FORMAT_VERSION to previous commit
ansoncfit Feb 6, 2022
0cec409
Fix: union destination polygons
ansoncfit Feb 7, 2022
a670dac
Merge branch 'dev' into car-egress-tables
ansoncfit Apr 13, 2022
63d9969
Reset speeds to default
ansoncfit Jul 19, 2023
277a37a
Merge branch 'dev' into car-egress-tables
ansoncfit Jul 19, 2023
eaf53ef
feat(on-demand): allow overlapping pickup zones
ansoncfit Jul 30, 2023
2146977
Allow pickup only for first-/last-mile
ansoncfit Aug 14, 2023
a04dc68
Merge branch 'dev' into car-egress-tables
ansoncfit Feb 22, 2024
a456099
Rename variable for clarity
ansoncfit Feb 28, 2024
b9dab23
Remove unused variables
ansoncfit Feb 28, 2024
c71eb5b
set kryo NETWORK_FORMAT_VERSION to previous commit
ansoncfit Feb 28, 2024
1826c92
debug: disable range-RAPTOR optimization
ansoncfit Apr 3, 2024
d89a645
debug: skip test if range RAPTOR disabled
ansoncfit Apr 3, 2024
163eafa
Merge branch 'dev' into car-egress-tables
ansoncfit Apr 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unused variables
  • Loading branch information
ansoncfit committed Feb 28, 2024
commit b9dab23981b2663fa9d0528cd7e534a4b27eb6fc
13 changes: 0 additions & 13 deletions src/main/java/com/conveyal/r5/analyst/scenario/PickupDelay.java
Original file line number Diff line number Diff line change
@@ -38,13 +38,6 @@ public class PickupDelay extends Modification {
*/
public String zonePolygons;

/**
* The identifier of the polygon layer containing the stops associated with the zones, if any.
* Having two different polygon files raises questions about whether the attribute names can be set separately,
* and how we would factor out that aspect of the polygon loading code.
*/
// public String stopPolygons;

/**
* The name of the attribute (floating-point) within the polygon layer that contains the pick-up wait time
* (in minutes). Negative waiting times mean the area is not served at all.
@@ -96,12 +89,6 @@ public class PickupDelay extends Modification {
/** The result of resolving this modification against the TransportNetwork. */
private transient PickupWaitTimes pickupWaitTimes;

/**
* These polygons contain the stops served by the zones. Wait times are also loaded for these polygons and will be
* used on the egress end of the itinerary.
*/
//private transient IndexedPolygonCollection stopPolygons;

// Implementations of methods for the Modification interface

@Override
Loading