properties = loadProps(args[i + 1]);
lcolor = PropUtils.parseColorFromProperties(properties,
lineColorProperty,
"FF000000");
lineColor = new SColor((short) ((lcolor.getRed()) * 65535 / 255), (short) ((lcolor.getGreen()) * 65535 / 255), (short) ((lcolor.getBlue()) * 65535 / 255));
if (properties.getProperty(fillColorProperty) != null) {
fcolor = PropUtils.parseColorFromProperties(properties,
fillColorProperty,
"FF000000");
fillColor = new SColor((short) ((fcolor.getRed()) * 65535 / 255), (short) ((fcolor.getGreen()) * 65535 / 255), (short) ((fcolor.getBlue()) * 65535 / 255));
}
String ssx = properties.getProperty(spatialIndexProperty);
String shp = properties.getProperty(shapeFileProperty);