Examples of TripUndefinedService


Examples of org.opentripplanner.graph_builder.annotation.TripUndefinedService

                LOG.debug("loading trips {}/{}", tripCount, trips.size());
            }

            // TODO: move to a validator module
            if ( ! _calendarService.getServiceIds().contains(trip.getServiceId())) {
                LOG.warn(graph.addBuilderAnnotation(new TripUndefinedService(trip)));
            }

            /* Fetch the stop times for this trip. Copy the list since it's immutable. */
            List<StopTime> stopTimes = new ArrayList<StopTime>(_dao.getStopTimesForTrip(trip));

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.