Package | Description |
---|---|
org.transitime.db.structs |
Contains the descriptions of the classes for the objects that are read
and written to the database.
|
org.transitime.gtfs |
Contains classes for reading and writing GTFS configuration data.
|
org.transitime.gtfs.gtfsStructs |
Contains the classes the correspond directly to the GTFS data.
|
org.transitime.gtfs.readers |
For reading in a GTFS file in CSV format.
|
org.transitime.gtfs.writers |
For writing GTFS configuration data in CSV format to files.
|
Constructor and Description |
---|
Route(int configRev,
GtfsRoute gtfsRoute,
java.util.List<TripPattern> tripPatternsForRoute,
TitleFormatter titleFormatter,
boolean shouldCombineShortAndLongNamesForRoutes)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
GtfsRoute |
GtfsData.getGtfsRoute(java.lang.String routeId) |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,GtfsRoute> |
GtfsData.getGtfsRoutesMap() |
Constructor and Description |
---|
GtfsRoute(GtfsRoute originalRoute,
GtfsRoute supplementRoute)
When combining a regular route with a supplemental route need to
create a whole new object since this class is Immutable to make
it safer to use.
|
Modifier and Type | Method and Description |
---|---|
GtfsRoute |
GtfsRoutesSupplementReader.handleRecord(org.apache.commons.csv.CSVRecord record,
boolean supplemental) |
GtfsRoute |
GtfsRoutesReader.handleRecord(org.apache.commons.csv.CSVRecord record,
boolean supplemental) |
Modifier and Type | Method and Description |
---|---|
void |
GtfsRoutesWriter.write(GtfsRoute gtfsRoute)
Writes a GtfsStop to the file
|