public static class GuiIfc.OsmImportParams
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
double |
eastLon
Eastern-most boundary of the axis-aligned box to import.
|
double |
northLat
Northern-most boundary of the axis-aligned box to import.
|
java.io.File |
selectedFile
java.io.File pointing at the bzipped XML file containing the OSM snapshot data.
|
double |
southLat
Southern-most boundary of the axis-aligned box to import.
|
boolean |
useFixMe
Boolean true indicates that Nodes and Ways tagged with the FIXME attribute should
still be imported, otherwise they will be discarded during the import.
|
double |
westLon
Western-most boundary of the axis-aligned box to import.
|
| Constructor and Description |
|---|
OsmImportParams(java.io.File selectedFile,
boolean useFixMe,
double northLat,
double southLat,
double westLon,
double eastLon)
Constructor for OsmImportParams.
|
public java.io.File selectedFile
public boolean useFixMe
public double northLat
public double southLat
public double westLon
public double eastLon
public OsmImportParams(java.io.File selectedFile,
boolean useFixMe,
double northLat,
double southLat,
double westLon,
double eastLon)
selectedFile - java.io.File pointing at the bzipped XML file containing the OSM snapshot data.useFixMe - Boolean true indicates that Nodes and Ways tagged with the FIXME attribute should
still be imported, otherwise they will be discarded during the import.northLat - Northern-most boundary of the axis-aligned box to import.southLat - Southern-most boundary of the axis-aligned box to import.westLon - Western-most boundary of the axis-aligned box to import.eastLon - Eastern-most boundary of the axis-aligned box to import.