Skip to content

Commit

Permalink
fix: default service start and end ties
Browse files Browse the repository at this point in the history
  • Loading branch information
tschlenther committed Feb 13, 2024
1 parent 9243c25 commit 5a4babc
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ public final class LeipzigDrtVehicleCreator implements MATSimAppCommand {
@CommandLine.Option(names = "--no-vehicles", description = "no of vehicles per service area to create", required = true)
private int noVehiclesPerArea;

@CommandLine.Option(names = "--service-start-time", description = "start of vehicle service time in seconds", defaultValue = "18000")
private double serviceStartTime;
@CommandLine.Option(names = "--service-start-time", description = "start of vehicle service time in seconds. default is 18000.")
private double serviceStartTime = 18000;

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

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

0 comments on commit 5a4babc

Please sign in to comment.