Package org.openstreetmap.osmosis.osmbinary.Osmformat

Examples of org.openstreetmap.osmosis.osmbinary.Osmformat.StringTable


    this.coordGranularity = primitiveBlock.getGranularity();
    this.coordLatitudeOffset = primitiveBlock.getLatOffset();
    this.coordLongitudeOffset = primitiveBlock.getLonOffset();
    this.dateGranularity = primitiveBlock.getDateGranularity();

    StringTable stringTable = primitiveBlock.getStringtable();
    strings = new String[stringTable.getSCount()];
    for (int i = 0; i < strings.length; i++) {
      strings[i] = stringTable.getS(i).toStringUtf8();
    }
  }
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.osmbinary.Osmformat.StringTable

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.