Skip to content

Commit

Permalink
fix: default service start end time
Browse files Browse the repository at this point in the history
  • Loading branch information
tschlenther committed Feb 13, 2024
1 parent 5a4babc commit 5fd4e95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public final class LeipzigDrtVehicleCreator implements MATSimAppCommand {
private double serviceStartTime = 18000;

@CommandLine.Option(names = "--service-end-time", description = "end of vehicle service time in seconds. default is 864000.")
private double serviceEndTime = 864000;
private double serviceEndTime = 86400;

public static void main(String[] args) throws IOException {
new LeipzigDrtVehicleCreator().execute(args);
Expand Down

0 comments on commit 5fd4e95

Please sign in to comment.