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

Ride Sharing #192

Draft
wants to merge 20 commits into
base: master
Choose a base branch
from
Draft

Ride Sharing #192

wants to merge 20 commits into from

Conversation

felixguendling
Copy link
Member

No description provided.

@felixguendling felixguendling force-pushed the ridesharing branch 7 times, most recently from 84e9144 to b025374 Compare January 18, 2022 20:33
@@ -314,13 +323,43 @@ void add_direct_connections(std::vector<journey>& journeys,
transport.duration_ = d.duration_;
transport.mumo_accessibility_ = d.accessibility_;
transport.mumo_type_ = to_string(d.type_);
transport.is_walk_ = true;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doppelt, wird ein paar Zeilen drüber schon gesetzt

Comment on lines 341 to 353
} else {
auto const dep_time =
fwd ? q_start.time_
: static_cast<std::time_t>(q_start.time_ - d.duration_ * 60);
auto const arr_time =
fwd ? static_cast<std::time_t>(q_start.time_ + d.duration_ * 60)
: q_start.time_;
j.stops_.front().departure_.timestamp_ =
dep_time; // reference start invalid by now
j.stops_.front().departure_.schedule_timestamp_ = dep_time;
dest.arrival_.timestamp_ = arr_time;
dest.arrival_.schedule_timestamp_ = arr_time;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wird auch oben vor dem if-Block schon gesetzt.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants