Skip to content

Commit

Permalink
update matsim version
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Nov 13, 2024
1 parent 83a69df commit a5d7257
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>matsim-all</artifactId>

<!-- PR-labelled release -->
<version>2025.0-PR3549</version>
<version>2025.0-PR3552</version>

<!-- snapshot == not recommended: rather use PR-labelled release!-->
<!-- <version>2025.0-SNAPSHOT</version>-->
Expand Down Expand Up @@ -128,7 +128,7 @@
<dependency>
<groupId>com.github.matsim-org</groupId>
<artifactId>gtfs2matsim</artifactId>
<version>0bd5850fd6</version>
<version>47b0802a29</version>
<exclusions>
<exclusion>
<groupId>org.matsim</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ public Integer call() throws Exception {
for (Map.Entry<String, CSVRecord> e : ProgressBar.wrap(persons, "Assigning reference population")) {

CSVRecord p = e.getValue();

// The persons csv is upscaled using the weight of the person, which is easier to handle in many algorithms
// However, here we take only the original person from the person table, which means that the weight needs to be considered as well
if (!p.get("seq").equals("0"))
continue;

Expand Down

0 comments on commit a5d7257

Please sign in to comment.