use of org.openstreetmap.osmosis.xml.v0_6.FastXmlReader in project voltdb by VoltDB.
the class OSMImport method run.
public void run() {
CompressionMethod compressionMethod = CompressionMethod.None;
Sink sink = new VoltDBOsmSink(config.server);
FastXmlReader fxr = new FastXmlReader(input, false, compressionMethod);
fxr.setSink(sink);
fxr.run();
}
Aggregations