Skip to content

Commit

Permalink
Merge pull request #3397 from matsim-org/noiseAnalysis
Browse files Browse the repository at this point in the history
NoiseAnalysis: use asterisk for act type default
  • Loading branch information
tschlenther authored Aug 7, 2024
2 parents 5bf784e + 4e4afdc commit a382078
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public class NoiseAnalysis implements MATSimAppCommand {
@CommandLine.Mixin
private final ShpOptions shp = new ShpOptions();

@CommandLine.Option(names = "--consider-activities", split = ",", description = "Considered activities for noise calculation", defaultValue = "h,w,home,work")
@CommandLine.Option(names = "--consider-activities", split = ",", description = "Considered activities for noise calculation." +
" Use asterisk ('*') for acttype prefixes, if all such acts shall be considered.", defaultValue = "h,w,home*,work*")
private Set<String> considerActivities;

@CommandLine.Option(names = "--noise-barrier", description = "Path to the noise barrier File", defaultValue = "")
Expand Down

0 comments on commit a382078

Please sign in to comment.