Mercurial > mxd2map
view src/java/de/intevation/mxd/writer/MapScriptWriter.java @ 42:395307e8b7ee
First MapScript Writer that generates valid mapfiles.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 15 Apr 2011 14:14:49 +0200 |
parents | 60ed2164035a |
children | ef7ca23c4233 |
line wrap: on
line source
package de.intevation.mxd.writer; import org.apache.log4j.Logger; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; import javax.xml.xpath.XPathConstants; import java.awt.Color; import edu.umn.gis.mapscript.mapObj; import edu.umn.gis.mapscript.layerObj; import edu.umn.gis.mapscript.classObj; import edu.umn.gis.mapscript.styleObj; import edu.umn.gis.mapscript.colorObj; import edu.umn.gis.mapscript.symbolObj; import edu.umn.gis.mapscript.symbolSetObj; import edu.umn.gis.mapscript.lineObj; import edu.umn.gis.mapscript.pointObj; import edu.umn.gis.mapscript.MS_UNITS; import edu.umn.gis.mapscript.MS_LAYER_TYPE; import edu.umn.gis.mapscript.MS_SYMBOL_TYPE; import de.intevation.mxd.utils.XMLUtils; /** * The MXD file reader. * * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> */ public class MapScriptWriter implements IWriter { private Document root; private mapObj map; private static final Logger logger = Logger.getLogger(MapScriptWriter.class); public MapScriptWriter() { map = new mapObj(""); } public MapScriptWriter(String path) { map = new mapObj(path); } public boolean write(Document doc) { logger.debug("write()"); this.root = doc; //Get the filename. Element fileNode = (Element)XMLUtils.xpath( root, "/mxd/file", XPathConstants.NODE); String filename = fileNode.getAttribute("name"); if(filename.endsWith(".mxd")) { filename = filename.replace(".mxd", ".map"); } //Write the map attributes. writeMap(); //Write the layers. writeLayer(); //Save the map. mapObj cloneMap = map.cloneMap(); cloneMap.save(filename); return true; } private void writeMap() { logger.debug("writeMap()"); //Get the map. Element mapNode = (Element)XMLUtils.xpath( root, "/mxd/map", XPathConstants.NODE); //TODO Get the following values from a template. map.setShapepath("/home/intevation/mxd-testbed/testdata-frida"); map.setHeight(700); map.setWidth(800); map.setProjection("EPSG:4326"); //Set the name. map.setName(mapNode.getAttribute("name")); map.setMetaData("wms_title", mapNode.getAttribute("name")); //Set the extent. map.setExtent( Double.parseDouble(mapNode.getAttribute("extent_min_x")), Double.parseDouble(mapNode.getAttribute("extent_min_y")), Double.parseDouble(mapNode.getAttribute("extent_max_x")), Double.parseDouble(mapNode.getAttribute("extent_max_y"))); //Set the units. String units = mapNode.getAttribute("units"); MS_UNITS msu; if(units.equals("feet")) { msu = MS_UNITS.MS_FEET; } else if(units.equals("inches")) { msu = MS_UNITS.MS_INCHES; } else if(units.equals("kilometers")) { msu = MS_UNITS.MS_KILOMETERS; } else if(units.equals("meters")) { msu = MS_UNITS.MS_METERS; } else if(units.equals("miles")) { msu = MS_UNITS.MS_MILES; } else if(units.equals("nauticalmiles")) { msu = MS_UNITS.MS_NAUTICALMILES; } else if(units.equals("points")) { msu = MS_UNITS.MS_PIXELS; } else { msu = MS_UNITS.MS_DD; } map.setUnits(msu); //TODO: Find out whats the correct scale value. //map.setScaledenom(Double.parseDouble(mapNode.getAttribute("scale"))); } private void writeLayer() { logger.debug("writeLayer()"); Element mapNode = (Element)XMLUtils.xpath( root, "/mxd/map", XPathConstants.NODE); NodeList list = mapNode.getElementsByTagName("layer"); for(int i = 0; i < list.getLength(); i++) { Element layerElement = (Element)list.item(i); layerObj layer = new layerObj(map); //The layer name. layer.setName(layerElement.getAttribute("name")); //The layer status. String stat = layerElement.getAttribute("status"); if (stat.equals("on")) { layer.setStatus(1); } else { layer.setStatus(0); } //The scale. double maxScale = Double.parseDouble(layerElement.getAttribute("max_scale")); double minScale = Double.parseDouble(layerElement.getAttribute("min_scale")); layer.setMaxscaledenom(maxScale); layer.setMinscaledenom(minScale); //The layer type. String type = layerElement.getAttribute("type"); if(type.equals("point")) { layer.setType(MS_LAYER_TYPE.MS_LAYER_POINT); } //The layer datasource. layer.setData(layerElement.getAttribute("data_source")); //Write classes. writeClass(layer, layerElement); } } /** * Adds the classes to the layer. * @param layer Mapscript layer object. * @param layerElement Dom element containing the class attributes. */ private void writeClass(layerObj layer, Element layerElement) { //Get all renderer elements (renderer in arcgis equals class in the //mapfile.) NodeList list = layerElement.getElementsByTagName("renderer"); //Create all found class objects and write the symbols and styles for //each class. for(int i = 0; i < list.getLength(); i++) { Element classElement = (Element)list.item(i); classObj co = new classObj(layer); co.setName(classElement.getAttribute("name")); //Write symbols and styles. writeSymbol(co, classElement); } } /** * Adds teh symbols and styles to the mapfile. * @param co Mapscript class object. * @param classElement Dom element containing the style and symbol * attributes. */ private void writeSymbol(classObj co, Element classElement) { //Get all symbol elements from dom. NodeList list = classElement.getElementsByTagName("symbol"); //Get the symbol set from the map object. symbolSetObj symbolSet = map.getSymbolset(); // for(int i = 0; i < list.getLength(); i++){ Element symbolElement = (Element) list.item(i); styleObj style = new styleObj(co); style.setAngle( Double.parseDouble(symbolElement.getAttribute("angle"))); String c = symbolElement.getAttribute("color"); Color col = Color.decode(c); colorObj color = new colorObj( col.getRed(), col.getGreen(), col.getBlue(), -4); style.setColor(color); style.setSize(Double.parseDouble(symbolElement.getAttribute("size"))); Color oCol = Color.decode( symbolElement.getAttribute("outline_color")); colorObj outlineColor = new colorObj( oCol.getRed(), oCol.getGreen(), oCol.getBlue(), -4); style.setOutlinecolor(outlineColor); style.setOutlinewidth( Double.parseDouble(symbolElement.getAttribute("outline_size"))); style.setSymbolByName(map, symbolElement.getAttribute("name")); symbolObj sym = symbolSet.getSymbolByName(symbolElement.getAttribute("name")); String symType = symbolElement.getAttribute("style"); if(symType.equals("point")) { lineObj points = new lineObj(); points.add(new pointObj(1,1,0)); sym.setType(MS_SYMBOL_TYPE.MS_SYMBOL_ELLIPSE.swigValue()); sym.setPoints(points); sym.setFilled(1); } } saveSymbolSet(symbolSet); } /** * Save the symbol set. * @param */ private void saveSymbolSet(symbolSetObj symbols) { Element fileNode = (Element)XMLUtils.xpath( root, "/mxd/file", XPathConstants.NODE); String filename = fileNode.getAttribute("name"); String path = ""; if(filename.contains("/")) { path = filename.substring(0, filename.lastIndexOf("/")); } else if(filename.contains("\\")) { path = filename.substring(0, filename.lastIndexOf("\\")); } symbols.save(path + "/symbols.sym"); } }