/[schmitzm]/trunk/src/skrueger/geotools/StyledLayerUtil.java
ViewVC logotype

Diff of /trunk/src/skrueger/geotools/StyledLayerUtil.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/src/skrueger/geotools/StyledMapUtil.java revision 2 by mojays, Tue Feb 24 22:43:52 2009 UTC branches/1.0-gt2-2.6/src/skrueger/geotools/StyledLayerUtil.java revision 403 by alfonx, Mon Sep 14 13:29:42 2009 UTC
# Line 1  Line 1 
1  package skrueger.geotools;  /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3  import java.text.DecimalFormat;   *
4  import java.util.Map;   * This file is part of the SCHMITZM library - a collection of utility
5  import java.util.HashMap;   * classes based on Java 1.6, focusing (not only) on Java Swing
6  import java.util.List;   * and the Geotools library.
7  import java.net.URL;   *
8     * The SCHMITZM project is hosted at:
9  import org.geotools.feature.FeatureCollection;   * http://wald.intevation.org/projects/schmitzm/
10  import org.geotools.map.MapLayer;   *
11  import org.geotools.map.DefaultMapLayer;   * This program is free software; you can redistribute it and/or
12  import org.geotools.coverage.grid.GridCoverage2D;   * modify it under the terms of the GNU Lesser General Public License
13  import org.geotools.coverage.grid.io.AbstractGridCoverage2DReader;   * as published by the Free Software Foundation; either version 3
14  import org.geotools.styling.ColorMap;   * of the License, or (at your option) any later version.
15  import org.geotools.styling.ColorMapEntry;   *
16  import org.geotools.styling.Style;   * This program is distributed in the hope that it will be useful,
17     * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  import org.apache.log4j.Logger;   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19     * GNU General Public License for more details.
20  import org.jdom.Element;   *
21  import org.jdom.Document;   * You should have received a copy of the GNU Lesser General Public License (license.txt)
22  import org.jdom.input.SAXBuilder;   * along with this program; if not, write to the Free Software
23  import org.jdom.output.XMLOutputter;   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24     * or try this link: http://www.gnu.org/licenses/lgpl.html
25  import schmitzm.geotools.styling.StylingUtil;   *
26  import skrueger.AttributeMetaData;   * Contributors:
27  import skrueger.RasterLegendData;   *     Martin O. J. Schmitz - initial API and implementation
28  import skrueger.i8n.Translation;   *     Stefan A. Krüger - additional utility classes
29  import schmitzm.io.IOUtil;   ******************************************************************************/
30  import java.io.File;  package skrueger.geotools;
31  import java.io.FileNotFoundException;  
32  import schmitzm.lang.LangUtil;  import java.awt.Color;
33  import schmitzm.swing.SwingUtil;  import java.awt.Dimension;
34    import java.awt.Graphics;
35  import java.io.FileWriter;  import java.awt.Graphics2D;
36    import java.awt.Rectangle;
37  /**  import java.awt.geom.AffineTransform;
38   * This class provides static helper methods for dealing with  import java.awt.image.BufferedImage;
39   * {@link StyledMapInterface} stuff.  import java.awt.image.ColorModel;
40   * @author <a href="mailto:[email protected]">Martin Schmitz</a> (University of Bonn/Germany)  import java.io.File;
41   * @version 1.0  import java.io.FileNotFoundException;
42   */  import java.io.FileWriter;
43  public class StyledMapUtil {  import java.io.IOException;
44    private static final Logger LOGGER = Logger.getLogger(StyledMapUtil.class.getName());  import java.net.URL;
45    private static final SAXBuilder SAX_BUILDER = new SAXBuilder();  import java.text.DecimalFormat;
46    private static final XMLOutputter XML_OUTPUTTER = new XMLOutputter();  import java.util.HashMap;
47    import java.util.List;
48    /** URL for Atlas XML schema */  import java.util.Map;
49    public static final String AMLURI = "http://www.wikisquare.de/AtlasML";  import java.util.SortedMap;
50    /** Name of the XML Element for the attribute meta data map */  import java.util.TreeMap;
51    public static final String ELEM_NAME_AMD = "attributeMetaData";  
52    /** Name of the XML Element for the raster legend data */  import javax.swing.BorderFactory;
53    public static final String ELEM_NAME_RLD = "rasterLegendData";  import javax.swing.Box;
54    /** Name of the XML Element for an attribute meta data map entry */  import javax.swing.BoxLayout;
55    public static final String ELEM_NAME_ATTRIBUTE = "dataAttribute";  import javax.swing.ImageIcon;
56    /** Name of the XML Element for an raster legend data entry */  import javax.swing.JLabel;
57    public static final String ELEM_NAME_RASTERLEGEND = "rasterLegendItem";  
58    /** Name of the XML Element for a translation */  import org.apache.log4j.Logger;
59    public static final String ELEM_NAME_TRANSLATION = "translation";  import org.geotools.coverage.grid.GeneralGridEnvelope;
60    import org.geotools.coverage.grid.GridCoverage2D;
61    /**  import org.geotools.coverage.grid.GridGeometry2D;
62     * Creates a Geotools {@link MapLayer} from an object. If the object is a  import org.geotools.coverage.grid.io.AbstractGridCoverage2DReader;
63     * {@link StyledMapInterface} then its sytle is used. In case of direct  import org.geotools.feature.FeatureCollection;
64     * Geotools objects ({@link GridCoverage2D}, {@link AbstractGridCoverage2DReader},  import org.geotools.gce.imagepyramid.ImagePyramidReader;
65     * {@link FeatureCollection}) a default style is generated.  import org.geotools.geometry.jts.ReferencedEnvelope;
66     * @param object an Object  import org.geotools.map.DefaultMapLayer;
67     * @exception Exception if {@code null} is given as object or an error occurs during layer creation  import org.geotools.map.MapLayer;
68     */  import org.geotools.renderer.lite.gridcoverage2d.GridCoverageRenderer;
69    public static MapLayer createMapLayer(Object object) throws Exception {  import org.geotools.styling.ColorMap;
70      return createMapLayer(object,null);  import org.geotools.styling.ColorMapEntry;
71    }  import org.geotools.styling.FeatureTypeStyle;
72    import org.geotools.styling.RasterSymbolizer;
73    /**  import org.geotools.styling.Rule;
74     * Creates a Geotools {@link MapLayer} from an object. If the object is a  import org.geotools.styling.Style;
75     * {@link StyledMapInterface} then its sytle is used. In case of direct  import org.jdom.Document;
76     * Geotools objects ({@link GridCoverage2D}, {@link AbstractGridCoverage2DReader},  import org.jdom.Element;
77     * {@link FeatureCollection}) a default style is generated.  import org.jdom.input.SAXBuilder;
78     * @param object an Object  import org.jdom.output.XMLOutputter;
79     * @param forcedStyle (SLD-)Style to force for the object  import org.opengis.feature.simple.SimpleFeatureType;
80     * @exception Exception if {@code null} is given as object or an error occurs during layer creation  import org.opengis.parameter.GeneralParameterValue;
81     */  
82    public static MapLayer createMapLayer(Object object, Style forcedStyle) throws Exception {  import schmitzm.geotools.JTSUtil;
83      MapLayer layer     = null;  import schmitzm.geotools.styling.StylingUtil;
84      Style    style     = null;  import schmitzm.io.IOUtil;
85      if ( object instanceof StyledMapInterface ) {  import schmitzm.lang.LangUtil;
86        style =  ((StyledMapInterface<?>)object).getStyle();  import schmitzm.swing.SwingUtil;
87        object = ((StyledMapInterface<?>)object).getGeoObject();  import skrueger.AttributeMetaData;
88      }  import skrueger.RasterLegendData;
89      if ( forcedStyle != null )  import skrueger.i8n.Translation;
90        style = forcedStyle;  
91      if ( style == null )  /**
92        style = StylingUtil.createDefaultStyle(object);   * This class provides static helper methods for dealing with
93     * {@link StyledLayerInterface} stuff.
94      if (object instanceof GridCoverage2D)   *
95        layer = new DefaultMapLayer( (GridCoverage2D) object, style);   * @author <a href="mailto:[email protected]">Martin Schmitz</a>
96      if (object instanceof AbstractGridCoverage2DReader)   *         (University of Bonn/Germany)
97        layer = new DefaultMapLayer( (AbstractGridCoverage2DReader) object, style);   * @version 1.0
98      if (object instanceof FeatureCollection)   */
99        layer = new DefaultMapLayer( (FeatureCollection) object, style);  public class StyledLayerUtil {
100            private static final Logger LOGGER = Logger.getLogger(StyledLayerUtil.class
101      if ( layer == null )                          .getName());
102        throw new Exception("Can not create MapLayer from "+(object == null ? "null" : object.getClass()));          private static final SAXBuilder SAX_BUILDER = new SAXBuilder();
103            private static final XMLOutputter XML_OUTPUTTER = new XMLOutputter();
104      return layer;  
105    }          /** URL for Atlas XML schema */
106            public static final String AMLURI = "http://www.wikisquare.de/AtlasML";
107    /**          /** Name of the XML Element for the attribute meta data map */
108     * Creates an default instance of {@link StyledMapInterface} for a Geotools          public static final String ELEM_NAME_AMD = "attributeMetaData";
109     * object ({@link GridCoverage2D}, {@link FeatureCollection}) with a default          /** Name of the XML Element for the raster legend data */
110     * style.          public static final String ELEM_NAME_RLD = "rasterLegendData";
111     * @param object an Object          /** Name of the XML Element for an attribute meta data map entry */
112     * @param title  title for the object          public static final String ELEM_NAME_ATTRIBUTE = "dataAttribute";
113     * @exception UnsupportedOperationException if {@code null} is given as object or an error occurs during creation          /** Name of the XML Element for an raster legend data entry */
114     */          public static final String ELEM_NAME_RASTERLEGEND = "rasterLegendItem";
115    public static StyledMapInterface<?> createStyledMap(Object object, String title) {          /** Name of the XML Element for a translation */
116       return createStyledMap(object, title, null);          public static final String ELEM_NAME_TRANSLATION = "translation";
117    }  
118            /**
119    /**           * Creates a Geotools {@link MapLayer} from an object. If the object is a
120     * Creates an default instance of {@link StyledMapInterface} for a Geotools           * {@link StyledLayerInterface} then its sytle is used. In case of direct
121     * object ({@link GridCoverage2D}, {@link FeatureCollection}) with a given           * Geotools objects ({@link GridCoverage2D},
122     * style.           * {@link AbstractGridCoverage2DReader}, {@link FeatureCollection}) a
123     * @param object an Object           * default style is generated.
124     * @param title  title for the object           *
125     * @param style  style and meta data for the object           * @param object
126     * @exception UnsupportedOperationException if {@code null} is given as object or an error occurs during creation           *            an Object
127     */           * @exception Exception
128    public static StyledMapInterface<?> createStyledMap(Object object, String title, StyledMapStyle style) {           *                if {@code null} is given as object or an error occurs
129      StyledMapInterface<?> styledObject = null;           *                during layer creation
130             */
131      String id = (title != null) ? title : "defaultID";          public static MapLayer createMapLayer(Object object) throws Exception {
132                    return createMapLayer(object, null);
133      if ( object instanceof GridCoverage2D )          }
134        styledObject = new StyledGridCoverage(  
135            (GridCoverage2D)object,          /**
136            id,           * Creates a Geotools {@link MapLayer} from an object. If the object is a
137            title,           * {@link StyledLayerInterface} then its sytle is used. In case of direct
138            style           * Geotools objects ({@link GridCoverage2D},
139        );           * {@link AbstractGridCoverage2DReader}, {@link FeatureCollection}) a
140      else if ( object instanceof AbstractGridCoverage2DReader )           * default style is generated.
141             styledObject = new StyledGridCoverageReader(           *
142                 (AbstractGridCoverage2DReader)object,           * @param object
143                 id,           *            an Object
144                 title,           * @param forcedStyle
145                 style           *            (SLD-)Style to force for the object
146             );           * @exception Exception
147      else if ( object instanceof FeatureCollection )           *                if {@code null} is given as object or an error occurs
148        styledObject = new StyledFeatureCollection(           *                during layer creation
149            (FeatureCollection)object,           */
150            id,          public static MapLayer createMapLayer(Object object, Style forcedStyle)
151            title,                          throws Exception {
152            style                  MapLayer layer = null;
153        );                  Style style = null;
154                    if (object instanceof StyledLayerInterface) {
155      if ( styledObject == null )                          style = ((StyledLayerInterface<?>) object).getStyle();
156        throw new UnsupportedOperationException("Can not create StyledMapInterface object from "+(object == null ? "null" : object.getClass()));                          object = ((StyledLayerInterface<?>) object).getGeoObject();
157                    }
158      return styledObject;                  if (forcedStyle != null)
159    }                          style = forcedStyle;
160                    if (style == null)
161    /**                          style = StylingUtil.createDefaultStyle(object);
162     * Parses a {@link AttributeMetaData} object from an JDOM-{@link Element}.  
163     * This method works like {@link AMLImport#parseDataAttribute(org.w3c.dom.Node},                  if (object instanceof GridCoverage2D)
164     * but for JDOM.                          layer = new DefaultMapLayer((GridCoverage2D) object, style);
165     * @param element {@link Element} to parse                  if (object instanceof AbstractGridCoverage2DReader)
166     */                          layer = new DefaultMapLayer((AbstractGridCoverage2DReader) object,
167    public static AttributeMetaData parseAttributeMetaData(final Element element) {                                          style);
168      final Integer col = Integer.valueOf(element.getAttributeValue("col"));                  if (object instanceof FeatureCollection)
169      final Boolean visible = Boolean.valueOf(element.getAttributeValue("visible"));                          layer = new DefaultMapLayer((FeatureCollection) object, style);
170      final String unit = element.getAttributeValue("unit");  
171                    if (layer == null)
172      Translation name = new Translation();                          throw new Exception("Can not create MapLayer from "
173      Translation desc = new Translation();                                          + (object == null ? "null" : object.getClass()));
174      for (final Element childElement : (List<Element>)element.getChildren()) {  
175        if (childElement.getName() == null)                  return layer;
176          continue;          }
177    
178        if (childElement.getName().equals("name"))          /**
179          name = parseTranslation(childElement);           * Creates an default instance of {@link StyledLayerInterface} for a
180        else if (childElement.getName().equals("desc"))           * Geotools object ({@link GridCoverage2D}, {@link FeatureCollection}) with
181          desc = parseTranslation(childElement);           * a default style.
182      }           *
183      return new AttributeMetaData(col, visible, name, desc, unit);           * @param object
184    }           *            an Object
185             * @param title
186    /**           *            title for the object
187     * Parses a {@link AttributeMetaData} map from an JDOM-{@link Element}           * @exception UnsupportedOperationException
188     * with {@code <attribute>}-childs.           *                if {@code null} is given as object or an error occurs
189     * @param element {@link Element} to parse           *                during creation
190     */           */
191    public static Map<Integer,AttributeMetaData> parseAttributeMetaDataMap(final Element element) {          public static StyledLayerInterface<?> createStyledLayer(Object object,
192      HashMap<Integer,AttributeMetaData> metaData = new HashMap<Integer,AttributeMetaData>();                          String title) {
193      List<Element> attributesElements = element.getChildren( ELEM_NAME_ATTRIBUTE );                  return createStyledLayer(object, title, null);
194      for (Element attibuteElement : attributesElements)          }
195      {  
196        AttributeMetaData attrMetaData = parseAttributeMetaData( attibuteElement );          /**
197        metaData.put( attrMetaData.getColIdx(), attrMetaData );           * Creates an default instance of {@link StyledLayerInterface} for a
198      }           * Geotools object ({@link GridCoverage2D}, {@link FeatureCollection}) with
199      return metaData;           * a given style.
200    }           *
201             * @param object
202    /**           *            an Object
203     * Loads a {@link AttributeMetaData} object from an URL.           * @param title
204     * @param documentUrl {@link URL} to parse           *            title for the object
205     * @see #parseAttributeMetaData(Element)           * @param style
206     */           *            style and meta data for the object
207    public static Map<Integer,AttributeMetaData> loadAttributeMetaDataMap(final URL documentUrl) throws Exception {           * @exception UnsupportedOperationException
208      Document document = SAX_BUILDER.build(documentUrl);           *                if {@code null} is given as object or an error occurs
209      return parseAttributeMetaDataMap( document.getRootElement() );           *                during creation
210    }           */
211            public static StyledLayerInterface<?> createStyledLayer(Object object,
212    /**                          String title, StyledLayerStyle style) {
213     * Creates an JDOM {@link Element} for the given {@link AttributeMetaData}                  StyledLayerInterface<?> styledLayer = null;
214     * object.  
215     * @param amd meta data for one attribute                  String id = (title != null) ? title : "defaultID";
216     */  
217    public static Element createAttributeMetaDataElement(final AttributeMetaData amd) {                  if (object instanceof GridCoverage2D)
218      final Element element = new Element( ELEM_NAME_ATTRIBUTE , AMLURI);                          styledLayer = new StyledGridCoverage((GridCoverage2D) object, id,
219      element.setAttribute("col", String.valueOf( amd.getColIdx() ) );                                          title, style);
220      element.setAttribute("visible", String.valueOf( amd.isVisible() ) );                  else if (object instanceof AbstractGridCoverage2DReader)
221      element.setAttribute("unit", amd.getUnit() );                          styledLayer = new StyledGridCoverageReader(
222      // Creating a aml:name tag...                                          (AbstractGridCoverage2DReader) object, id, title, style);
223      element.addContent( createTranslationElement("name", amd.getTitle()) );                  else if (object instanceof FeatureCollection)
224      // Creating a aml:desc tag...                          styledLayer = new StyledFeatureCollection(
225      element.addContent( createTranslationElement("desc", amd.getDesc()) );                                          (FeatureCollection) object, id, title, style);
226      return element;  
227    }                  if (styledLayer == null)
228                            throw new UnsupportedOperationException(
229    /**                                          "Can not create StyledLayerInterface object from "
230     * Creates an JDOM {@link Element} for the given {@link AttributeMetaData}                                                          + (object == null ? "null" : object.getClass()));
231     * map.  
232     * @param amdMap map of attribute meta data                  return styledLayer;
233     */          }
234    public static Element createAttributeMetaDataMapElement(final Map<Integer,AttributeMetaData> amdMap) {  
235      final Element element = new Element( ELEM_NAME_AMD , AMLURI);          /**
236      for (AttributeMetaData amd : amdMap.values())           * Return only the visible or invisible entries of an AttributeMetaData-Map.
237        element.addContent( createAttributeMetaDataElement( amd ) );           *
238      return element;           * @param amdMap
239    }           *            AttributeMetaData-Map
240             * @param visible
241    /**           *            indicated whether the visible or invisible entries are
242     * Saves a {@link AttributeMetaData AttributeMetaData-Map} to an URL.           *            returned
243     * @param amdMap map of {@link AttributeMetaData}           */
244     * @param documentUrl {@link URL} to store the XML          public static SortedMap<Integer, AttributeMetaData> getVisibleAttributeMetaData(
245     */                          Map<Integer, AttributeMetaData> amdMap, boolean visible) {
246    public static void saveAttributeMetaDataMap(final Map<Integer,AttributeMetaData> amdMap, final URL documentUrl) throws Exception {                  SortedMap<Integer, AttributeMetaData> filteredMap = new TreeMap<Integer, AttributeMetaData>();
247      // Create XML-Document                  for (AttributeMetaData amd : amdMap.values())
248      final FileWriter out = new FileWriter( new File(documentUrl.toURI()) );                          if (amd.isVisible())
249      XML_OUTPUTTER.output(                                  filteredMap.put(amd.getColIdx(), amd);
250        createAttributeMetaDataMapElement(amdMap),  
251        out                  return filteredMap;
252      );          }
253      out.flush();  
254      out.close();          /**
255    }           * Parses a {@link AttributeMetaData} object from an JDOM-{@link Element}.
256             * This method works like {@link
257             * AMLImport#parseDataAttribute(org.w3c.dom.Node}, but for JDOM.
258             *
259    /**           * @param element
260     * Parses a {@link RasterLegendData} object from an JDOM-{@link Element}.           *            {@link Element} to parse
261     * This method works like {@link AMLImport#parseRasterLegendData(org.w3c.dom.Node},           */
262     * but for JDOM.          public static AttributeMetaData parseAttributeMetaData(final Element element) {
263     * @param element {@link Element} to parse                  final Integer col = Integer.valueOf(element.getAttributeValue("col"));
264     */                  final Boolean visible = Boolean.valueOf(element
265    public static RasterLegendData parseRasterLegendData(Element element) {                                  .getAttributeValue("visible"));
266                    final String unit = element.getAttributeValue("unit");
267      final boolean paintGaps = Boolean.valueOf( element.getAttributeValue("paintGaps") );  
268                    Translation name = new Translation();
269      RasterLegendData rld = new RasterLegendData(paintGaps);                  Translation desc = new Translation();
270                    for (final Element childElement : (List<Element>) element.getChildren()) {
271      for ( Element childElement : (List<Element>)element.getChildren() ) {                          if (childElement.getName() == null)
272        final String name = childElement.getName();                                  continue;
273        // Cancel if it's an attribute  
274        if ( childElement.getChildren().size() == 0 )                          if (childElement.getName().equals("name"))
275          continue;                                  name = parseTranslation(childElement);
276                            else if (childElement.getName().equals("desc"))
277        if (name.equals( ELEM_NAME_RASTERLEGEND )) {                                  desc = parseTranslation(childElement);
278          final String valueAttr = childElement.getAttributeValue("value");                  }
279          if ( valueAttr == null )                  return new AttributeMetaData(col, visible, name, desc, unit);
280            throw new UnsupportedOperationException("Attribute 'value' missing for definition of <"+ELEM_NAME_RASTERLEGEND+">");          }
281          final double value = Double.valueOf(valueAttr);  
282            /**
283          // first and only item should be the label           * Parses a {@link AttributeMetaData} map from an JDOM-{@link Element} with
284          final Element labelElement = childElement.getChild("label");           * {@code <attribute>}-childs.
285          // id label element is missing, the translation is searched directly           *
286          // as childs of the rasterLegendItem element           * @param element
287          Translation label = parseTranslation( labelElement != null ? labelElement : childElement );           *            {@link Element} to parse
288          rld.put(value, label);           */
289        }          public static Map<Integer, AttributeMetaData> parseAttributeMetaDataMap(
290      }                          final Element element) {
291                    HashMap<Integer, AttributeMetaData> metaData = new HashMap<Integer, AttributeMetaData>();
292      return rld;                  List<Element> attributesElements = element
293    }                                  .getChildren(ELEM_NAME_ATTRIBUTE);
294                    for (Element attibuteElement : attributesElements) {
295    /**                          AttributeMetaData attrMetaData = parseAttributeMetaData(attibuteElement);
296     * Loads a {@link RasterLegendData} object from an URL.                          metaData.put(attrMetaData.getColIdx(), attrMetaData);
297     * @param documentUrl {@link URL} to parse                  }
298     * @see #parseAttributeMetaData(Element)                  return metaData;
299     */          }
300    public static RasterLegendData loadRasterLegendData(final URL documentUrl) throws Exception {  
301      Document document = SAX_BUILDER.build(documentUrl);          /**
302      return parseRasterLegendData( document.getRootElement() );           * Loads a {@link AttributeMetaData} object from an URL.
303    }           *
304             * @param documentUrl
305   /**           *            {@link URL} to parse
306     * Creates an JDOM {@link Element} for the given {@link RasterLegendData}           * @see #parseAttributeMetaData(Element)
307     * map.           */
308     * @param rld raster legend data          public static Map<Integer, AttributeMetaData> loadAttributeMetaDataMap(
309     */                          final URL documentUrl) throws Exception {
310    public static Element createRasterLegendDataElement(final RasterLegendData rld) {                  Document document = SAX_BUILDER.build(documentUrl);
311      final Element element = new Element( ELEM_NAME_RLD , AMLURI);                  return parseAttributeMetaDataMap(document.getRootElement());
312      element.setAttribute("paintGaps", rld.isPaintGaps().toString());          }
313      for (Double key : rld.getSortedKeys()) {  
314        Element item = new Element( ELEM_NAME_RASTERLEGEND, AMLURI);          /**
315        item.setAttribute("value", key.toString());           * Creates an JDOM {@link Element} for the given {@link AttributeMetaData}
316        item.addContent( createTranslationElement("label", rld.get(key)) );           * object.
317        element.addContent(item);           *
318      }           * @param amd
319      return element;           *            meta data for one attribute
320    }           */
321            public static Element createAttributeMetaDataElement(
322    /**                          final AttributeMetaData amd) {
323     * Creates {@link RasterLegendData} from a {@link ColorMap}.                  final Element element = new Element(ELEM_NAME_ATTRIBUTE, AMLURI);
324     * @param colorMap  a color map                  element.setAttribute("col", String.valueOf(amd.getColIdx()));
325     * @param paintGaps indicated whether gaps are painted between the legend items                  element.setAttribute("visible", String.valueOf(amd.isVisible()));
326     * @param digits    number of digits the grid value classes (and legend) are                  element.setAttribute("unit", amd.getUnit());
327     *                  rounded to (null means no round; >= 0 means digits after comma;                  // Creating a aml:name tag...
328     *                  < 0 means digits before comma)    */                  element.addContent(createTranslationElement("name", amd.getTitle()));
329    public static RasterLegendData generateRasterLegendData(ColorMap colorMap, boolean paintGaps, Integer digits) {                  // Creating a aml:desc tag...
330      DecimalFormat    decFormat = digits != null ? new DecimalFormat( SwingUtil.getNumberFormatPattern(digits) ) : null;                  element.addContent(createTranslationElement("desc", amd.getDesc()));
331      RasterLegendData rld       = new RasterLegendData(paintGaps);                  return element;
332      for (ColorMapEntry cme : colorMap.getColorMapEntries())          }
333      {  
334        double value = StylingUtil.getQuantityFromColorMapEntry(cme);          /**
335        String label = cme.getLabel();           * Creates an JDOM {@link Element} for the given {@link AttributeMetaData}
336        // if no label is set (e.g. quantitative style),           * map.
337        // use the value as label           *
338        if ( label == null || label.equals("") )           * @param amdMap
339          if ( digits == null )           *            map of attribute meta data
340            label = String.valueOf(value);           */
341          else          public static Element createAttributeMetaDataMapElement(
342            label = decFormat.format( LangUtil.round(value, digits) );                          final Map<Integer, AttributeMetaData> amdMap) {
343        rld.put( value, new Translation("   "+label) );                  final Element element = new Element(ELEM_NAME_AMD, AMLURI);
344      }                  for (AttributeMetaData amd : amdMap.values())
345      return rld;                          element.addContent(createAttributeMetaDataElement(amd));
346    }                  return element;
347            }
348    /**  
349     * Creates {@link RasterLegendData} from the {@link ColorMap} of a style.          /**
350     * @param style     a raster style (must contain a  {@link RasterSymbolizer})           * Saves a {@link AttributeMetaData AttributeMetaData-Map} to an URL.
351     * @param paintGaps indicated whether gaps are painted between the legend items           *
352     * @param digits    number of digits the grid value classes (and legend) are           * @param amdMap
353     *                  rounded to (null means no round; >= 0 means digits after comma;           *            map of {@link AttributeMetaData}
354     *                  < 0 means digits before comma)    */           * @param documentUrl
355    public static RasterLegendData generateRasterLegendData(Style style, boolean paintGaps, Integer digits) {           *            {@link URL} to store the XML
356      ColorMap colorMap = StylingUtil.getColorMapFromStyle(style);           */
357      if ( colorMap == null)          public static void saveAttributeMetaDataMap(
358        throw new IllegalArgumentException("Color map can not be determined from style!");                          final Map<Integer, AttributeMetaData> amdMap, final URL documentUrl)
359      return generateRasterLegendData(colorMap, paintGaps, digits);                          throws Exception {
360    }                  // Create XML-Document
361                    final FileWriter out = new FileWriter(new File(documentUrl.toURI()));
362    /**                  XML_OUTPUTTER.output(createAttributeMetaDataMapElement(amdMap), out);
363     * Saves a {@link RasterLegendData} to an URL.                  out.flush();
364     * @param rld raster legend data                  out.close();
365     * @param documentUrl {@link URL} to store the XML          }
366     */  
367    public static void saveRasterLegendData(final RasterLegendData rld, final URL documentUrl) throws Exception {          /**
368      // Create XML-Document           * Parses a {@link RasterLegendData} object from an JDOM-{@link Element}.
369      final FileWriter out = new FileWriter( new File(documentUrl.toURI()) );           * This method works like {@link
370      XML_OUTPUTTER.output(           * AMLImport#parseRasterLegendData(org.w3c.dom.Node}, but for JDOM.
371        createRasterLegendDataElement(rld),           *
372        out           * @param element
373      );           *            {@link Element} to parse
374      out.flush();           */
375      out.close();          public static RasterLegendData parseRasterLegendData(Element element) {
376    }  
377                    final boolean paintGaps = Boolean.valueOf(element
378    /**                                  .getAttributeValue("paintGaps"));
379     * Parses a {@link Translation} object from an JDOM-{@link Element}.  
380     * This method works like {@link AMLImport#parseTranslation(org.w3c.dom.Node},                  RasterLegendData rld = new RasterLegendData(paintGaps);
381     * but for JDOM.  
382     * @param element {@link Element} to parse                  for (Element childElement : (List<Element>) element.getChildren()) {
383     */                          final String name = childElement.getName();
384    public final static Translation parseTranslation(final Element element) {                          // Cancel if it's an attribute
385      Translation trans = new Translation();                          if (childElement.getChildren().size() == 0)
386                                    continue;
387      if (element == null)  
388       return trans;                          if (name.equals(ELEM_NAME_RASTERLEGEND)) {
389                                    final String valueAttr = childElement
390      for (final Element translationElement : (List<Element>)element.getChildren()) {                                                  .getAttributeValue("value");
391        final String name = translationElement.getName();                                  if (valueAttr == null)
392        if (name == null)                                          throw new UnsupportedOperationException(
393          continue;                                                          "Attribute 'value' missing for definition of <"
394                                                                            + ELEM_NAME_RASTERLEGEND + ">");
395        // lang attribute                                  final double value = Double.valueOf(valueAttr);
396        String lang = translationElement.getAttributeValue("lang");  
397        // set the default, if no language code is set                                  // first and only item should be the label
398        if ( lang == null )                                  final Element labelElement = childElement.getChild("label");
399          lang = Translation.DEFAULT_KEY;                                  // id label element is missing, the translation is searched
400                                    // directly
401        final String translationText = translationElement.getValue();                                  // as childs of the rasterLegendItem element
402        if (translationText == null)                                  Translation label = parseTranslation(labelElement != null ? labelElement
403          trans.put(lang, "");                                                  : childElement);
404        else                                  rld.put(value, label);
405          trans.put(lang, translationText);                          }
406      }                  }
407    
408      // if no <translation> is given, the value of the node should                  return rld;
409      // be used as a default translation          }
410      if (trans.size() == 0)  
411        trans.put( Translation.DEFAULT_KEY, element.getValue() );          /**
412      //     trans = new Translation( ((List<Element>)element.getChildren()).get(0).getValue() );           * Loads a {@link RasterLegendData} object from an URL.
413             *
414      return trans;           * @param documentUrl
415    }           *            {@link URL} to parse
416             * @see #parseAttributeMetaData(Element)
417    /**           */
418     * Creates an JDOM {@link Element} for the given {@link Translation}.          public static RasterLegendData loadRasterLegendData(final URL documentUrl)
419     * @param tagname Name of the Element                          throws Exception {
420     * @param translation Translation to store in the Element                  Document document = SAX_BUILDER.build(documentUrl);
421     */                  return parseRasterLegendData(document.getRootElement());
422    public final static Element createTranslationElement(String tagname, Translation translation) {          }
423      Element element = new Element(tagname, AMLURI);  
424      if ( translation == null )          /**
425        throw new UnsupportedOperationException("Translation element can not be created from null!");           * Creates an JDOM {@link Element} for the given {@link RasterLegendData}
426             * map.
427      // If only a default translation is set, the <translation lang="..">..</tranlation>           *
428      // part is not used           * @param rld
429      if (translation.keySet().size() == 1 && translation.get(Translation.DEFAULT_KEY) != null) {           *            raster legend data
430        element.addContent( translation.get(Translation.DEFAULT_KEY) );           */
431        return element;          public static Element createRasterLegendDataElement(
432      }                          final RasterLegendData rld) {
433                    final Element element = new Element(ELEM_NAME_RLD, AMLURI);
434      // add a <translation lang="..">..</tranlation> part to the element for                  element.setAttribute("paintGaps", rld.isPaintGaps().toString());
435      // all languages                  for (Double key : rld.getSortedKeys()) {
436      for (String lang : translation.keySet()) {                          Element item = new Element(ELEM_NAME_RASTERLEGEND, AMLURI);
437        Element translationElement = new Element( ELEM_NAME_TRANSLATION , AMLURI);                          item.setAttribute("value", key.toString());
438        translationElement.setAttribute("lang", lang);                          item.addContent(createTranslationElement("label", rld.get(key)));
439        String translationString = translation.get(lang);                          element.addContent(item);
440        if (translationString == null)                  }
441         translationString = "";                  return element;
442        translationElement.addContent( translationString );          }
443        element.addContent(translationElement);  
444      }          /**
445             * Creates {@link RasterLegendData} from a {@link ColorMap}.
446      return element;           *
447    }           * @param colorMap
448             *            a color map
449             * @param paintGaps
450    /**           *            indicated whether gaps are painted between the legend items
451     * Sets a style to {@link StyledMapInterface}.           * @param digits
452     * @param styledObject a styled object           *            number of digits the grid value classes (and legend) are
453     * @param style a Style           *            rounded to (null means no round; >= 0 means digits after
454     */           *            comma; < 0 means digits before comma)
455    public static void setStyledMapStyle(StyledMapInterface styledObject, StyledMapStyle<?> style) {           */
456      // set SLD style          public static RasterLegendData generateRasterLegendData(ColorMap colorMap,
457      styledObject.setStyle( style.getGeoObjectStyle() );                          boolean paintGaps, Integer digits) {
458      // set meta data                  DecimalFormat decFormat = digits != null ? new DecimalFormat(SwingUtil
459      if ( styledObject        instanceof StyledGridCoverageInterface &&                                  .getNumberFormatPattern(digits)) : null;
460           (style.getMetaData() instanceof RasterLegendData || style.getMetaData() == null) ) {                  RasterLegendData rld = new RasterLegendData(paintGaps);
461        RasterLegendData sourceRld = (RasterLegendData)style.getMetaData();                  for (ColorMapEntry cme : colorMap.getColorMapEntries()) {
462        RasterLegendData destRld = ((StyledGridCoverageInterface)styledObject).getLegendMetaData();                          double value = StylingUtil.getQuantityFromColorMapEntry(cme);
463        if ( destRld != null && sourceRld != null ) {                          String label = cme.getLabel();
464          destRld.setPaintGaps(sourceRld.isPaintGaps());                          // if no label is set (e.g. quantitative style),
465          destRld.clear();                          // use the value as label
466          destRld.putAll( sourceRld );                          if (label == null || label.equals(""))
467        }                                  if (digits == null)
468        return;                                          label = String.valueOf(value);
469      }                                  else
470      if ( styledObject        instanceof StyledFeatureCollectionInterface &&                                          label = decFormat.format(LangUtil.round(value, digits));
471           (style.getMetaData() instanceof Map || style.getMetaData() == null) ) {                          rld.put(value, new Translation("   " + label));
472        Map<Integer, AttributeMetaData> sourceAmd = (Map<Integer, AttributeMetaData>)style.getMetaData();                  }
473        Map<Integer, AttributeMetaData> destAmd   = ((StyledFeatureCollectionInterface)styledObject).getAttributeMetaDataMap();                  return rld;
474        if ( destAmd != null && sourceAmd != null ) {          }
475          destAmd.clear();  
476          destAmd.putAll( sourceAmd );          /**
477        }           * Creates {@link RasterLegendData} from the {@link ColorMap} of a style.
478        return;           *
479      }           * @param style
480             *            a raster style (must contain a {@link RasterSymbolizer})
481      throw new UnsupportedOperationException("Style is not compatible to object: " +           * @param paintGaps
482                                              (style.getMetaData() == null ? null : style.getMetaData().getClass().getSimpleName()) +           *            indicated whether gaps are painted between the legend items
483                                              " <-> " +           * @param digits
484                                              (styledObject == null ? null : styledObject.getClass().getSimpleName()));           *            number of digits the grid value classes (and legend) are
485    }           *            rounded to (null means no round; >= 0 means digits after
486             *            comma; < 0 means digits before comma)
487    /**           */
488     * Returns the style a {@link StyledMapInterface} as a {@link StyledMapStyle}.          public static RasterLegendData generateRasterLegendData(Style style,
489     * @param styledObject a styled object                          boolean paintGaps, Integer digits) {
490     * @return {@code StyledMapStyle<RasterLegendData>} for {@link StyledGridCoverageInterface}                  ColorMap colorMap = StylingUtil.getColorMapFromStyle(style);
491     *         or {@code StyledMapStyle<Map<Integer,AttributeMetaData>>} for                  if (colorMap == null)
492     *         {@link StyledFeatureCollectionInterface}                          throw new IllegalArgumentException(
493     */                                          "Color map can not be determined from style!");
494    public static StyledMapStyle<?> getStyledMapStyle(StyledMapInterface styledObject) {                  return generateRasterLegendData(colorMap, paintGaps, digits);
495      if ( styledObject instanceof StyledGridCoverageInterface )          }
496        return getStyledMapStyle( (StyledGridCoverageInterface)styledObject );  
497      if ( styledObject instanceof StyledFeatureCollectionInterface )          /**
498        return getStyledMapStyle( (StyledFeatureCollectionInterface)styledObject );           * Saves a {@link RasterLegendData} to an URL.
499      throw new UnsupportedOperationException("Unknown type of StyledMapInterface: "+(styledObject == null ? null : styledObject.getClass().getSimpleName()));           *
500    }           * @param rld
501             *            raster legend data
502    /**           * @param documentUrl
503     * Returns the style and raster meta data of a {@link StyledGridCoverageInterface}           *            {@link URL} to store the XML
504     * as a {@link StyledMapStyle}.           */
505     * @param styledGC a styled grid coverage          public static void saveRasterLegendData(final RasterLegendData rld,
506     */                          final URL documentUrl) throws Exception {
507    public static StyledMapStyle<RasterLegendData> getStyledMapStyle(StyledGridCoverageInterface styledGC) {                  // Create XML-Document
508      return new StyledMapStyle<RasterLegendData>(                  final FileWriter out = new FileWriter(new File(documentUrl.toURI()));
509        styledGC.getStyle(),                  XML_OUTPUTTER.output(createRasterLegendDataElement(rld), out);
510        styledGC.getLegendMetaData()                  out.flush();
511      );                  out.close();
512    }          }
513    
514    /**          /**
515     * Returns the style and attribute meta data of a {@link StyledFeatureCollectionInterface}           * Parses a {@link Translation} object from an JDOM-{@link Element}. This
516     * as a {@link StyledMapStyle}.           * method works like {@link AMLImport#parseTranslation(org.w3c.dom.Node},
517     * @param styledFC a styled feature collection           * but for JDOM.
518     */           *
519    public static StyledMapStyle<Map<Integer,AttributeMetaData>> getStyledMapStyle(StyledFeatureCollectionInterface styledFC) {           * @param element
520      return new StyledMapStyle<Map<Integer,AttributeMetaData>>(           *            {@link Element} to parse
521        styledFC.getStyle(),           */
522        styledFC.getAttributeMetaDataMap()          public final static Translation parseTranslation(final Element element) {
523      );                  Translation trans = new Translation();
524    }  
525                    if (element == null)
526    /**                          return trans;
527     * Loads a {@linkplain Style SLD-Style} and {@linkplain RasterLegendData Raster-LegendData}  
528     * for a given geo-object (raster) source. The SLD file must be present. A missing                  for (final Element translationElement : (List<Element>) element
529     * raster legend-data file is tolerated.                                  .getChildren()) {
530     * @param geoObjectURL URL of the (already read) raster object                          final String name = translationElement.getName();
531     * @param sldExt file extention for the SLD file                          if (name == null)
532     * @param rldExt file extention for the raster legend-data file                                  continue;
533     * @return {@code null} in case of any error  
534     */                          // lang attribute
535    public static StyledMapStyle<RasterLegendData> loadStyledRasterStyle(URL geoObjectURL, String sldExt, String rldExt) {                          String lang = translationElement.getAttributeValue("lang");
536      RasterLegendData metaData = null;                          // set the default, if no language code is set
537      Style sldStyle = null;                          if (lang == null)
538      try {                                  lang = Translation.DEFAULT_KEY;
539        Style[] styles = StylingUtil.loadSLD(IOUtil.changeUrlExt(geoObjectURL, sldExt));  
540        // SLD must be present                          final String translationText = translationElement.getValue();
541        if ( styles == null || styles.length == 0 )                          if (translationText == null)
542          return null;                                  trans.put(lang, "");
543        sldStyle = styles[0];                          else
544      }                                  trans.put(lang, translationText);
545      catch (Exception err) {                  }
546        // SLD must be present  
547        LangUtil.logDebugError(LOGGER,err);                  // if no <translation> is given, the value of the node should
548        return null;                  // be used as a default translation
549      }                  if (trans.size() == 0)
550                            trans.put(Translation.DEFAULT_KEY, element.getValue());
551      try {                  // trans = new Translation(
552        metaData = StyledMapUtil.loadRasterLegendData( IOUtil.changeUrlExt(geoObjectURL,rldExt) );                  // ((List<Element>)element.getChildren()).get(0).getValue() );
553      } catch (FileNotFoundException err) {  
554        // ignore missing raster legend data                  return trans;
555      } catch (Exception err) {          }
556        // any other error during legend data creation leads to error  
557        LangUtil.logDebugError(LOGGER,err);          /**
558        return null;           * Creates an JDOM {@link Element} for the given {@link Translation}.
559      }           *
560      return new StyledMapStyle<RasterLegendData>(sldStyle, metaData);           * @param tagname
561    }           *            Name of the Element
562             * @param translation
563    /**           *            Translation to store in the Element
564     * Loads a {@linkplain Style SLD-Style} from a {@code .sld} file and           */
565     * {@linkplain RasterLegendData Raster-LegendData} from a {@code .rld} file          public final static Element createTranslationElement(String tagname,
566     * for a given geo-object (raster) source. The SLD file must be present. A missing                          Translation translation) {
567     * raster legend-data file is tolerated.                  Element element = new Element(tagname, AMLURI);
568     * @param geoObjectURL URL of the (already read) raster object                  if (translation == null)
569     * @param sldExt file extention for the SLD file                          throw new UnsupportedOperationException(
570     * @param rldExt file extention for the raster legend-data file                                          "Translation element can not be created from null!");
571     * @return {@code null} in case of any error  
572     */                  // If only a default translation is set, the <translation
573    public static StyledMapStyle<RasterLegendData> loadStyledRasterStyle(URL geoObjectURL) {                  // lang="..">..</tranlation>
574      return loadStyledRasterStyle(geoObjectURL, "sld", "rld");                  // part is not used
575    }                  if (translation.keySet().size() == 1
576                                    && translation.get(Translation.DEFAULT_KEY) != null) {
577    /**                          element.addContent(translation.get(Translation.DEFAULT_KEY));
578     * Loads a {@linkplain Style SLD-Style} and a {@linkplain AttributeMetaData AttributeMetaData-Map}                          return element;
579     * for a given geo-object (feature) source. The SLD file must be present. A missing                  }
580     * attribute meta-data file is tolerated.  
581     * @param geoObjectURL URL of the (already read) feature object                  // add a <translation lang="..">..</tranlation> part to the element for
582     * @param sldExt file extention for the SLD file                  // all languages
583     * @param rldExt file extention for the raster legend-data file                  for (String lang : translation.keySet()) {
584     * @return {@code null} in case of any error                          Element translationElement = new Element(ELEM_NAME_TRANSLATION,
585     */                                          AMLURI);
586    public static StyledMapStyle<Map<Integer,AttributeMetaData>> loadStyledFeatureStyle(URL geoObjectURL, String sldExt, String rldExt) {                          translationElement.setAttribute("lang", lang);
587      Map<Integer,AttributeMetaData> metaData = null;                          String translationString = translation.get(lang);
588      Style                          sldStyle = null;                          if (translationString == null)
589      try {                                  translationString = "";
590        Style[] styles = StylingUtil.loadSLD(IOUtil.changeUrlExt(geoObjectURL, sldExt));                          translationElement.addContent(translationString);
591        // SLD must be present                          element.addContent(translationElement);
592        if ( styles == null || styles.length == 0 )                  }
593          return null;  
594        sldStyle = styles[0];                  return element;
595      } catch (Exception err) {          }
596        // SLD must be present  
597        LangUtil.logDebugError(LOGGER,err);          /**
598        return null;           * Sets a style to {@link StyledLayerInterface}.
599      }           *
600             * @param styledObject
601      try {           *            a styled object
602        metaData = StyledMapUtil.loadAttributeMetaDataMap( IOUtil.changeUrlExt(geoObjectURL,rldExt) );           * @param style
603      } catch (FileNotFoundException err) {           *            a Style
604        // ignore missing attribute meta data           */
605      } catch (Exception err) {          public static void setStyledLayerStyle(StyledLayerInterface styledObject,
606        // any other error during meta data creation leads to error                          StyledLayerStyle<?> style) {
607        LangUtil.logDebugError(LOGGER,err);                  // set SLD style
608        return null;                  styledObject.setStyle(style.getGeoObjectStyle());
609      }                  // set meta data
610                    if (styledObject instanceof StyledGridCoverageInterface
611      return new StyledMapStyle<Map<Integer,AttributeMetaData>>(sldStyle, metaData);                                  && (style.getMetaData() instanceof RasterLegendData || style
612    }                                                  .getMetaData() == null)) {
613                            RasterLegendData sourceRld = (RasterLegendData) style.getMetaData();
614    /**                          RasterLegendData destRld = ((StyledGridCoverageInterface) styledObject)
615     * Loads a {@linkplain Style SLD-Style} from a {@code .sld} file and                                          .getLegendMetaData();
616     * {@linkplain AttributeMetaData AttributeMetaData-Map} from a {@code .amd} file                          if (destRld != null && sourceRld != null) {
617     * for a given geo-object (feature) source. The SLD file must be present. A missing                                  destRld.setPaintGaps(sourceRld.isPaintGaps());
618     * attribute meta-data file is tolerated.                                  destRld.clear();
619     * @param geoObjectURL URL of the (already read) feature object                                  destRld.putAll(sourceRld);
620     * @param sldExt file extention for the SLD file                          }
621     * @param rldExt file extention for the raster legend-data file                          return;
622     * @return {@code null} in case of any error                  }
623     */                  if (styledObject instanceof StyledFeatureCollectionInterface
624    public static StyledMapStyle<Map<Integer,AttributeMetaData>> loadStyledFeatureStyle(URL geoObjectURL) {                                  && (style.getMetaData() instanceof Map || style.getMetaData() == null)) {
625      return loadStyledFeatureStyle(geoObjectURL, "sld", "amd");                          Map<Integer, AttributeMetaData> sourceAmd = (Map<Integer, AttributeMetaData>) style
626    }                                          .getMetaData();
627                            Map<Integer, AttributeMetaData> destAmd = ((StyledFeatureCollectionInterface) styledObject)
628    /**                                          .getAttributeMetaDataMap();
629     * Stores a {@linkplain Style SLD-Style} and {@linkplain RasterLegendData Raster-LegendData}                          if (destAmd != null && sourceAmd != null) {
630     * for a given geo-object (raster) source.                                  destAmd.clear();
631     * @param style  style to save                                  destAmd.putAll(sourceAmd);
632     * @param geoObjectURL URL of the raster object                          }
633     * @param sldExt file extention for the SLD file                          return;
634     * @param mdExt file extention for the meta-data file                  }
635     */  
636    public static <T> void saveStyledMapStyle(StyledMapStyle<T> style, URL geoObjectURL, String sldExt, String mdExt) throws Exception {                  throw new UnsupportedOperationException(
637      // Store the SLD                                  "Style is not compatible to object: "
638      Style sldStyle = style.getGeoObjectStyle();                                                  + (style.getMetaData() == null ? null : style
639      if ( sldStyle != null ) {                                                                  .getMetaData().getClass().getSimpleName())
640        StylingUtil.saveStyleToSLD(                                                  + " <-> "
641           sldStyle,                                                  + (styledObject == null ? null : styledObject
642           IOUtil.changeFileExt(                                                                  .getClass().getSimpleName()));
643                new File(geoObjectURL.toURI()),          }
644                sldExt  
645           )          /**
646        );           * Returns the style a {@link StyledLayerInterface} as a
647      }           * {@link StyledLayerStyle}.
648             *
649      // Store the meta data           * @param styledObject
650      T metaData = style.getMetaData();           *            a styled object
651      if ( metaData != null ) {           * @return {@code StyledLayerStyle<RasterLegendData>} for
652        if ( metaData instanceof RasterLegendData ) {           *         {@link StyledGridCoverageInterface} or {@code
653          saveRasterLegendData(           *         StyledLayerStyle<Map<Integer,AttributeMetaData>>} for
654              (RasterLegendData)metaData,           *         {@link StyledFeatureCollectionInterface}
655              IOUtil.changeUrlExt(geoObjectURL,mdExt)           */
656          );          public static StyledLayerStyle<?> getStyledLayerStyle(
657  //      } else if ( metaData instanceof Map<Integer,AttributeMetaData> ) { // LEIDER NICHT KOMPILIERBAR!!                          StyledLayerInterface styledObject) {
658        } else if ( metaData instanceof Map ) {                  if (styledObject instanceof StyledGridCoverageInterface)
659          saveAttributeMetaDataMap(                          return getStyledLayerStyle((StyledGridCoverageInterface) styledObject);
660              (Map<Integer,AttributeMetaData>)metaData,                  if (styledObject instanceof StyledFeatureCollectionInterface)
661              IOUtil.changeUrlExt(geoObjectURL,mdExt)                          return getStyledLayerStyle((StyledFeatureCollectionInterface) styledObject);
662          );                  throw new UnsupportedOperationException(
663        } else                                  "Unknown type of StyledLayerInterface: "
664          throw new UnsupportedOperationException("Export for meta data not yet supported: "+metaData.getClass().getSimpleName());                                                  + (styledObject == null ? null : styledObject
665      }                                                                  .getClass().getSimpleName()));
666    }          }
667    
668    /**          /**
669     * Stores the {@linkplain Style SLD-Style} to a {@code .sld} file and           * Returns the style and raster meta data of a
670     * the meta data ({@link RasterLegendData} or {@link AttributeMetaData})           * {@link StyledGridCoverageInterface} as a {@link StyledLayerStyle}.
671     * to a {@code .rld} or {@code .amd} file.           *
672     * for a given geo-object source.           * @param styledGC
673     * @param style  style to save           *            a styled grid coverage
674     * @param geoObjectURL URL of the (already read) raster object           */
675     */          public static StyledLayerStyle<RasterLegendData> getStyledLayerStyle(
676    public static void saveStyledMapStyle(StyledMapStyle<?> style, URL geoObjectURL) throws Exception {                          StyledGridCoverageInterface styledGC) {
677      if ( style.getMetaData() instanceof RasterLegendData )                  return new StyledLayerStyle<RasterLegendData>(styledGC.getStyle(),
678        saveStyledMapStyle(style,geoObjectURL, "sld", "rld");                                  styledGC.getLegendMetaData());
679      else          }
680        saveStyledMapStyle(style,geoObjectURL, "sld", "amd");  
681    }          /**
682             * Returns the style and attribute meta data of a
683  }           * {@link StyledFeatureCollectionInterface} as a {@link StyledLayerStyle}.
684             *
685             * @param styledFC
686             *            a styled feature collection
687             */
688            public static StyledLayerStyle<Map<Integer, AttributeMetaData>> getStyledLayerStyle(
689                            StyledFeatureCollectionInterface styledFC) {
690                    return new StyledLayerStyle<Map<Integer, AttributeMetaData>>(styledFC
691                                    .getStyle(), styledFC.getAttributeMetaDataMap());
692            }
693    
694            /**
695             * Loads a {@linkplain Style SLD-Style} and {@linkplain RasterLegendData
696             * Raster-LegendData} for a given geo-object (raster) source. The SLD file
697             * must be present. A missing raster legend-data file is tolerated.
698             *
699             * @param geoObjectURL
700             *            URL of the (already read) raster object
701             * @param sldExt
702             *            file extention for the SLD file
703             * @param rldExt
704             *            file extention for the raster legend-data file
705             * @return {@code null} in case of any error
706             */
707            public static StyledLayerStyle<RasterLegendData> loadStyledRasterStyle(
708                            URL geoObjectURL, String sldExt, String rldExt) {
709                    RasterLegendData metaData = null;
710                    Style sldStyle = null;
711                    try {
712                            Style[] styles = StylingUtil.loadSLD(IOUtil.changeUrlExt(
713                                            geoObjectURL, sldExt));
714                            // SLD must be present
715                            if (styles == null || styles.length == 0)
716                                    return null;
717                            sldStyle = styles[0];
718                    } catch (Exception err) {
719                            // SLD must be present
720                            LangUtil.logDebugError(LOGGER, err);
721                            return null;
722                    }
723    
724                    try {
725                            metaData = StyledLayerUtil.loadRasterLegendData(IOUtil
726                                            .changeUrlExt(geoObjectURL, rldExt));
727                    } catch (FileNotFoundException err) {
728                            // ignore missing raster legend data
729                    } catch (Exception err) {
730                            // any other error during legend data creation leads to error
731                            LangUtil.logDebugError(LOGGER, err);
732                            return null;
733                    }
734                    return new StyledLayerStyle<RasterLegendData>(sldStyle, metaData);
735            }
736    
737            /**
738             * Loads a {@linkplain Style SLD-Style} from a {@code .sld} file and
739             * {@linkplain RasterLegendData Raster-LegendData} from a {@code .rld} file
740             * for a given geo-object (raster) source. The SLD file must be present. A
741             * missing raster legend-data file is tolerated.
742             *
743             * @param geoObjectURL
744             *            URL of the (already read) raster object
745             * @param sldExt
746             *            file extention for the SLD file
747             * @param rldExt
748             *            file extention for the raster legend-data file
749             * @return {@code null} in case of any error
750             */
751            public static StyledLayerStyle<RasterLegendData> loadStyledRasterStyle(
752                            URL geoObjectURL) {
753                    return loadStyledRasterStyle(geoObjectURL, "sld", "rld");
754            }
755    
756            /**
757             * Loads a {@linkplain Style SLD-Style} and a {@linkplain AttributeMetaData
758             * AttributeMetaData-Map} for a given geo-object (feature) source. The SLD
759             * file must be present. A missing attribute meta-data file is tolerated.
760             *
761             * @param geoObjectURL
762             *            URL of the (already read) feature object
763             * @param sldExt
764             *            file extention for the SLD file
765             * @param rldExt
766             *            file extention for the raster legend-data file
767             * @return {@code null} in case of any error
768             */
769            public static StyledLayerStyle<Map<Integer, AttributeMetaData>> loadStyledFeatureStyle(
770                            URL geoObjectURL, String sldExt, String rldExt) {
771                    Map<Integer, AttributeMetaData> metaData = null;
772                    Style sldStyle = null;
773                    try {
774                            Style[] styles = StylingUtil.loadSLD(IOUtil.changeUrlExt(
775                                            geoObjectURL, sldExt));
776                            // SLD must be present
777                            if (styles == null || styles.length == 0)
778                                    return null;
779                            sldStyle = styles[0];
780                    } catch (Exception err) {
781                            // SLD must be present
782                            LangUtil.logDebugError(LOGGER, err);
783                            return null;
784                    }
785    
786                    try {
787                            metaData = StyledLayerUtil.loadAttributeMetaDataMap(IOUtil
788                                            .changeUrlExt(geoObjectURL, rldExt));
789                    } catch (FileNotFoundException err) {
790                            // ignore missing attribute meta data
791                    } catch (Exception err) {
792                            // any other error during meta data creation leads to error
793                            LangUtil.logDebugError(LOGGER, err);
794                            return null;
795                    }
796    
797                    return new StyledLayerStyle<Map<Integer, AttributeMetaData>>(sldStyle,
798                                    metaData);
799            }
800    
801            /**
802             * Loads a {@linkplain Style SLD-Style} from a {@code .sld} file and
803             * {@linkplain AttributeMetaData AttributeMetaData-Map} from a {@code .amd}
804             * file for a given geo-object (feature) source. The SLD file must be
805             * present. A missing attribute meta-data file is tolerated.
806             *
807             * @param geoObjectURL
808             *            URL of the (already read) feature object
809             * @param sldExt
810             *            file extention for the SLD file
811             * @param rldExt
812             *            file extention for the raster legend-data file
813             * @return {@code null} in case of any error
814             */
815            public static StyledLayerStyle<Map<Integer, AttributeMetaData>> loadStyledFeatureStyle(
816                            URL geoObjectURL) {
817                    return loadStyledFeatureStyle(geoObjectURL, "sld", "amd");
818            }
819    
820            /**
821             * Stores a {@linkplain Style SLD-Style} and {@linkplain RasterLegendData
822             * Raster-LegendData} for a given geo-object (raster) source.
823             *
824             * @param style
825             *            style to save
826             * @param geoObjectURL
827             *            URL of the raster object
828             * @param sldExt
829             *            file extention for the SLD file
830             * @param mdExt
831             *            file extention for the meta-data file
832             */
833            public static <T> void saveStyledLayerStyle(StyledLayerStyle<T> style,
834                            URL geoObjectURL, String sldExt, String mdExt) throws Exception {
835                    // Store the SLD
836                    Style sldStyle = style.getGeoObjectStyle();
837                    if (sldStyle != null) {
838                            StylingUtil.saveStyleToSLD(sldStyle, IOUtil.changeFileExt(new File(
839                                            geoObjectURL.toURI()), sldExt));
840                    }
841    
842                    // Store the meta data
843                    T metaData = style.getMetaData();
844                    if (metaData != null) {
845                            if (metaData instanceof RasterLegendData) {
846                                    saveRasterLegendData((RasterLegendData) metaData, IOUtil
847                                                    .changeUrlExt(geoObjectURL, mdExt));
848                                    // } else if ( metaData instanceof
849                                    // Map<Integer,AttributeMetaData> ) { // LEIDER NICHT
850                                    // KOMPILIERBAR!!
851                            } else if (metaData instanceof Map) {
852                                    saveAttributeMetaDataMap(
853                                                    (Map<Integer, AttributeMetaData>) metaData, IOUtil
854                                                                    .changeUrlExt(geoObjectURL, mdExt));
855                            } else
856                                    throw new UnsupportedOperationException(
857                                                    "Export for meta data not yet supported: "
858                                                                    + metaData.getClass().getSimpleName());
859                    }
860            }
861    
862            /**
863             * Stores the {@linkplain Style SLD-Style} to a {@code .sld} file and the
864             * meta data ({@link RasterLegendData} or {@link AttributeMetaData}) to a
865             * {@code .rld} or {@code .amd} file. for a given geo-object source.
866             *
867             * @param style
868             *            style to save
869             * @param geoObjectURL
870             *            URL of the (already read) raster object
871             */
872            public static void saveStyledLayerStyle(StyledLayerStyle<?> style,
873                            URL geoObjectURL) throws Exception {
874                    if (style.getMetaData() instanceof RasterLegendData)
875                            saveStyledLayerStyle(style, geoObjectURL, "sld", "rld");
876                    else
877                            saveStyledLayerStyle(style, geoObjectURL, "sld", "amd");
878            }
879    
880            /**
881             * Creates a {@link Box} that shows a legend for a list of
882             * {@link FeatureTypeStyle}s and a targeted featureType
883             *
884             * @param featureType
885             *            If this a legend for Point, Polygon or Line?
886             * @param list
887             *            The Styles to presented in this legend
888             *
889             * @author <a href="mailto:[email protected]">Stefan Alfons
890             *         Kr&uuml;ger</a>
891             */
892            public static Box createLegendPanel(List<FeatureTypeStyle> list,
893                            SimpleFeatureType featureType, int iconWidth, int iconHeight) {
894    
895                    Box box = new Box(BoxLayout.Y_AXIS) {
896    
897                            /**
898                             * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot
899                             * gemacht wird) wird. Dann werden wird der Hintergrund auf WEISS
900                             * gesetzt.
901                             *
902                             * @author <a href="mailto:[email protected]">Stefan Alfons
903                             *         Kr&uuml;ger</a>
904                             */
905                            @Override
906                            public void print(Graphics g) {
907                                    final Color orig = getBackground();
908                                    setBackground(Color.WHITE);
909                                    // wrap in try/finally so that we always restore the state
910                                    try {
911                                            super.print(g);
912                                    } finally {
913                                            setBackground(orig);
914                                    }
915                            }
916                    };
917    
918                    for (FeatureTypeStyle ftStyle : list) {
919    
920                            // One child-node for every rule
921                            List<Rule> rules = ftStyle.rules();
922                            for (Rule rule : rules) {
923    
924                                    /**
925                                     * Let's not create a hbox for Rules that only contain
926                                     * TextSymbolizers
927                                     */
928                                    if (StylingUtil.getTextSymbolizers(rule.getSymbolizers())
929                                                    .size() == rule.getSymbolizers().length)
930                                            continue;
931    
932                                    Box hbox = new Box(BoxLayout.X_AXIS) {
933    
934                                            /**
935                                             * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein
936                                             * Screenshot gemacht wird) wird. Dann werden wird der
937                                             * Hintergrund auf WEISS gesetzt.
938                                             */
939                                            @Override
940                                            public void print(Graphics g) {
941                                                    final Color orig = getBackground();
942                                                    setBackground(Color.WHITE);
943                                                    // wrap in try/finally so that we always restore the
944                                                    // state
945                                                    try {
946                                                            super.print(g);
947                                                    } finally {
948                                                            setBackground(orig);
949                                                    }
950                                            }
951                                    };
952    
953                                    /**
954                                     * The size of the legend Symbol is dependent on the size of the
955                                     * font.
956                                     */
957                                    final int fontHeight = new JLabel().getFontMetrics(
958                                                    new JLabel().getFont()).getHeight();
959    
960                                    final Dimension ICON_SIZE = new Dimension(iconWidth,
961                                                    fontHeight > 5 ? fontHeight : iconHeight);
962    
963                                    // ****************************************************************************
964                                    // Create the actual icon
965                                    // ****************************************************************************
966                                    final BufferedImage imageForRule = LegendIconFeatureRenderer
967                                                    .getInstance().createImageForRule(rule, featureType,
968                                                                    ICON_SIZE);
969    
970                                    // LOGGER.debug("Creating a new Legend Image for RUle name =
971                                    // "+rule.getName());
972    
973                                    ImageIcon legendIcon = new ImageIcon(imageForRule);
974    
975                                    final JLabel iconLabel = new JLabel(legendIcon);
976                                    hbox.setAlignmentX(0f);
977                                    hbox.add(iconLabel);
978                                    hbox.add(Box.createHorizontalStrut(3));
979    
980                                    // ****************************************************************************
981                                    // The labeltext is read from the SLD. Its either the title
982                                    // directly, or interpreted as OneLine Code
983                                    // ****************************************************************************
984                                    // final String rawText =
985                                    // rule.getDescription().getTitle().toString();
986                                    final String rawText = rule.getDescription().getTitle()
987                                                    .toString();
988    
989                                    Translation labelT = new Translation();
990                                    labelT.fromOneLine(rawText);
991    
992                                    final JLabel classTitleLabel = new JLabel(labelT.toString());
993                                    hbox.add(classTitleLabel);
994                                    classTitleLabel.setLabelFor(iconLabel);
995    
996                                    box.add(hbox);
997    
998                            }
999                    }
1000    
1001                    return box;
1002            }
1003    
1004            /**
1005             * Creates a
1006             *
1007             * @param styledGrid
1008             * @param iconHeight
1009             * @param iconWidth
1010             * @return
1011             */
1012            public static Box createLegendPanel(StyledRasterInterface<?> styledGrid,
1013                            int iconWidth, int iconHeight) {
1014    
1015                    /**
1016                     * Determine whether a Style is responsible for the coloring
1017                     */
1018                    Object geoObject = styledGrid.getGeoObject();
1019                    ColorModel colorModel = null;
1020                    if (geoObject instanceof GridCoverage2D) {
1021                            GridCoverage2D cov = (GridCoverage2D) geoObject;
1022                            colorModel = cov.getRenderedImage().getColorModel();
1023                    } else if (geoObject instanceof ImagePyramidReader) {
1024    
1025                            org.geotools.parameter.Parameter readGG = new org.geotools.parameter.Parameter(
1026                                            org.geotools.coverage.grid.io.AbstractGridFormat.READ_GRIDGEOMETRY2D);
1027    
1028                            ReferencedEnvelope mapExtend = new org.geotools.geometry.jts.ReferencedEnvelope(
1029                                            styledGrid.getEnvelope(), styledGrid.getCrs());
1030    
1031                            readGG.setValue(new GridGeometry2D(new GeneralGridEnvelope(
1032                                            new Rectangle(0, 0, 10, 10)), mapExtend));
1033    
1034                            final AbstractGridCoverage2DReader aReader = (AbstractGridCoverage2DReader) geoObject;
1035                            try {
1036                                    GridCoverage2D cov = (GridCoverage2D) aReader
1037                                                    .read(new GeneralParameterValue[] { readGG });
1038                                    colorModel = cov.getRenderedImage().getColorModel();
1039                            } catch (IllegalArgumentException e) {
1040                                    e.printStackTrace();
1041                            } catch (IOException e) {
1042                                    e.printStackTrace();
1043                            }
1044                    }
1045    
1046                    RasterLegendData rasterLegendData = styledGrid.getLegendMetaData();
1047                    List<Double> legendRasterValues = rasterLegendData.getSortedKeys();
1048                    Map<Double, GridCoverage2D> sampleRasters = rasterLegendData
1049                                    .createSampleRasters();
1050    
1051                    Box box = new Box(BoxLayout.Y_AXIS) {
1052    
1053                            /**
1054                             * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot
1055                             * gemacht wird) wird. Dann werden wird der Hintergrund auf WEISS
1056                             * gesetzt.
1057                             */
1058                            @Override
1059                            public void print(Graphics g) {
1060                                    final Color orig = getBackground();
1061                                    setBackground(Color.WHITE);
1062                                    // wrap in try/finally so that we always restore the state
1063                                    try {
1064                                            super.print(g);
1065                                    } finally {
1066                                            setBackground(orig);
1067                                    }
1068                            }
1069                    };
1070    
1071                    for (Double rValue : legendRasterValues) {
1072    
1073                            /**
1074                             *
1075                             */
1076                            Box hbox = new Box(BoxLayout.X_AXIS) {
1077    
1078                                    /**
1079                                     * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein
1080                                     * Screenshot gemacht wird) wird. Dann werden wird der
1081                                     * Hintergrund auf WEISS gesetzt.
1082                                     */
1083                                    @Override
1084                                    public void print(Graphics g) {
1085                                            final Color orig = getBackground();
1086                                            setBackground(Color.WHITE);
1087                                            // wrap in try/finally so that we always restore the
1088                                            // state
1089                                            try {
1090                                                    super.print(g);
1091                                            } finally {
1092                                                    setBackground(orig);
1093                                            }
1094                                    }
1095                            };
1096    
1097                            final Dimension ICON_SIZE = new Dimension(iconWidth,
1098                                            new JLabel().getFontMetrics(new JLabel().getFont())
1099                                                            .getHeight() > 5 ? new JLabel().getFontMetrics(
1100                                                            new JLabel().getFont()).getHeight() : iconHeight);
1101    
1102                            // ****************************************************************************
1103                            // Create the actual icon
1104                            // ****************************************************************************
1105                            BufferedImage buffImage = new BufferedImage(ICON_SIZE.width,
1106                                            ICON_SIZE.height, BufferedImage.TYPE_INT_ARGB);
1107                            Graphics2D graphics = buffImage.createGraphics();
1108    
1109                            if (colorModel != null)
1110                                    try {
1111                                            final int rgb = colorModel.getRGB(rValue.intValue());
1112                                            final Color color = new Color(rgb);
1113                                            graphics.setBackground(color);
1114                                            graphics.setColor(color);
1115                                            graphics.fillRect(0, 0, ICON_SIZE.width, ICON_SIZE.height);
1116                                    } catch (Exception e) {
1117                                            LOGGER.debug("Dann nehmen wir den GridCoverageRenderer", e);
1118    
1119                                            /**
1120                                             * The coverage contains only one value of value rValue
1121                                             */
1122                                            GridCoverage2D sampleCov = sampleRasters.get(rValue);
1123                                            GridCoverageRenderer renderer;
1124                                            try {
1125                                                    renderer = new GridCoverageRenderer(sampleCov
1126                                                                    .getCoordinateReferenceSystem(), JTSUtil
1127                                                                    .createEnvelope(sampleCov.getEnvelope()),
1128                                                                    new Rectangle(iconWidth, iconHeight),
1129                                                                    (AffineTransform) null);
1130                                            } catch (Exception e1) {
1131                                                    throw new RuntimeException(
1132                                                                    "Creating the GridCoverageRenderer:", e1);
1133                                            }
1134    
1135                                            /**
1136                                             * Iterate over all FeatureTypeStyles.
1137                                             */
1138                                            // for (FeatureTypeStyle ftStyle : styledGrid.getStyle()
1139                                            // .featureTypeStyles()) {
1140                                            // One child-node for every rule
1141                                            // List<Rule> rules = ftStyle.rules();
1142                                            // for (Rule rule : rules) {
1143                                            final Style style = styledGrid.getStyle();
1144                                            List<RasterSymbolizer> rSymbols = StylingUtil
1145                                                            .getRasterSymbolizers(style);
1146    
1147                                            for (RasterSymbolizer symbolizer : rSymbols) {
1148                                                    // LOGGER.debug("Creating a new Legend Image for RUle
1149                                                    // name =
1150                                                    // "+rule.getName());
1151                                                    try {
1152                                                            renderer.paint(graphics, sampleCov, symbolizer);
1153                                                    } catch (Exception ee) {
1154                                                            LOGGER.error("Unable to paint " + symbolizer
1155                                                                            + " into the legend image", ee);
1156                                                    }
1157                                                    // }
1158                                                    // }
1159                                            }
1160                                    }
1161    
1162                            ImageIcon legendIcon = new ImageIcon(buffImage);
1163    
1164                            final JLabel iconLabel = new JLabel(legendIcon);
1165                            hbox.setAlignmentX(0f);
1166                            hbox.add(iconLabel);
1167                            hbox.add(Box.createHorizontalStrut(3));
1168    
1169                            Translation labelT = rasterLegendData.get(rValue);
1170                            final JLabel classTitleLabel = new JLabel(labelT.toString());
1171                            hbox.add(classTitleLabel);
1172                            classTitleLabel.setLabelFor(iconLabel);
1173    
1174                            box.add(hbox);
1175    
1176                            if (rasterLegendData.getPaintGaps()) {
1177                                    iconLabel
1178                                                    .setBorder(BorderFactory.createLineBorder(Color.black));
1179                                    box.add(Box.createVerticalStrut(3));
1180                            }
1181    
1182                    }
1183    
1184                    return box;
1185            }
1186    
1187    }

Legend:
Removed from v.2  
changed lines
  Added in v.403

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26