Examples of TripDegenerate


Examples of org.opentripplanner.graph_builder.annotation.TripDegenerate

            filterStopTimes(stopTimes, graph);
            interpolateStopTimes(stopTimes);  
           
            /* If after filtering this trip does not contain at least 2 stoptimes, it does not serve any purpose. */
            if (stopTimes.size() < 2) {
                LOG.warn(graph.addBuilderAnnotation(new TripDegenerate(trip)));
                continue TRIP;
            }

            /* Get the existing TripPattern for this filtered StopPattern, or create one. */
            StopPattern stopPattern = new StopPattern(stopTimes);
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.