Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Feb 7, 2024
1 parent ae65422 commit 1a83868
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ public GTFSToOtpTransitServiceMapper(
pathwayNodeMapper = new PathwayNodeMapper(translationHelper, stationLookup);
boardingAreaMapper = new BoardingAreaMapper(translationHelper, stopLookup);
locationMapper = new LocationMapper(builder.stopModel());
// location groups were replaced by stop areas in the spec
// this code will go away, please migrate now!
locationGroupMapper = new LocationGroupMapper(stopMapper, locationMapper, builder.stopModel());
// the use of stop areas were reverted in the spec
// this code will go away, please migrate now!
stopAreaMapper = new StopAreaMapper(stopMapper, locationMapper, builder.stopModel());
pathwayMapper =
new PathwayMapper(stopMapper, entranceMapper, pathwayNodeMapper, boardingAreaMapper);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
package org.opentripplanner._support.geometry;

import com.google.common.collect.Lists;
import java.util.Arrays;
import java.util.List;
import org.geojson.GeoJsonObject;
import org.geojson.LineString;
import org.geojson.LngLatAlt;
import org.geojson.Point;
import org.locationtech.jts.geom.Coordinate;
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.geom.Polygon;
import org.opentripplanner.framework.geometry.GeometryUtils;

Expand Down

0 comments on commit 1a83868

Please sign in to comment.