Skip to content

Commit

Permalink
implement parking case run class
Browse files Browse the repository at this point in the history
  • Loading branch information
GregorRyb committed Mar 14, 2024
1 parent b64d4b9 commit 0c274b6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/main/java/org/matsim/run/policies/RunWithParkingCost.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package org.matsim.run.policies;

import org.matsim.application.MATSimApplication;
import org.matsim.run.LeipzigScenario;

/**
* Main class to run the Leipzig with parking cost scenario.
*/
public class RunWithParkingCost {

private RunWithParkingCost() {
}

public static void main(String[] args) {
String[] argsForPolicy = new String[]{
"--config", "/net/ils/matsim-leipzig/input/v1.3/leipzig-v1.3.1-10pct.config.xml",
"--parking",
"--parking-cost-area", "/net/ils/matsim-leipzig/input/v1.3/parkingCostArea/Bewohnerparken_2020.shp"
};
MATSimApplication.runWithDefaults(LeipzigScenario.class, argsForPolicy);
}

}

0 comments on commit 0c274b6

Please sign in to comment.