Skip to content

Commit

Permalink
limit the minimum income
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Jan 31, 2024
1 parent fc01dd6 commit cf63313
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/matsim/prepare/population/CalcIncome.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ public class CalcIncome implements PersonAlgorithm {

/**
* Income groups in Euro. The last element is the maximum income in the model, which is not known but defined.
* The minimum is also defined as well.
*/
private static final int[] INCOME_GROUPS = new int[]{0, 500, 900, 1500, 2000, 2600, 3000, 3600, 4600, 5600, 8000};
private static final int[] INCOME_GROUPS = new int[]{400, 500, 900, 1500, 2000, 2600, 3000, 3600, 4600, 5600, 8000};

/**
* Distribution per economic status. See python file extract income.
Expand Down

0 comments on commit cf63313

Please sign in to comment.