diff --git a/src/main/java/com/conveyal/r5/analyst/scenario/ShapefileLts.java b/src/main/java/com/conveyal/r5/analyst/scenario/ShapefileLts.java index 77d54f6ae..daf9374d2 100644 --- a/src/main/java/com/conveyal/r5/analyst/scenario/ShapefileLts.java +++ b/src/main/java/com/conveyal/r5/analyst/scenario/ShapefileLts.java @@ -4,7 +4,7 @@ import com.conveyal.analysis.datasource.DataSourceException; import com.conveyal.file.FileStorageFormat; import com.conveyal.file.FileStorageKey; -import com.conveyal.r5.shapefile.LtsMatcher; +import com.conveyal.r5.shapefile.SpeedMatcher; import com.conveyal.r5.transit.TransportNetwork; import com.conveyal.r5.transit.TransportNetworkCache; import com.conveyal.r5.util.ExceptionUtils; @@ -56,7 +56,7 @@ public boolean apply (TransportNetwork network) { // Replicate the entire flags array so we can write to it (following copy-on-write policy). // Otherwise the TIntAugmentedList only allows extending the base graph. network.streetLayer.edgeStore.flags = new TIntArrayList(network.streetLayer.edgeStore.flags); - LtsMatcher shapefileMatcher = new LtsMatcher(network.streetLayer); + SpeedMatcher shapefileMatcher = new SpeedMatcher(network.streetLayer); try { shapefileMatcher.match(localFile.getAbsolutePath(), ltsAttribute); } catch (Exception e) {