Skip to content

Commit

Permalink
Merge pull request #23 from matsim-org/matsim-13
Browse files Browse the repository at this point in the history
Update to MATSim 13.0
  • Loading branch information
jfbischoff authored Jun 15, 2021
2 parents 097dd31 + 47172b9 commit ad015e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.matsim.contrib</groupId>
<artifactId>matsim-gtfs</artifactId>
<version>13.0-SNAPSHOT</version>
<version>13.0</version>

<properties>
<matsim.version>12.0</matsim.version>
<matsim.version>13.0</matsim.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>11</maven.compiler.source>
Expand All @@ -26,8 +26,9 @@
</releases>
</repository>
<repository>
<!-- Repository for MATSim releases and snapshots (MATSim is not on Maven central) -->
<id>matsim</id>
<url>http://dl.bintray.com/matsim/matsim</url>
<url>https://repo.matsim.org/repository/matsim</url>
</repository>
<repository>
<id>ojo-snapshots</id>
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/org/matsim/contrib/gtfs/GtfsConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ public void convert() {
.filter(this::filterAgencyAndType)
.collect(Collectors.toList());

// log.info(String.format("Active Trips: %d %s", activeTrips.size(), activeTrips.stream().map(trip -> trip.trip_id).collect(Collectors.toList())));

// Create one TransitLine for each GTFS-Route which has an active trip
activeTrips.stream().map(trip -> feed.routes.get(trip.route_id)).distinct().forEach(route -> {
TransitLine tl = ts.getFactory().createTransitLine(getReadableTransitLineId(route));
Expand Down

0 comments on commit ad015e3

Please sign in to comment.