Skip to content

Commit

Permalink
add command line params for noise analysis (#8)
Browse files Browse the repository at this point in the history
Co-authored-by: Kai Nagel <[email protected]>
  • Loading branch information
GregorRyb and kainagel authored Nov 1, 2023
1 parent 17955c5 commit 25539d9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/org/matsim/analysis/NoiseAnalysisGladbeck.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
public class NoiseAnalysisGladbeck {

public static void main (String args []) {
if ( args==null || args.length==0 ) {
args = new String[]{
"--directory", "../../runs-svn/glaMobi/freePt/",
"--runId", "freePt_gladbeck-v1.0",
"--input-crs", "EPSG:25832"
};
}
new NoiseAnalysis().execute(args);
}

Expand Down

0 comments on commit 25539d9

Please sign in to comment.