Package org.opentripplanner.openstreetmap.impl

Examples of org.opentripplanner.openstreetmap.impl.OpenStreetMapParser


    }

    @Test
    public void testBasicParser() throws Exception {
        InputStream in = new GZIPInputStream(getClass().getResourceAsStream("map.osm.gz"));
        OpenStreetMapParser parser = new OpenStreetMapParser();
        OSMMap map = new OSMMap();
        parser.parseMap(in, map);
        testParser(map);
    }
View Full Code Here

TOP

Related Classes of org.opentripplanner.openstreetmap.impl.OpenStreetMapParser

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.