Package | Description |
---|---|
org.transitime.core |
Contains the core classes that process the AVL data and create predictions,
arrival/departure times, headway, etc.
|
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.ipc.data |
This package contains the low-level objects that are transmitted to
the clients via RMI.
|
Modifier and Type | Method and Description |
---|---|
Route |
SpatialMatch.getRoute() |
Modifier and Type | Method and Description |
---|---|
Route |
Trip.getRoute()
Returns the Route object for this trip.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<Route> |
Route.getRoutes(org.hibernate.Session session,
int configRev)
Returns List of Route objects for the specified database revision.
|
Constructor and Description |
---|
Agency(int configRev,
GtfsAgency gtfsAgency,
java.util.List<Route> routes)
For creating object to be written to db.
|
Modifier and Type | Method and Description |
---|---|
Route |
DbConfig.getRouteById(java.lang.String routeId)
Returns the Route with the specified routeId.
|
Route |
DbConfig.getRouteByShortName(java.lang.String routeShortName)
Returns the Route with the specified routeShortName
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Route> |
GtfsData.getRoutes() |
java.util.List<Route> |
DbConfig.getRoutes()
Returns ordered list of routes.
|
java.util.Map<java.lang.String,Route> |
DbConfig.getRoutesByRouteIdMap()
Returns Map of routesMap keyed on the routeId.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<IpcSchedule> |
IpcSchedule.createSchedules(Route route,
java.util.List<Block> blocksForRoute)
Creates a IpcSchedule for each service ID and each direction for the
blocks for the route.
|
Constructor and Description |
---|
IpcDirection(Route dbRoute,
java.lang.String directionId)
Constructor.
|
IpcDirection(Route dbRoute,
java.lang.String directionId,
java.util.List<IpcStop> ipcStops)
Constructor for when already have list of IpcStops.
|
IpcDirectionsForRoute(Route dbRoute)
Member Functions
|
IpcRoute(Route dbRoute,
java.lang.String directionId,
java.lang.String stopId,
java.lang.String tripPatternId)
Create an IpcRoute that contains all stops and paths but separates out
information for the remaining part of the trip specified by stopId and
tripPatternId.
|
IpcRouteSummary(Route dbRoute)
Constructs a new RouteSummary object using a Route object from
the database.
|