| Package | Description |
|---|---|
| com.conveyal.gtfs | |
| com.conveyal.gtfs.error |
This package contains all the objects that represent errors encountered during GTFS loading.
|
| com.conveyal.gtfs.loader | |
| com.conveyal.gtfs.model |
This package contains an alternative to the GTFS loading classes we have been using from OBA.
|
| com.conveyal.gtfs.util | |
| com.conveyal.gtfs.validator | |
| com.conveyal.gtfs.validator.model |
| Modifier and Type | Field and Description |
|---|---|
Map<String,Stop> |
GTFSFeed.stops |
| Modifier and Type | Method and Description |
|---|---|
Map<TripPatternKey,Pattern> |
PatternFinder.createPatternObjects(Map<String,Stop> stopById,
SQLErrorStorage errorStorage)
Once all trips have been processed, call this method to produce the final Pattern objects representing all the
unique sequences of stops encountered.
|
static void |
PatternFinder.renamePatterns(Collection<Pattern> patterns,
Map<String,Stop> stopById)
Destructively rename the supplied collection of patterns.
|
| Modifier and Type | Field and Description |
|---|---|
Stop |
MisplacedStopError.stop |
Stop |
UnusedStopError.stop |
| Constructor and Description |
|---|
MisplacedStopError(String affectedEntityId,
long line,
Stop stop) |
UnusedStopError(Stop stop) |
| Modifier and Type | Field and Description |
|---|---|
static EntityPopulator<Stop> |
EntityPopulator.STOP |
TableReader<Stop> |
Feed.stops |
| Modifier and Type | Method and Description |
|---|---|
Iterator<Stop> |
Stop.Writer.iterator() |
| Modifier and Type | Method and Description |
|---|---|
void |
Stop.Writer.writeOneRow(Stop s) |
| Modifier and Type | Method and Description |
|---|---|
static String |
Util.getCoordString(Stop stop) |
| Modifier and Type | Method and Description |
|---|---|
void |
ReferencesTripValidator.validateTrip(Trip trip,
Route route,
List<StopTime> stopTimes,
List<Stop> stops) |
void |
ServiceValidator.validateTrip(Trip trip,
Route route,
List<StopTime> stopTimes,
List<Stop> stops) |
void |
SpeedTripValidator.validateTrip(Trip trip,
Route route,
List<StopTime> stopTimes,
List<Stop> stops) |
void |
ReversedTripValidator.validateTrip(Trip trip,
Route route,
List<StopTime> stopTimes,
List<Stop> stops) |
void |
PatternFinderValidator.validateTrip(Trip trip,
Route route,
List<StopTime> stopTimes,
List<Stop> stops) |
abstract void |
TripValidator.validateTrip(Trip trip,
Route route,
List<StopTime> stopTimes,
List<Stop> stops)
This method will be called on each trip in the feed.
|
| Modifier and Type | Field and Description |
|---|---|
Stop |
DuplicateStops.stop1 |
Stop |
DuplicateStops.stop2 |
| Modifier and Type | Method and Description |
|---|---|
Stop |
DuplicateStops.getDuplicatedStop() |
Stop |
DuplicateStops.getOriginalStop() |
| Constructor and Description |
|---|
DuplicateStops(Stop s1,
Stop s2,
double dist) |
Copyright © 2019. All rights reserved.