Skip to content

Commit

Permalink
Merge pull request #268 from SANDAG/ttr_owned_ebike
Browse files Browse the repository at this point in the history
Assume owned ebike in travel time reporter
  • Loading branch information
bhargavasana authored Dec 4, 2024
2 parents 42ddb68 + 774c59a commit 9799396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/python/TravelTimeReporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ def coalesce_results(self):
_ebikeMaxTime = self.constants["ebikeMaxDist"] / self.constants["ebikeSpeed"] * 60
_escooterMaxTime = self.constants["escooterMaxDist"] / self.constants["escooterSpeed"] * 60

_ebikeTime = self.results["bike"] * self.constants["bikeSpeed"] / self.constants["ebikeSpeed"] + self.results["i"].map(self.land_use["MicroAccessTime"]) + self.constants["microRentTime"]
_ebikeTime = self.results["bike"] * self.constants["bikeSpeed"] / self.constants["ebikeSpeed"]
_escooterTime = self.results["bike"] * self.constants["bikeSpeed"] / self.constants["escooterSpeed"] + self.results["i"].map(self.land_use["MicroAccessTime"]) + self.constants["microRentTime"]

self.results["ebike"] = np.where(
Expand Down

0 comments on commit 9799396

Please sign in to comment.