Package org.opentripplanner.graph_builder.annotation

Examples of org.opentripplanner.graph_builder.annotation.LevelAmbiguous


            } else if (way.hasTag("layer")) {
                levelName = way.getTag("layer");
                level = OSMLevel.fromString(levelName, OSMLevel.Source.LAYER_TAG, noZeroLevels);
            }
            if (level == null || (!level.reliable)) {
                LOG.warn(addBuilderAnnotation(new LevelAmbiguous(levelName, way.getId())));
                level = OSMLevel.DEFAULT;
            }
            wayLevels.put(way, level);
        }
    }
View Full Code Here

TOP

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

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.