Skip to content
Closed
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions nrel/routee/transit/prediction/gtfs_feature_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,8 +521,8 @@ def build_routee_features_with_osm(
)

if add_depot_deadhead:
# Create depot deadhead trips
deadhead_trips_df = create_depot_deadhead_trips(trips_df)
#3) Optional, create depot deadhead trips
deadhead_trips_df = create_depot_deadhead_trips(trips_df, stop_times_df)

# Create depot deadhead stop_times and stops
first_stops_gdf, last_stops_gdf = infer_depot_trip_endpoints(
Expand Down
Loading