Package org.opentripplanner.graph_builder.annotation

Examples of org.opentripplanner.graph_builder.annotation.StreetCarSpeedZero


            street.setSlopeOverride(wayPropertySet.getSlopeOverride(way));

            // < 0.04: account for
            if (carSpeed < 0.04) {
                LOG.warn(graph.addBuilderAnnotation(new StreetCarSpeedZero(way.getId())));
            }

            if (customNamer != null) {
                customNamer.nameWithEdge(way, street);
            }
View Full Code Here

TOP

Related Classes of org.opentripplanner.graph_builder.annotation.StreetCarSpeedZero

Copyright © 2018 www.massapicom. 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.