/[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

branches/1.0-gt2-2.6/src/skrueger/geotools/StyledLayerUtil.java revision 397 by alfonx, Mon Sep 14 11:40:17 2009 UTC trunk/src/skrueger/geotools/StyledLayerUtil.java revision 769 by alfonx, Sun Mar 21 11:02:34 2010 UTC
# Line 31  package skrueger.geotools; Line 31  package skrueger.geotools;
31    
32  import java.awt.Color;  import java.awt.Color;
33  import java.awt.Dimension;  import java.awt.Dimension;
34  import java.awt.Graphics;  import java.awt.Graphics2D;
35    import java.awt.Rectangle;
36    import java.awt.geom.AffineTransform;
37  import java.awt.image.BufferedImage;  import java.awt.image.BufferedImage;
38    import java.awt.image.ColorModel;
39    import java.awt.image.ComponentColorModel;
40    import java.awt.image.DataBuffer;
41  import java.io.File;  import java.io.File;
42  import java.io.FileNotFoundException;  import java.io.FileNotFoundException;
43  import java.io.FileWriter;  import java.io.FileWriter;
44  import java.net.URL;  import java.net.URL;
45  import java.text.DecimalFormat;  import java.text.DecimalFormat;
46  import java.util.HashMap;  import java.util.ArrayList;
47  import java.util.List;  import java.util.List;
48  import java.util.Map;  import java.util.Map;
49  import java.util.SortedMap;  import java.util.Set;
 import java.util.TreeMap;  
50    
51  import javax.swing.Box;  import javax.swing.BorderFactory;
 import javax.swing.BoxLayout;  
52  import javax.swing.ImageIcon;  import javax.swing.ImageIcon;
53    import javax.swing.JComponent;
54  import javax.swing.JLabel;  import javax.swing.JLabel;
55    
56    import net.miginfocom.swing.MigLayout;
57    
58  import org.apache.log4j.Logger;  import org.apache.log4j.Logger;
59    import org.geotools.coverage.grid.GeneralGridEnvelope;
60  import org.geotools.coverage.grid.GridCoverage2D;  import org.geotools.coverage.grid.GridCoverage2D;
61    import org.geotools.coverage.grid.GridGeometry2D;
62  import org.geotools.coverage.grid.io.AbstractGridCoverage2DReader;  import org.geotools.coverage.grid.io.AbstractGridCoverage2DReader;
63    import org.geotools.coverage.grid.io.AbstractGridFormat;
64  import org.geotools.feature.FeatureCollection;  import org.geotools.feature.FeatureCollection;
65    import org.geotools.feature.NameImpl;
66    import org.geotools.geometry.jts.ReferencedEnvelope;
67  import org.geotools.map.DefaultMapLayer;  import org.geotools.map.DefaultMapLayer;
68  import org.geotools.map.MapLayer;  import org.geotools.map.MapLayer;
69    import org.geotools.parameter.Parameter;
70    import org.geotools.renderer.lite.gridcoverage2d.GridCoverageRenderer;
71  import org.geotools.styling.ColorMap;  import org.geotools.styling.ColorMap;
72  import org.geotools.styling.ColorMapEntry;  import org.geotools.styling.ColorMapEntry;
73  import org.geotools.styling.FeatureTypeStyle;  import org.geotools.styling.FeatureTypeStyle;
# Line 65  import org.jdom.Document; Line 78  import org.jdom.Document;
78  import org.jdom.Element;  import org.jdom.Element;
79  import org.jdom.input.SAXBuilder;  import org.jdom.input.SAXBuilder;
80  import org.jdom.output.XMLOutputter;  import org.jdom.output.XMLOutputter;
81    import org.opengis.feature.simple.SimpleFeature;
82  import org.opengis.feature.simple.SimpleFeatureType;  import org.opengis.feature.simple.SimpleFeatureType;
83    import org.opengis.feature.type.AttributeDescriptor;
84    import org.opengis.feature.type.GeometryDescriptor;
85    import org.opengis.feature.type.Name;
86    import org.opengis.parameter.GeneralParameterValue;
87    
88    import schmitzm.geotools.JTSUtil;
89    import schmitzm.geotools.feature.FeatureUtil;
90  import schmitzm.geotools.styling.StylingUtil;  import schmitzm.geotools.styling.StylingUtil;
91  import schmitzm.io.IOUtil;  import schmitzm.io.IOUtil;
92  import schmitzm.lang.LangUtil;  import schmitzm.lang.LangUtil;
93    import schmitzm.swing.JPanel;
94  import schmitzm.swing.SwingUtil;  import schmitzm.swing.SwingUtil;
95  import skrueger.AttributeMetaData;  import skrueger.AttributeMetadata;
96    import skrueger.AttributeMetadataImpl;
97  import skrueger.RasterLegendData;  import skrueger.RasterLegendData;
98  import skrueger.i8n.Translation;  import skrueger.i8n.Translation;
99    
100  /**  /**
101   * This class provides static helper methods for dealing with   * This class provides static helper methods for dealing with
102   * {@link StyledLayerInterface} stuff.   * {@link StyledLayerInterface} stuff.
103   * @author <a href="mailto:[email protected]">Martin Schmitz</a> (University of Bonn/Germany)   *
104     * @author <a href="mailto:[email protected]">Martin Schmitz</a>
105     *         (University of Bonn/Germany)
106   * @version 1.0   * @version 1.0
107   */   */
108  public class StyledLayerUtil {  public class StyledLayerUtil {
109    private static final Logger LOGGER = Logger.getLogger(StyledLayerUtil.class.getName());          private static final Logger LOGGER = Logger.getLogger(StyledLayerUtil.class
110    private static final SAXBuilder SAX_BUILDER = new SAXBuilder();                          .getName());
111    private static final XMLOutputter XML_OUTPUTTER = new XMLOutputter();          private static final SAXBuilder SAX_BUILDER = new SAXBuilder();
112            private static final XMLOutputter XML_OUTPUTTER = new XMLOutputter();
113    /** URL for Atlas XML schema */  
114    public static final String AMLURI = "http://www.wikisquare.de/AtlasML";          /** URL for Atlas XML schema */
115    /** Name of the XML Element for the attribute meta data map */          public static final String AMLURI = "http://www.wikisquare.de/AtlasML";
116    public static final String ELEM_NAME_AMD = "attributeMetaData";          /** Name of the XML Element for the attribute meta data map */
117    /** Name of the XML Element for the raster legend data */          public static final String ELEM_NAME_AMD = "attributeMetaData";
118    public static final String ELEM_NAME_RLD = "rasterLegendData";          /** Name of the XML Element for the raster legend data */
119    /** Name of the XML Element for an attribute meta data map entry */          public static final String ELEM_NAME_RLD = "rasterLegendData";
120    public static final String ELEM_NAME_ATTRIBUTE = "dataAttribute";          /** Name of the XML Element for an attribute meta data map entry */
121    /** Name of the XML Element for an raster legend data entry */          public static final String ELEM_NAME_ATTRIBUTE = "dataAttribute";
122    public static final String ELEM_NAME_RASTERLEGEND = "rasterLegendItem";          /** Name of the XML Element for an raster legend data entry */
123    /** Name of the XML Element for a translation */          public static final String ELEM_NAME_RASTERLEGEND = "rasterLegendItem";
124    public static final String ELEM_NAME_TRANSLATION = "translation";          /** Name of the XML Element for a translation */
125            public static final String ELEM_NAME_TRANSLATION = "translation";
126    /**  
127     * Creates a Geotools {@link MapLayer} from an object. If the object is a          /**
128     * {@link StyledLayerInterface} then its sytle is used. In case of direct           * Creates a Geotools {@link MapLayer} from an object. If the object is a
129     * Geotools objects ({@link GridCoverage2D}, {@link AbstractGridCoverage2DReader},           * {@link StyledLayerInterface} then its sytle is used. In case of direct
130     * {@link FeatureCollection}) a default style is generated.           * Geotools objects ({@link GridCoverage2D},
131     * @param object an Object           * {@link AbstractGridCoverage2DReader}, {@link FeatureCollection}) a
132     * @exception Exception if {@code null} is given as object or an error occurs during layer creation           * default style is generated.
133     */           *
134    public static MapLayer createMapLayer(Object object) throws Exception {           * @param object
135      return createMapLayer(object,null);           *            an Object
136    }           * @exception Exception
137             *                if {@code null} is given as object or an error occurs
138    /**           *                during layer creation
139     * Creates a Geotools {@link MapLayer} from an object. If the object is a           */
140     * {@link StyledLayerInterface} then its sytle is used. In case of direct          public static MapLayer createMapLayer(final Object object) throws Exception {
141     * Geotools objects ({@link GridCoverage2D}, {@link AbstractGridCoverage2DReader},                  return createMapLayer(object, null);
142     * {@link FeatureCollection}) a default style is generated.          }
143     * @param object an Object  
144     * @param forcedStyle (SLD-)Style to force for the object          /**
145     * @exception Exception if {@code null} is given as object or an error occurs during layer creation           * Creates a Geotools {@link MapLayer} from an object. If the object is a
146     */           * {@link StyledLayerInterface} then its sytle is used. In case of direct
147    public static MapLayer createMapLayer(Object object, Style forcedStyle) throws Exception {           * Geotools objects ({@link GridCoverage2D},
148      MapLayer layer     = null;           * {@link AbstractGridCoverage2DReader}, {@link FeatureCollection}) a
149      Style    style     = null;           * default style is generated.
150      if ( object instanceof StyledLayerInterface ) {           *
151        style =  ((StyledLayerInterface<?>)object).getStyle();           * @param object
152        object = ((StyledLayerInterface<?>)object).getGeoObject();           *            an Object
153      }           * @param forcedStyle
154      if ( forcedStyle != null )           *            (SLD-)Style to force for the object
155        style = forcedStyle;           * @exception Exception
156      if ( style == null )           *                if {@code null} is given as object or an error occurs
157        style = StylingUtil.createDefaultStyle(object);           *                during layer creation
158             */
159      if (object instanceof GridCoverage2D)          public static MapLayer createMapLayer(Object object, final Style forcedStyle)
160        layer = new DefaultMapLayer( (GridCoverage2D) object, style);                          throws Exception {
161      if (object instanceof AbstractGridCoverage2DReader)                  MapLayer layer = null;
162        layer = new DefaultMapLayer( (AbstractGridCoverage2DReader) object, style);                  Style style = null;
163      if (object instanceof FeatureCollection)                  if (object instanceof StyledLayerInterface) {
164        layer = new DefaultMapLayer( (FeatureCollection) object, style);                          style = ((StyledLayerInterface<?>) object).getStyle();
165                            object = ((StyledLayerInterface<?>) object).getGeoObject();
166      if ( layer == null )                  }
167        throw new Exception("Can not create MapLayer from "+(object == null ? "null" : object.getClass()));                  if (forcedStyle != null)
168                            style = forcedStyle;
169      return layer;                  if (style == null)
170    }                          style = StylingUtil.createDefaultStyle(object);
171    
172    /**                  if (object instanceof GridCoverage2D)
173     * Creates an default instance of {@link StyledLayerInterface} for a Geotools                          layer = new DefaultMapLayer((GridCoverage2D) object, style);
174     * object ({@link GridCoverage2D}, {@link FeatureCollection}) with a default                  if (object instanceof AbstractGridCoverage2DReader)
175     * style.                          layer = new DefaultMapLayer((AbstractGridCoverage2DReader) object,
176     * @param object an Object                                          style);
177     * @param title  title for the object                  if (object instanceof FeatureCollection)
178     * @exception UnsupportedOperationException if {@code null} is given as object or an error occurs during creation                          layer = new DefaultMapLayer((FeatureCollection) object, style);
179     */  
180    public static StyledLayerInterface<?> createStyledLayer(Object object, String title) {                  if (layer == null)
181       return createStyledLayer(object, title, null);                          throw new Exception("Can not create MapLayer from "
182    }                                          + (object == null ? "null" : object.getClass()));
183    
184    /**                  return layer;
185     * Creates an default instance of {@link StyledLayerInterface} for a Geotools          }
186     * object ({@link GridCoverage2D}, {@link FeatureCollection}) with a given  
187     * style.          /**
188     * @param object an Object           * Creates an default instance of {@link StyledLayerInterface} for a
189     * @param title  title for the object           * Geotools object ({@link GridCoverage2D}, {@link FeatureCollection}) with
190     * @param style  style and meta data for the object           * a default style.
191     * @exception UnsupportedOperationException if {@code null} is given as object or an error occurs during creation           *
192     */           * @param object
193    public static StyledLayerInterface<?> createStyledLayer(Object object, String title, StyledLayerStyle style) {           *            an Object
194      StyledLayerInterface<?> styledLayer = null;           * @param title
195             *            title for the object
196      String id = (title != null) ? title : "defaultID";           * @exception UnsupportedOperationException
197             *                if {@code null} is given as object or an error occurs
198      if ( object instanceof GridCoverage2D )           *                during creation
199        styledLayer = new StyledGridCoverage(           */
200            (GridCoverage2D)object,          public static StyledLayerInterface<?> createStyledLayer(
201            id,                          final Object object, final String title) {
202            title,                  return createStyledLayer(object, title, null);
203            style          }
204        );  
205      else if ( object instanceof AbstractGridCoverage2DReader )          /**
206             styledLayer = new StyledGridCoverageReader(           * Creates an default instance of {@link StyledLayerInterface} for a
207                 (AbstractGridCoverage2DReader)object,           * Geotools object ({@link GridCoverage2D}, {@link FeatureCollection}) with
208                 id,           * a given style.
209                 title,           *
210                 style           * @param object
211             );           *            an Object
212      else if ( object instanceof FeatureCollection )           * @param title
213        styledLayer = new StyledFeatureCollection(           *            title for the object
214            (FeatureCollection)object,           * @param style
215            id,           *            style and meta data for the object
216            title,           * @exception UnsupportedOperationException
217            style           *                if {@code null} is given as object or an error occurs
218        );           *                during creation
219                 */
220      if ( styledLayer == null )          public static StyledLayerInterface<?> createStyledLayer(
221        throw new UnsupportedOperationException("Can not create StyledLayerInterface object from "+(object == null ? "null" : object.getClass()));                          final Object object, final String title,
222                            final StyledLayerStyle style) {
223      return styledLayer;                  StyledLayerInterface<?> styledLayer = null;
224    }  
225                    final String id = (title != null) ? title : "defaultID";
226    /**  
227     * Return only the visible or invisible entries of an AttributeMetaData-Map.                  if (object instanceof GridCoverage2D)
228     * @param amdMap AttributeMetaData-Map                          styledLayer = new StyledGridCoverage((GridCoverage2D) object, id,
229     * @param visible indicated whether the visible or invisible entries are                                          title, style);
230     *                returned                  else if (object instanceof AbstractGridCoverage2DReader)
231     */                          styledLayer = new StyledGridCoverageReader(
232    public static SortedMap<Integer,AttributeMetaData> getVisibleAttributeMetaData(Map<Integer,AttributeMetaData> amdMap, boolean visible) {                                          (AbstractGridCoverage2DReader) object, id, title, style);
233      SortedMap<Integer,AttributeMetaData> filteredMap = new TreeMap<Integer,AttributeMetaData>();                  else if (object instanceof FeatureCollection)
234      for (AttributeMetaData amd : amdMap.values())                          styledLayer = new StyledFeatureCollection(
235        if ( amd.isVisible() )                                          (FeatureCollection) object, id, title, style);
236          filteredMap.put(amd.getColIdx(), amd);  
237                        if (styledLayer == null)
238      return filteredMap;                          throw new UnsupportedOperationException(
239    }                                          "Can not create StyledLayerInterface object from "
240                                                              + (object == null ? "null" : object.getClass()));
241      
242    /**                  return styledLayer;
243     * Parses a {@link AttributeMetaData} object from an JDOM-{@link Element}.          }
244     * This method works like {@link AMLImport#parseDataAttribute(org.w3c.dom.Node},  
245     * but for JDOM.          /**
246     * @param element {@link Element} to parse           * Return only the visible or invisible entries of an AttributeMetaData-Map.
247     */           *
248    public static AttributeMetaData parseAttributeMetaData(final Element element) {           * @param amdMap
249      final Integer col = Integer.valueOf(element.getAttributeValue("col"));           *            AttributeMetaData-Map
250      final Boolean visible = Boolean.valueOf(element.getAttributeValue("visible"));           * @param visible
251      final String unit = element.getAttributeValue("unit");           *            indicated whether the visible or invisible entries are
252             *            returned
253      Translation name = new Translation();           *
254      Translation desc = new Translation();           *            TODO replace with
255      for (final Element childElement : (List<Element>)element.getChildren()) {           *            {@link AttributeMetadataMap#sortedValuesVisibleOnly()}
256        if (childElement.getName() == null)           */
257          continue;          public static AttributeMetadataMap<? extends AttributeMetadata > getVisibleAttributeMetaData(
258                            final AttributeMetadataMap<? extends AttributeMetadata> amdMap,
259        if (childElement.getName().equals("name"))                          final boolean visible) {
260          name = parseTranslation(childElement);  
261        else if (childElement.getName().equals("desc"))                  final AttributeMetadataMap<AttributeMetadata> filteredMap = (AttributeMetadataMap<AttributeMetadata>) amdMap.clone();
262          desc = parseTranslation(childElement);                  if (filteredMap.size() > 0 ) {
263      }                          filteredMap.clear(); // Just in case the close copies the contents
264      return new AttributeMetaData(col, visible, name, desc, unit);                  }
265    }                  
266                    for (final AttributeMetadata amd : amdMap.values())
267    /**                          if (amd.isVisible() == visible)
268     * Parses a {@link AttributeMetaData} map from an JDOM-{@link Element}                                  filteredMap.put(amd.getName(), amd);
269     * with {@code <attribute>}-childs.  
270     * @param element {@link Element} to parse                  return filteredMap;
271     */          }
272    public static Map<Integer,AttributeMetaData> parseAttributeMetaDataMap(final Element element) {  
273      HashMap<Integer,AttributeMetaData> metaData = new HashMap<Integer,AttributeMetaData>();          /**
274      List<Element> attributesElements = element.getChildren( ELEM_NAME_ATTRIBUTE );           * Parses a {@link AttributeMetadataImpl} object from an JDOM-
275      for (Element attibuteElement : attributesElements)           * {@link Element}. This method works like {@link
276      {           * AMLImport#parseDataAttribute(org.w3c.dom.Node}, but for JDOM.
277        AttributeMetaData attrMetaData = parseAttributeMetaData( attibuteElement );           *
278        metaData.put( attrMetaData.getColIdx(), attrMetaData );           * TODO 20.11.2009, SK: There are some new attribute weight, functiona,
279      }           * functionX and nodata in AttributeMetaData that should be parsed/exported
280      return metaData;           * too. but this method is only used by ISDSS, which is not supporting that
281    }           * stuff anyways.
282             *
283    /**           * @param element
284     * Loads a {@link AttributeMetaData} object from an URL.           *            {@link Element} to parse
285     * @param documentUrl {@link URL} to parse           */
286     * @see #parseAttributeMetaData(Element)          public static AttributeMetadataImpl parseAttributeMetaData(
287     */                          final Element element) {
288    public static Map<Integer,AttributeMetaData> loadAttributeMetaDataMap(final URL documentUrl) throws Exception {                  final String namespace = String.valueOf(element
289      Document document = SAX_BUILDER.build(documentUrl);                                  .getAttributeValue("namespace"));
290      return parseAttributeMetaDataMap( document.getRootElement() );                  final String localname = String.valueOf(element
291    }                                  .getAttributeValue("localname"));
292                    final Name aName = new NameImpl(namespace, localname);
293    /**                  final Boolean visible = Boolean.valueOf(element
294     * Creates an JDOM {@link Element} for the given {@link AttributeMetaData}                                  .getAttributeValue("visible"));
295     * object.                  final String unit = element.getAttributeValue("unit");
296     * @param amd meta data for one attribute  
297     */                  Translation name = new Translation();
298    public static Element createAttributeMetaDataElement(final AttributeMetaData amd) {                  Translation desc = new Translation();
299      final Element element = new Element( ELEM_NAME_ATTRIBUTE , AMLURI);                  for (final Element childElement : (List<Element>) element.getChildren()) {
300      element.setAttribute("col", String.valueOf( amd.getColIdx() ) );                          if (childElement.getName() == null)
301      element.setAttribute("visible", String.valueOf( amd.isVisible() ) );                                  continue;
302      element.setAttribute("unit", amd.getUnit() );  
303      // Creating a aml:name tag...                          if (childElement.getName().equals("name"))
304      element.addContent( createTranslationElement("name", amd.getTitle()) );                                  name = parseTranslation(childElement);
305      // Creating a aml:desc tag...                          else if (childElement.getName().equals("desc"))
306      element.addContent( createTranslationElement("desc", amd.getDesc()) );                                  desc = parseTranslation(childElement);
307      return element;                  }
308    }                  return new AttributeMetadataImpl(aName, visible, name, desc, unit);
309            }
310    /**  
311     * Creates an JDOM {@link Element} for the given {@link AttributeMetaData}          /**
312     * map.           * Parses a {@link AttributeMetadataImpl} map from an JDOM-{@link Element}
313     * @param amdMap map of attribute meta data           * with {@code <attribute>}-childs.
314     */           *
315    public static Element createAttributeMetaDataMapElement(final Map<Integer,AttributeMetaData> amdMap) {           * @param element
316      final Element element = new Element( ELEM_NAME_AMD , AMLURI);           *            {@link Element} to parse
317      for (AttributeMetaData amd : amdMap.values())           *
318        element.addContent( createAttributeMetaDataElement( amd ) );           *            TODO Since GP 1.3 the {@link AttributeMetadataImpl} class has
319      return element;           *            more attributes which are not used by Xulu/ISDSS. GP
320    }           *            exports/imports the AMD via AMLExporter and AMLImporter
321             *            classes. (SK, 3.2.2010) *
322    /**           */
323     * Saves a {@link AttributeMetaData AttributeMetaData-Map} to an URL.          public static AttributeMetadataMap parseAttributeMetaDataMap(
324     * @param amdMap map of {@link AttributeMetaData}                          final Element element) {
325     * @param documentUrl {@link URL} to store the XML                  final AttributeMetadataMap metaData = new AttributeMetadataImplMap();
326     */                  final List<Element> attributesElements = element
327    public static void saveAttributeMetaDataMap(final Map<Integer,AttributeMetaData> amdMap, final URL documentUrl) throws Exception {                                  .getChildren(ELEM_NAME_ATTRIBUTE);
328      // Create XML-Document                  for (final Element attibuteElement : attributesElements) {
329      final FileWriter out = new FileWriter( new File(documentUrl.toURI()) );                          final AttributeMetadataImpl attrMetaData = parseAttributeMetaData(attibuteElement);
330      XML_OUTPUTTER.output(                          metaData.put(attrMetaData.getName(), attrMetaData);
331        createAttributeMetaDataMapElement(amdMap),                  }
332        out                  return metaData;
333      );          }
334      out.flush();  
335      out.close();          /**
336    }           * Loads a {@link AttributeMetadataImpl} object from an URL.
337             *
338             * @param documentUrl
339             *            {@link URL} to parse
340    /**           * @see #parseAttributeMetaData(Element)
341     * Parses a {@link RasterLegendData} object from an JDOM-{@link Element}.           */
342     * This method works like {@link AMLImport#parseRasterLegendData(org.w3c.dom.Node},          public static AttributeMetadataMap loadAttributeMetaDataMap(
343     * but for JDOM.                          final URL documentUrl) throws Exception {
344     * @param element {@link Element} to parse                  final Document document = SAX_BUILDER.build(documentUrl);
345     */                  return parseAttributeMetaDataMap(document.getRootElement());
346    public static RasterLegendData parseRasterLegendData(Element element) {          }
347    
348      final boolean paintGaps = Boolean.valueOf( element.getAttributeValue("paintGaps") );          /**
349             * Creates an JDOM {@link Element} for the given
350      RasterLegendData rld = new RasterLegendData(paintGaps);           * {@link AttributeMetadataImpl} object.
351             *
352      for ( Element childElement : (List<Element>)element.getChildren() ) {           * @param amd
353        final String name = childElement.getName();           *            meta data for one attribute
354        // Cancel if it's an attribute           *
355        if ( childElement.getChildren().size() == 0 )           *            TODO Since GP 1.3 the {@link AttributeMetadataImpl} class has
356          continue;           *            more attributes which are not used by Xulu/ISDSS. GP
357             *            exports/imports the AMD via AMLExporter and AMLImporter
358        if (name.equals( ELEM_NAME_RASTERLEGEND )) {           *            classes. (SK, 3.2.2010)
359          final String valueAttr = childElement.getAttributeValue("value");           */
360          if ( valueAttr == null )          public static Element createAttributeMetaDataElement(
361            throw new UnsupportedOperationException("Attribute 'value' missing for definition of <"+ELEM_NAME_RASTERLEGEND+">");                          final AttributeMetadata amd) {
362          final double value = Double.valueOf(valueAttr);                  final Element element = new Element(ELEM_NAME_ATTRIBUTE, AMLURI);
363                    element.setAttribute("namespace", String.valueOf(amd.getName()
364          // first and only item should be the label                                  .getNamespaceURI()));
365          final Element labelElement = childElement.getChild("label");                  element.setAttribute("localname", String.valueOf(amd.getLocalName()));
366          // id label element is missing, the translation is searched directly                  element.setAttribute("visible", String.valueOf(amd.isVisible()));
367          // as childs of the rasterLegendItem element                  element.setAttribute("unit", amd.getUnit());
368          Translation label = parseTranslation( labelElement != null ? labelElement : childElement );                  // Creating a aml:name tag...
369          rld.put(value, label);                  element.addContent(createTranslationElement("name", amd.getTitle()));
370        }                  // Creating a aml:desc tag...
371      }                  element.addContent(createTranslationElement("desc", amd.getDesc()));
372                    return element;
373      return rld;          }
374    }  
375            /**
376    /**           * Creates an JDOM {@link Element} for the given
377     * Loads a {@link RasterLegendData} object from an URL.           * {@link AttributeMetadataImpl} map.
378     * @param documentUrl {@link URL} to parse           *
379     * @see #parseAttributeMetaData(Element)           * @param amdMap
380     */           *            map of attribute meta data
381    public static RasterLegendData loadRasterLegendData(final URL documentUrl) throws Exception {           */
382      Document document = SAX_BUILDER.build(documentUrl);          public static Element createAttributeMetaDataMapElement(
383      return parseRasterLegendData( document.getRootElement() );                          final AttributeMetadataMap<? extends AttributeMetadata> amdMap) {
384    }                  final Element element = new Element(ELEM_NAME_AMD, AMLURI);
385                    for (final AttributeMetadata amd : amdMap.values())
386   /**                          element.addContent(createAttributeMetaDataElement(amd));
387     * Creates an JDOM {@link Element} for the given {@link RasterLegendData}                  return element;
388     * map.          }
389     * @param rld raster legend data  
390     */          /**
391    public static Element createRasterLegendDataElement(final RasterLegendData rld) {           * Saves a {@link AttributeMetadataImpl AttributeMetaData-Map} to an URL.
392      final Element element = new Element( ELEM_NAME_RLD , AMLURI);           *
393      element.setAttribute("paintGaps", rld.isPaintGaps().toString());           * @param amdMap
394      for (Double key : rld.getSortedKeys()) {           *            map of {@link AttributeMetadataImpl}
395        Element item = new Element( ELEM_NAME_RASTERLEGEND, AMLURI);           * @param documentUrl
396        item.setAttribute("value", key.toString());           *            {@link URL} to store the XML
397        item.addContent( createTranslationElement("label", rld.get(key)) );           */
398        element.addContent(item);          public static void saveAttributeMetaDataMap(
399      }                          final AttributeMetadataMap amdMap, final URL documentUrl)
400      return element;                          throws Exception {
401    }                  // Create XML-Document
402                    final FileWriter out = new FileWriter(new File(documentUrl.toURI()));
403    /**                  XML_OUTPUTTER.output(createAttributeMetaDataMapElement(amdMap), out);
404     * Creates {@link RasterLegendData} from a {@link ColorMap}.                  out.flush();
405     * @param colorMap  a color map                  out.close();
406     * @param paintGaps indicated whether gaps are painted between the legend items          }
407     * @param digits    number of digits the grid value classes (and legend) are  
408     *                  rounded to (null means no round; >= 0 means digits after comma;          /**
409     *                  < 0 means digits before comma)    */           * Parses a {@link RasterLegendData} object from an JDOM-{@link Element}.
410    public static RasterLegendData generateRasterLegendData(ColorMap colorMap, boolean paintGaps, Integer digits) {           * This method works like {@link
411      DecimalFormat    decFormat = digits != null ? new DecimalFormat( SwingUtil.getNumberFormatPattern(digits) ) : null;           * AMLImport#parseRasterLegendData(org.w3c.dom.Node}, but for JDOM.
412      RasterLegendData rld       = new RasterLegendData(paintGaps);           *
413      for (ColorMapEntry cme : colorMap.getColorMapEntries())           * @param element
414      {           *            {@link Element} to parse
415        double value = StylingUtil.getQuantityFromColorMapEntry(cme);           */
416        String label = cme.getLabel();          public static RasterLegendData parseRasterLegendData(final Element element) {
417        // if no label is set (e.g. quantitative style),  
418        // use the value as label                  final boolean paintGaps = Boolean.valueOf(element
419        if ( label == null || label.equals("") )                                  .getAttributeValue("paintGaps"));
420          if ( digits == null )  
421            label = String.valueOf(value);                  final RasterLegendData rld = new RasterLegendData(paintGaps);
422          else  
423            label = decFormat.format( LangUtil.round(value, digits) );                  for (final Element childElement : (List<Element>) element.getChildren()) {
424        rld.put( value, new Translation("   "+label) );                          final String name = childElement.getName();
425      }                          // Cancel if it's an attribute
426      return rld;                          if (childElement.getChildren().size() == 0)
427    }                                  continue;
428    
429    /**                          if (name.equals(ELEM_NAME_RASTERLEGEND)) {
430     * Creates {@link RasterLegendData} from the {@link ColorMap} of a style.                                  final String valueAttr = childElement
431     * @param style     a raster style (must contain a  {@link RasterSymbolizer})                                                  .getAttributeValue("value");
432     * @param paintGaps indicated whether gaps are painted between the legend items                                  if (valueAttr == null)
433     * @param digits    number of digits the grid value classes (and legend) are                                          throw new UnsupportedOperationException(
434     *                  rounded to (null means no round; >= 0 means digits after comma;                                                          "Attribute 'value' missing for definition of <"
435     *                  < 0 means digits before comma)    */                                                                          + ELEM_NAME_RASTERLEGEND + ">");
436    public static RasterLegendData generateRasterLegendData(Style style, boolean paintGaps, Integer digits) {                                  final double value = Double.valueOf(valueAttr);
437      ColorMap colorMap = StylingUtil.getColorMapFromStyle(style);  
438      if ( colorMap == null)                                  // first and only item should be the label
439        throw new IllegalArgumentException("Color map can not be determined from style!");                                  final Element labelElement = childElement.getChild("label");
440      return generateRasterLegendData(colorMap, paintGaps, digits);                                  // id label element is missing, the translation is searched
441    }                                  // directly
442                                    // as childs of the rasterLegendItem element
443    /**                                  final Translation label = parseTranslation(labelElement != null ? labelElement
444     * Saves a {@link RasterLegendData} to an URL.                                                  : childElement);
445     * @param rld raster legend data                                  rld.put(value, label);
446     * @param documentUrl {@link URL} to store the XML                          }
447     */                  }
448    public static void saveRasterLegendData(final RasterLegendData rld, final URL documentUrl) throws Exception {  
449      // Create XML-Document                  return rld;
450      final FileWriter out = new FileWriter( new File(documentUrl.toURI()) );          }
     XML_OUTPUTTER.output(  
       createRasterLegendDataElement(rld),  
       out  
     );  
     out.flush();  
     out.close();  
   }  
   
   /**  
    * Parses a {@link Translation} object from an JDOM-{@link Element}.  
    * This method works like {@link AMLImport#parseTranslation(org.w3c.dom.Node},  
    * but for JDOM.  
    * @param element {@link Element} to parse  
    */  
   public final static Translation parseTranslation(final Element element) {  
     Translation trans = new Translation();  
   
     if (element == null)  
      return trans;  
   
     for (final Element translationElement : (List<Element>)element.getChildren()) {  
       final String name = translationElement.getName();  
       if (name == null)  
         continue;  
   
       // lang attribute  
       String lang = translationElement.getAttributeValue("lang");  
       // set the default, if no language code is set  
       if ( lang == null )  
         lang = Translation.DEFAULT_KEY;  
   
       final String translationText = translationElement.getValue();  
       if (translationText == null)  
         trans.put(lang, "");  
       else  
         trans.put(lang, translationText);  
     }  
   
     // if no <translation> is given, the value of the node should  
     // be used as a default translation  
     if (trans.size() == 0)  
       trans.put( Translation.DEFAULT_KEY, element.getValue() );  
     //     trans = new Translation( ((List<Element>)element.getChildren()).get(0).getValue() );  
   
     return trans;  
   }  
   
   /**  
    * Creates an JDOM {@link Element} for the given {@link Translation}.  
    * @param tagname Name of the Element  
    * @param translation Translation to store in the Element  
    */  
   public final static Element createTranslationElement(String tagname, Translation translation) {  
     Element element = new Element(tagname, AMLURI);  
     if ( translation == null )  
       throw new UnsupportedOperationException("Translation element can not be created from null!");  
   
     // If only a default translation is set, the <translation lang="..">..</tranlation>  
     // part is not used  
     if (translation.keySet().size() == 1 && translation.get(Translation.DEFAULT_KEY) != null) {  
       element.addContent( translation.get(Translation.DEFAULT_KEY) );  
       return element;  
     }  
   
     // add a <translation lang="..">..</tranlation> part to the element for  
     // all languages  
     for (String lang : translation.keySet()) {  
       Element translationElement = new Element( ELEM_NAME_TRANSLATION , AMLURI);  
       translationElement.setAttribute("lang", lang);  
       String translationString = translation.get(lang);  
       if (translationString == null)  
        translationString = "";  
       translationElement.addContent( translationString );  
       element.addContent(translationElement);  
     }  
   
     return element;  
   }  
   
   
   /**  
    * Sets a style to {@link StyledLayerInterface}.  
    * @param styledObject a styled object  
    * @param style a Style  
    */  
   public static void setStyledLayerStyle(StyledLayerInterface styledObject, StyledLayerStyle<?> style) {  
     // set SLD style  
     styledObject.setStyle( style.getGeoObjectStyle() );  
     // set meta data  
     if ( styledObject        instanceof StyledGridCoverageInterface &&  
          (style.getMetaData() instanceof RasterLegendData || style.getMetaData() == null) ) {  
       RasterLegendData sourceRld = (RasterLegendData)style.getMetaData();  
       RasterLegendData destRld = ((StyledGridCoverageInterface)styledObject).getLegendMetaData();  
       if ( destRld != null && sourceRld != null ) {  
         destRld.setPaintGaps(sourceRld.isPaintGaps());  
         destRld.clear();  
         destRld.putAll( sourceRld );  
       }  
       return;  
     }  
     if ( styledObject        instanceof StyledFeatureCollectionInterface &&  
          (style.getMetaData() instanceof Map || style.getMetaData() == null) ) {  
       Map<Integer, AttributeMetaData> sourceAmd = (Map<Integer, AttributeMetaData>)style.getMetaData();  
       Map<Integer, AttributeMetaData> destAmd   = ((StyledFeatureCollectionInterface)styledObject).getAttributeMetaDataMap();  
       if ( destAmd != null && sourceAmd != null ) {  
         destAmd.clear();  
         destAmd.putAll( sourceAmd );  
       }  
       return;  
     }  
   
     throw new UnsupportedOperationException("Style is not compatible to object: " +  
                                             (style.getMetaData() == null ? null : style.getMetaData().getClass().getSimpleName()) +  
                                             " <-> " +  
                                             (styledObject == null ? null : styledObject.getClass().getSimpleName()));  
   }  
   
   /**  
    * Returns the style a {@link StyledLayerInterface} as a {@link StyledLayerStyle}.  
    * @param styledObject a styled object  
    * @return {@code StyledLayerStyle<RasterLegendData>} for {@link StyledGridCoverageInterface}  
    *         or {@code StyledLayerStyle<Map<Integer,AttributeMetaData>>} for  
    *         {@link StyledFeatureCollectionInterface}  
    */  
   public static StyledLayerStyle<?> getStyledLayerStyle(StyledLayerInterface styledObject) {  
     if ( styledObject instanceof StyledGridCoverageInterface )  
       return getStyledLayerStyle( (StyledGridCoverageInterface)styledObject );  
     if ( styledObject instanceof StyledFeatureCollectionInterface )  
       return getStyledLayerStyle( (StyledFeatureCollectionInterface)styledObject );  
     throw new UnsupportedOperationException("Unknown type of StyledLayerInterface: "+(styledObject == null ? null : styledObject.getClass().getSimpleName()));  
   }  
   
   /**  
    * Returns the style and raster meta data of a {@link StyledGridCoverageInterface}  
    * as a {@link StyledLayerStyle}.  
    * @param styledGC a styled grid coverage  
    */  
   public static StyledLayerStyle<RasterLegendData> getStyledLayerStyle(StyledGridCoverageInterface styledGC) {  
     return new StyledLayerStyle<RasterLegendData>(  
       styledGC.getStyle(),  
       styledGC.getLegendMetaData()  
     );  
   }  
   
   /**  
    * Returns the style and attribute meta data of a {@link StyledFeatureCollectionInterface}  
    * as a {@link StyledLayerStyle}.  
    * @param styledFC a styled feature collection  
    */  
   public static StyledLayerStyle<Map<Integer,AttributeMetaData>> getStyledLayerStyle(StyledFeatureCollectionInterface styledFC) {  
     return new StyledLayerStyle<Map<Integer,AttributeMetaData>>(  
       styledFC.getStyle(),  
       styledFC.getAttributeMetaDataMap()  
     );  
   }  
   
   /**  
    * Loads a {@linkplain Style SLD-Style} and {@linkplain RasterLegendData Raster-LegendData}  
    * for a given geo-object (raster) source. The SLD file must be present. A missing  
    * raster legend-data file is tolerated.  
    * @param geoObjectURL URL of the (already read) raster object  
    * @param sldExt file extention for the SLD file  
    * @param rldExt file extention for the raster legend-data file  
    * @return {@code null} in case of any error  
    */  
   public static StyledLayerStyle<RasterLegendData> loadStyledRasterStyle(URL geoObjectURL, String sldExt, String rldExt) {  
     RasterLegendData metaData = null;  
     Style sldStyle = null;  
     try {  
       Style[] styles = StylingUtil.loadSLD(IOUtil.changeUrlExt(geoObjectURL, sldExt));  
       // SLD must be present  
       if ( styles == null || styles.length == 0 )  
         return null;  
       sldStyle = styles[0];  
     }  
     catch (Exception err) {  
       // SLD must be present  
       LangUtil.logDebugError(LOGGER,err);  
       return null;  
     }  
   
     try {  
       metaData = StyledLayerUtil.loadRasterLegendData( IOUtil.changeUrlExt(geoObjectURL,rldExt) );  
     } catch (FileNotFoundException err) {  
       // ignore missing raster legend data  
     } catch (Exception err) {  
       // any other error during legend data creation leads to error  
       LangUtil.logDebugError(LOGGER,err);  
       return null;  
     }  
     return new StyledLayerStyle<RasterLegendData>(sldStyle, metaData);  
   }  
   
   /**  
    * Loads a {@linkplain Style SLD-Style} from a {@code .sld} file and  
    * {@linkplain RasterLegendData Raster-LegendData} from a {@code .rld} file  
    * for a given geo-object (raster) source. The SLD file must be present. A missing  
    * raster legend-data file is tolerated.  
    * @param geoObjectURL URL of the (already read) raster object  
    * @param sldExt file extention for the SLD file  
    * @param rldExt file extention for the raster legend-data file  
    * @return {@code null} in case of any error  
    */  
   public static StyledLayerStyle<RasterLegendData> loadStyledRasterStyle(URL geoObjectURL) {  
     return loadStyledRasterStyle(geoObjectURL, "sld", "rld");  
   }  
   
   /**  
    * Loads a {@linkplain Style SLD-Style} and a {@linkplain AttributeMetaData AttributeMetaData-Map}  
    * for a given geo-object (feature) source. The SLD file must be present. A missing  
    * attribute meta-data file is tolerated.  
    * @param geoObjectURL URL of the (already read) feature object  
    * @param sldExt file extention for the SLD file  
    * @param rldExt file extention for the raster legend-data file  
    * @return {@code null} in case of any error  
    */  
   public static StyledLayerStyle<Map<Integer,AttributeMetaData>> loadStyledFeatureStyle(URL geoObjectURL, String sldExt, String rldExt) {  
     Map<Integer,AttributeMetaData> metaData = null;  
     Style                          sldStyle = null;  
     try {  
       Style[] styles = StylingUtil.loadSLD(IOUtil.changeUrlExt(geoObjectURL, sldExt));  
       // SLD must be present  
       if ( styles == null || styles.length == 0 )  
         return null;  
       sldStyle = styles[0];  
     } catch (Exception err) {  
       // SLD must be present  
       LangUtil.logDebugError(LOGGER,err);  
       return null;  
     }  
   
     try {  
       metaData = StyledLayerUtil.loadAttributeMetaDataMap( IOUtil.changeUrlExt(geoObjectURL,rldExt) );  
     } catch (FileNotFoundException err) {  
       // ignore missing attribute meta data  
     } catch (Exception err) {  
       // any other error during meta data creation leads to error  
       LangUtil.logDebugError(LOGGER,err);  
       return null;  
     }  
   
     return new StyledLayerStyle<Map<Integer,AttributeMetaData>>(sldStyle, metaData);  
   }  
   
   /**  
    * Loads a {@linkplain Style SLD-Style} from a {@code .sld} file and  
    * {@linkplain AttributeMetaData AttributeMetaData-Map} from a {@code .amd} file  
    * for a given geo-object (feature) source. The SLD file must be present. A missing  
    * attribute meta-data file is tolerated.  
    * @param geoObjectURL URL of the (already read) feature object  
    * @param sldExt file extention for the SLD file  
    * @param rldExt file extention for the raster legend-data file  
    * @return {@code null} in case of any error  
    */  
   public static StyledLayerStyle<Map<Integer,AttributeMetaData>> loadStyledFeatureStyle(URL geoObjectURL) {  
     return loadStyledFeatureStyle(geoObjectURL, "sld", "amd");  
   }  
   
   /**  
    * Stores a {@linkplain Style SLD-Style} and {@linkplain RasterLegendData Raster-LegendData}  
    * for a given geo-object (raster) source.  
    * @param style  style to save  
    * @param geoObjectURL URL of the raster object  
    * @param sldExt file extention for the SLD file  
    * @param mdExt file extention for the meta-data file  
    */  
   public static <T> void saveStyledLayerStyle(StyledLayerStyle<T> style, URL geoObjectURL, String sldExt, String mdExt) throws Exception {  
     // Store the SLD  
     Style sldStyle = style.getGeoObjectStyle();  
     if ( sldStyle != null ) {  
       StylingUtil.saveStyleToSLD(  
          sldStyle,  
          IOUtil.changeFileExt(  
               new File(geoObjectURL.toURI()),  
               sldExt  
          )  
       );  
     }  
   
     // Store the meta data  
     T metaData = style.getMetaData();  
     if ( metaData != null ) {  
       if ( metaData instanceof RasterLegendData ) {  
         saveRasterLegendData(  
             (RasterLegendData)metaData,  
             IOUtil.changeUrlExt(geoObjectURL,mdExt)  
         );  
 //      } else if ( metaData instanceof Map<Integer,AttributeMetaData> ) { // LEIDER NICHT KOMPILIERBAR!!  
       } else if ( metaData instanceof Map ) {  
         saveAttributeMetaDataMap(  
             (Map<Integer,AttributeMetaData>)metaData,  
             IOUtil.changeUrlExt(geoObjectURL,mdExt)  
         );  
       } else  
         throw new UnsupportedOperationException("Export for meta data not yet supported: "+metaData.getClass().getSimpleName());  
     }  
   }  
   
   /**  
    * Stores the {@linkplain Style SLD-Style} to a {@code .sld} file and  
    * the meta data ({@link RasterLegendData} or {@link AttributeMetaData})  
    * to a {@code .rld} or {@code .amd} file.  
    * for a given geo-object source.  
    * @param style  style to save  
    * @param geoObjectURL URL of the (already read) raster object  
    */  
   public static void saveStyledLayerStyle(StyledLayerStyle<?> style, URL geoObjectURL) throws Exception {  
     if ( style.getMetaData() instanceof RasterLegendData )  
       saveStyledLayerStyle(style,geoObjectURL, "sld", "rld");  
     else  
       saveStyledLayerStyle(style,geoObjectURL, "sld", "amd");  
   }  
     
     
451    
452          /**          /**
453           * Creates a {@link Box} that shows a legend for a list of           * Loads a {@link RasterLegendData} object from an URL.
454             *
455             * @param documentUrl
456             *            {@link URL} to parse
457             * @see #parseAttributeMetaData(Element)
458             */
459            public static RasterLegendData loadRasterLegendData(final URL documentUrl)
460                            throws Exception {
461                    final Document document = SAX_BUILDER.build(documentUrl);
462                    return parseRasterLegendData(document.getRootElement());
463            }
464    
465            /**
466             * Creates an JDOM {@link Element} for the given {@link RasterLegendData}
467             * map.
468             *
469             * @param rld
470             *            raster legend data
471             */
472            public static Element createRasterLegendDataElement(
473                            final RasterLegendData rld) {
474                    final Element element = new Element(ELEM_NAME_RLD, AMLURI);
475                    element.setAttribute("paintGaps", rld.isPaintGaps().toString());
476                    for (final Double key : rld.getSortedKeys()) {
477                            final Element item = new Element(ELEM_NAME_RASTERLEGEND, AMLURI);
478                            item.setAttribute("value", key.toString());
479                            item.addContent(createTranslationElement("label", rld.get(key)));
480                            element.addContent(item);
481                    }
482                    return element;
483            }
484    
485            /**
486             * Creates {@link RasterLegendData} from a {@link ColorMap}.
487             *
488             * @param colorMap
489             *            a color map
490             * @param paintGaps
491             *            indicated whether gaps are painted between the legend items
492             * @param digits
493             *            number of digits the grid value classes (and legend) are
494             *            rounded to (null means no round; >= 0 means digits after
495             *            comma; < 0 means digits before comma)
496             */
497            public static RasterLegendData generateRasterLegendData(
498                            final ColorMap colorMap, final boolean paintGaps,
499                            final Integer digits) {
500                    final DecimalFormat decFormat = digits != null ? new DecimalFormat(
501                                    SwingUtil.getNumberFormatPattern(digits)) : null;
502                    final RasterLegendData rld = new RasterLegendData(paintGaps);
503                    for (final ColorMapEntry cme : colorMap.getColorMapEntries()) {
504                            final double value = StylingUtil.getQuantityFromColorMapEntry(cme);
505                            String label = cme.getLabel();
506                            // if no label is set (e.g. quantitative style),
507                            // use the value as label
508                            if (label == null || label.equals(""))
509                                    if (digits == null)
510                                            label = String.valueOf(value);
511                                    else
512                                            label = decFormat.format(LangUtil.round(value, digits));
513                            rld.put(value, new Translation("   " + label));
514                    }
515                    return rld;
516            }
517    
518            /**
519             * Creates {@link RasterLegendData} from the {@link ColorMap} of a style.
520             *
521             * @param style
522             *            a raster style (must contain a {@link RasterSymbolizer})
523             * @param paintGaps
524             *            indicated whether gaps are painted between the legend items
525             * @param digits
526             *            number of digits the grid value classes (and legend) are
527             *            rounded to (null means no round; >= 0 means digits after
528             *            comma; < 0 means digits before comma)
529             */
530            public static RasterLegendData generateRasterLegendData(final Style style,
531                            final boolean paintGaps, final Integer digits) {
532                    final ColorMap colorMap = StylingUtil.getColorMapFromStyle(style);
533                    if (colorMap == null)
534                            throw new IllegalArgumentException(
535                                            "Color map can not be determined from style!");
536                    return generateRasterLegendData(colorMap, paintGaps, digits);
537            }
538    
539            /**
540             * Saves a {@link RasterLegendData} to an URL.
541             *
542             * @param rld
543             *            raster legend data
544             * @param documentUrl
545             *            {@link URL} to store the XML
546             */
547            public static void saveRasterLegendData(final RasterLegendData rld,
548                            final URL documentUrl) throws Exception {
549                    // Create XML-Document
550                    final FileWriter out = new FileWriter(new File(documentUrl.toURI()));
551                    XML_OUTPUTTER.output(createRasterLegendDataElement(rld), out);
552                    out.flush();
553                    out.close();
554            }
555    
556            /**
557             * Parses a {@link Translation} object from an JDOM-{@link Element}. This
558             * method works like {@link AMLImport#parseTranslation(org.w3c.dom.Node},
559             * but for JDOM.
560             *
561             * @param element
562             *            {@link Element} to parse
563             */
564            public final static Translation parseTranslation(final Element element) {
565                    final Translation trans = new Translation();
566    
567                    if (element == null)
568                            return trans;
569    
570                    for (final Element translationElement : (List<Element>) element
571                                    .getChildren()) {
572                            final String name = translationElement.getName();
573                            if (name == null)
574                                    continue;
575    
576                            // lang attribute
577                            String lang = translationElement.getAttributeValue("lang");
578                            // set the default, if no language code is set
579                            if (lang == null)
580                                    lang = Translation.DEFAULT_KEY;
581    
582                            final String translationText = translationElement.getValue();
583                            if (translationText == null)
584                                    trans.put(lang, "");
585                            else
586                                    trans.put(lang, translationText);
587                    }
588    
589                    // if no <translation> is given, the value of the node should
590                    // be used as a default translation
591                    if (trans.size() == 0)
592                            trans.put(Translation.DEFAULT_KEY, element.getValue());
593                    // trans = new Translation(
594                    // ((List<Element>)element.getChildren()).get(0).getValue() );
595    
596                    return trans;
597            }
598    
599            /**
600             * Creates an JDOM {@link Element} for the given {@link Translation}.
601             *
602             * @param tagname
603             *            Name of the Element
604             * @param translation
605             *            Translation to store in the Element
606             */
607            public final static Element createTranslationElement(final String tagname,
608                            final Translation translation) {
609                    final Element element = new Element(tagname, AMLURI);
610                    if (translation == null)
611                            throw new UnsupportedOperationException(
612                                            "Translation element can not be created from null!");
613    
614                    // If only a default translation is set, the <translation
615                    // lang="..">..</tranlation>
616                    // part is not used
617                    if (translation.keySet().size() == 1
618                                    && translation.get(Translation.DEFAULT_KEY) != null) {
619                            element.addContent(translation.get(Translation.DEFAULT_KEY));
620                            return element;
621                    }
622    
623                    // add a <translation lang="..">..</tranlation> part to the element for
624                    // all languages
625                    for (final String lang : translation.keySet()) {
626                            final Element translationElement = new Element(
627                                            ELEM_NAME_TRANSLATION, AMLURI);
628                            translationElement.setAttribute("lang", lang);
629                            String translationString = translation.get(lang);
630                            if (translationString == null)
631                                    translationString = "";
632                            translationElement.addContent(translationString);
633                            element.addContent(translationElement);
634                    }
635    
636                    return element;
637            }
638    
639            /**
640             * Sets a style to {@link StyledLayerInterface}.
641             *
642             * @param styledObject
643             *            a styled object
644             * @param style
645             *            a Style
646             */
647            public static void setStyledLayerStyle(
648                            final StyledLayerInterface styledObject,
649                            final StyledLayerStyle<?> style) {
650                    // set SLD style
651                    styledObject.setStyle(style.getGeoObjectStyle());
652                    // set meta data
653                    if (styledObject instanceof StyledGridCoverageInterface
654                                    && (style.getMetaData() instanceof RasterLegendData || style
655                                                    .getMetaData() == null)) {
656                            final RasterLegendData sourceRld = (RasterLegendData) style
657                                            .getMetaData();
658                            final RasterLegendData destRld = ((StyledGridCoverageInterface) styledObject)
659                                            .getLegendMetaData();
660                            if (destRld != null && sourceRld != null) {
661                                    destRld.setPaintGaps(sourceRld.isPaintGaps());
662                                    destRld.clear();
663                                    destRld.putAll(sourceRld);
664                            }
665                            return;
666                    }
667                    if (styledObject instanceof StyledFeatureCollectionInterface
668                                    && (style.getMetaData() instanceof Map || style.getMetaData() == null)) {
669                            final AttributeMetadataMap sourceAmd = (AttributeMetadataMap) style
670                                            .getMetaData();
671                            final AttributeMetadataMap destAmd = ((StyledFeatureCollectionInterface) styledObject)
672                                            .getAttributeMetaDataMap();
673                            if (destAmd != null && sourceAmd != null) {
674                                    destAmd.clear();
675                                    destAmd.putAll(sourceAmd);
676                            }
677                            return;
678                    }
679    
680                    throw new UnsupportedOperationException(
681                                    "Style is not compatible to object: "
682                                                    + (style.getMetaData() == null ? null : style
683                                                                    .getMetaData().getClass().getSimpleName())
684                                                    + " <-> "
685                                                    + (styledObject == null ? null : styledObject
686                                                                    .getClass().getSimpleName()));
687            }
688    
689            /**
690             * Returns the style a {@link StyledLayerInterface} as a
691             * {@link StyledLayerStyle}.
692             *
693             * @param styledObject
694             *            a styled object
695             * @return {@code StyledLayerStyle<RasterLegendData>} for
696             *         {@link StyledGridCoverageInterface} or {@code
697             *         StyledLayerStyle<Map<Integer,AttributeMetaData>>} for
698             *         {@link StyledFeatureCollectionInterface}
699             */
700            public static StyledLayerStyle<?> getStyledLayerStyle(
701                            final StyledLayerInterface styledObject) {
702                    if (styledObject instanceof StyledGridCoverageInterface)
703                            return getStyledLayerStyle((StyledGridCoverageInterface) styledObject);
704                    if (styledObject instanceof StyledFeatureCollectionInterface)
705                            return getStyledLayerStyle((StyledFeatureCollectionInterface) styledObject);
706                    throw new UnsupportedOperationException(
707                                    "Unknown type of StyledLayerInterface: "
708                                                    + (styledObject == null ? null : styledObject
709                                                                    .getClass().getSimpleName()));
710            }
711    
712            /**
713             * Returns the style and raster meta data of a
714             * {@link StyledGridCoverageInterface} as a {@link StyledLayerStyle}.
715             *
716             * @param styledGC
717             *            a styled grid coverage
718             */
719            public static StyledLayerStyle<RasterLegendData> getStyledLayerStyle(
720                            final StyledGridCoverageInterface styledGC) {
721                    return new StyledLayerStyle<RasterLegendData>(styledGC.getStyle(),
722                                    styledGC.getLegendMetaData());
723            }
724    
725            /**
726             * Returns the style and attribute meta data of a
727             * {@link StyledFeatureCollectionInterface} as a {@link StyledLayerStyle}.
728             *
729             * @param styledFC
730             *            a styled feature collection
731             */
732            public static StyledLayerStyle<AttributeMetadataMap> getStyledLayerStyle(
733                            final StyledFeatureCollectionInterface styledFC) {
734                    return new StyledLayerStyle<AttributeMetadataMap>(styledFC.getStyle(),
735                                    styledFC.getAttributeMetaDataMap());
736            }
737    
738            /**
739             * Loads a {@linkplain Style SLD-Style} and {@linkplain RasterLegendData
740             * Raster-LegendData} for a given geo-object (raster) source. The SLD file
741             * must be present. A 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                            final URL geoObjectURL, final String sldExt, final String rldExt) {
753                    RasterLegendData metaData = null;
754                    Style sldStyle = null;
755                    try {
756                            final Style[] styles = StylingUtil.loadSLD(IOUtil.changeUrlExt(
757                                            geoObjectURL, sldExt));
758                            // SLD must be present
759                            if (styles == null || styles.length == 0)
760                                    return null;
761                            sldStyle = styles[0];
762                    } catch (final Exception err) {
763                            // SLD must be present
764                            LangUtil.logDebugError(LOGGER, err);
765                            return null;
766                    }
767    
768                    try {
769                            metaData = StyledLayerUtil.loadRasterLegendData(IOUtil
770                                            .changeUrlExt(geoObjectURL, rldExt));
771                    } catch (final FileNotFoundException err) {
772                            // ignore missing raster legend data
773                    } catch (final Exception err) {
774                            // any other error during legend data creation leads to error
775                            LangUtil.logDebugError(LOGGER, err);
776                            return null;
777                    }
778                    return new StyledLayerStyle<RasterLegendData>(sldStyle, metaData);
779            }
780    
781            /**
782             * Loads a {@linkplain Style SLD-Style} from a {@code .sld} file and
783             * {@linkplain RasterLegendData Raster-LegendData} from a {@code .rld} file
784             * for a given geo-object (raster) source. The SLD file must be present. A
785             * missing raster legend-data file is tolerated.
786             *
787             * @param geoObjectURL
788             *            URL of the (already read) raster object
789             * @param sldExt
790             *            file extention for the SLD file
791             * @param rldExt
792             *            file extention for the raster legend-data file
793             * @return {@code null} in case of any error
794             */
795            public static StyledLayerStyle<RasterLegendData> loadStyledRasterStyle(
796                            final URL geoObjectURL) {
797                    return loadStyledRasterStyle(geoObjectURL, "sld", "rld");
798            }
799    
800            /**
801             * Loads a {@linkplain Style SLD-Style} and a
802             * {@linkplain AttributeMetadataImpl AttributeMetaData-Map} for a given
803             * geo-object (feature) source. The SLD file must be present. A missing
804             * attribute meta-data file is tolerated.
805             *
806             * @param geoObjectURL
807             *            URL of the (already read) feature object
808             * @param sldExt
809             *            file extention for the SLD file
810             * @param rldExt
811             *            file extention for the raster legend-data file
812             * @return {@code null} in case of any error
813             */
814            public static StyledLayerStyle<AttributeMetadataMap> loadStyledFeatureStyle(
815                            final URL geoObjectURL, final String sldExt, final String rldExt) {
816                    AttributeMetadataMap metaData = null;
817                    Style sldStyle = null;
818                    try {
819                            final Style[] styles = StylingUtil.loadSLD(IOUtil.changeUrlExt(
820                                            geoObjectURL, sldExt));
821                            // SLD must be present
822                            if (styles == null || styles.length == 0)
823                                    return null;
824                            sldStyle = styles[0];
825                    } catch (final Exception err) {
826                            // SLD must be present
827                            LangUtil.logDebugError(LOGGER, err);
828                            return null;
829                    }
830    
831                    try {
832                            metaData = StyledLayerUtil.loadAttributeMetaDataMap(IOUtil
833                                            .changeUrlExt(geoObjectURL, rldExt));
834                    } catch (final FileNotFoundException err) {
835                            // ignore missing attribute meta data
836                    } catch (final Exception err) {
837                            // any other error during meta data creation leads to error
838                            LangUtil.logDebugError(LOGGER, err);
839                            return null;
840                    }
841    
842                    return new StyledLayerStyle<AttributeMetadataMap>(sldStyle, metaData);
843            }
844    
845            /**
846             * Loads a {@linkplain Style SLD-Style} from a {@code .sld} file and
847             * {@linkplain AttributeMetadataImpl AttributeMetaData-Map} from a {@code
848             * .amd} file for a given geo-object (feature) source. The SLD file must be
849             * present. A missing attribute meta-data file is tolerated.
850             *
851             * @param geoObjectURL
852             *            URL of the (already read) feature object
853             * @param sldExt
854             *            file extention for the SLD file
855             * @param rldExt
856             *            file extention for the raster legend-data file
857             * @return {@code null} in case of any error
858             */
859            public static StyledLayerStyle<AttributeMetadataMap> loadStyledFeatureStyle(
860                            final URL geoObjectURL) {
861                    return loadStyledFeatureStyle(geoObjectURL, "sld", "amd");
862            }
863    
864            /**
865             * Stores a {@linkplain Style SLD-Style} and {@linkplain RasterLegendData
866             * Raster-LegendData} for a given geo-object (raster) source.
867             *
868             * @param style
869             *            style to save
870             * @param geoObjectURL
871             *            URL of the raster object
872             * @param sldExt
873             *            file extention for the SLD file
874             * @param mdExt
875             *            file extention for the meta-data file
876             */
877            public static <T> void saveStyledLayerStyle(
878                            final StyledLayerStyle<T> style, final URL geoObjectURL,
879                            final String sldExt, final String mdExt) throws Exception {
880                    // Store the SLD
881                    final Style sldStyle = style.getGeoObjectStyle();
882                    if (sldStyle != null) {
883                            StylingUtil.saveStyleToSLD(sldStyle, IOUtil.changeFileExt(new File(
884                                            geoObjectURL.toURI()), sldExt));
885                    }
886    
887                    // Store the meta data
888                    final T metaData = style.getMetaData();
889                    if (metaData != null) {
890                            if (metaData instanceof RasterLegendData) {
891                                    saveRasterLegendData((RasterLegendData) metaData, IOUtil
892                                                    .changeUrlExt(geoObjectURL, mdExt));
893                                    // } else if ( metaData instanceof
894                                    // Map<Integer,AttributeMetaData> ) { // LEIDER NICHT
895                                    // KOMPILIERBAR!!
896                            } else if (metaData instanceof Map) {
897                                    saveAttributeMetaDataMap((AttributeMetadataMap) metaData,
898                                                    IOUtil.changeUrlExt(geoObjectURL, mdExt));
899                            } else
900                                    throw new UnsupportedOperationException(
901                                                    "Export for meta data not yet supported: "
902                                                                    + metaData.getClass().getSimpleName());
903                    }
904            }
905    
906            /**
907             * Stores the {@linkplain Style SLD-Style} to a {@code .sld} file and the
908             * meta data ({@link RasterLegendData} or {@link AttributeMetadataImpl}) to
909             * a {@code .rld} or {@code .amd} file. for a given geo-object source.
910             *
911             * @param style
912             *            style to save
913             * @param geoObjectURL
914             *            URL of the (already read) raster object
915             */
916            public static void saveStyledLayerStyle(final StyledLayerStyle<?> style,
917                            final URL geoObjectURL) throws Exception {
918                    if (style.getMetaData() instanceof RasterLegendData)
919                            saveStyledLayerStyle(style, geoObjectURL, "sld", "rld");
920                    else
921                            saveStyledLayerStyle(style, geoObjectURL, "sld", "amd");
922            }
923    
924            /**
925             * *If appended to the name of a rule, this rule shall not be shown in the
926             * legend
927             */
928            public final static String HIDE_IN_LAYER_LEGEND_HINT = "HIDE_IN_LEGEND";
929    
930            /**
931             * Creates a {@link JPanel} that shows a legend for a list of
932           * {@link FeatureTypeStyle}s and a targeted featureType           * {@link FeatureTypeStyle}s and a targeted featureType
933           *           *
934           * @param featureType           * @param featureType
# Line 751  public class StyledLayerUtil { Line 939  public class StyledLayerUtil {
939           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons
940           *         Kr&uuml;ger</a>           *         Kr&uuml;ger</a>
941           */           */
942          public static Box createLegendPanel(List<FeatureTypeStyle> list,          public static JPanel createLegendPanel(Style style,
943                          SimpleFeatureType featureType, int iconWidth, int iconHeight) {                          final SimpleFeatureType featureType, final int iconWidth,
944                            final int iconHeight) {
945    
946                  Box box = new Box(BoxLayout.Y_AXIS) {                  final List<FeatureTypeStyle> list = style.featureTypeStyles();
947    
948                          /**                  final JPanel panel = new JPanel(new MigLayout("wrap 2", "[]:3:[]"));
                          * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot  
                          * gemacht wird) wird. Dann werden wird der Hintergrund auf WEISS  
                          * gesetzt.  
                          *  
                          * @author <a href="mailto:[email protected]">Stefan Alfons  
                          *         Kr&uuml;ger</a>  
                          */  
                         @Override  
                         public void print(Graphics g) {  
                                 final Color orig = getBackground();  
                                 setBackground(Color.WHITE);  
                                 // wrap in try/finally so that we always restore the state  
                                 try {  
                                         super.print(g);  
                                 } finally {  
                                         setBackground(orig);  
                                 }  
                         }  
                 };  
949    
950                  for (FeatureTypeStyle ftStyle : list) {                  if (style == null) {
951                            // No Style => no legend
952                            return panel;
953                    }
954    
955                    for (final FeatureTypeStyle ftStyle : list) {
956    
957                          // One child-node for every rule                          // One child-node for every rule
958                          List<Rule> rules = ftStyle.rules();                          final List<Rule> rules = ftStyle.rules();
959                          for (Rule rule : rules) {                          for (final Rule rule : rules) {
960    
961                                    // Check if this RULE shall actually appear in the legend
962                                    if (rule.getName() != null
963                                                    && rule.getName().endsWith(HIDE_IN_LAYER_LEGEND_HINT))
964                                            continue;
965    
966                                  /**                                  /**
967                                   * Let's not create a hbox for Rules that only contain                                   * Let's not create a hbox for Rules that only contain
# Line 791  public class StyledLayerUtil { Line 971  public class StyledLayerUtil {
971                                                  .size() == rule.getSymbolizers().length)                                                  .size() == rule.getSymbolizers().length)
972                                          continue;                                          continue;
973    
974                                  Box hbox = new Box(BoxLayout.X_AXIS) {                                  final BufferedImage imageForRule = LegendIconFeatureRenderer
975                                                    .getInstance().createImageForRule(rule, featureType,
976                                                                    new Dimension(iconWidth, iconHeight));
977    
978                                    final ImageIcon legendIcon = new ImageIcon(imageForRule);
979    
980                                    final JLabel iconLabel = new JLabel(legendIcon);
981                                    panel.add(iconLabel, "sgx1");
982                                    // hbox.setAlignmentX(0f);
983                                    // hbox.add(iconLabel);
984                                    // hbox.add(Box.createHorizontalStrut(3));
985    
986                                    final Translation labelT = new Translation();
987                                    labelT.fromOneLine(rule.getDescription().getTitle());
988                                    final JLabel classTitleLabel = new JLabel(labelT.toString());
989    
990                                          /**                                  panel.add(classTitleLabel, "sgx2");
991                                           * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein                                  classTitleLabel.setLabelFor(iconLabel);
992                                           * Screenshot gemacht wird) wird. Dann werden wird der                          }
993                                           * Hintergrund auf WEISS gesetzt.                  }
994                                           *  
995                                           * @author <a href="mailto:[email protected]">Stefan                  return panel;
996                                           *         Alfons Kr&uuml;ger</a>          }
997                                           */  
998                                          @Override          /**
999                                          public void print(Graphics g) {           * Creates a {@link JComponent} that contains a legend for a given
1000                                                  final Color orig = getBackground();           * rasterLayer and a given {@link Style}.
1001                                                  setBackground(Color.WHITE);           *
1002                                                  // wrap in try/finally so that we always restore the           * @param style
1003                                                  // state           *            if <code>null</code>, the default {@link Style} is extracetd
1004                                                  try {           *            from the {@link StyledRasterInterface}
1005                                                          super.print(g);           */
1006                                                  } finally {          public static JPanel createLegendPanel(
1007                                                          setBackground(orig);                          final StyledRasterInterface<?> styledRaster, Style style,
1008                                                  }                          final int iconWidth, final int iconHeight) {
1009    
1010                    // If no style is given, we use the default style for this layer
1011                    if (style == null)
1012                            style = styledRaster.getStyle();
1013    
1014                    /**
1015                     * Determine whether a Style is responsible for the coloring
1016                     */
1017                    ColorModel colorModel = null;
1018                    if (!isStyleable(styledRaster)
1019                                    || (isStyleable(styledRaster) && style == null)) {
1020                            colorModel = getColorModel(styledRaster);
1021                    }
1022    
1023                    final RasterLegendData rasterLegendData = styledRaster
1024                                    .getLegendMetaData();
1025                    final List<Double> legendRasterValues = rasterLegendData
1026                                    .getSortedKeys();
1027                    final Map<Double, GridCoverage2D> sampleRasters = rasterLegendData
1028                                    .createSampleRasters();
1029    
1030                    final JPanel panel = new JPanel(new MigLayout("wrap 2, gapy 0"));
1031    
1032                    for (final Double rValue : legendRasterValues) {
1033    
1034                            // final Dimension ICON_SIZE = new Dimension(iconWidth,
1035                            // new JLabel().getFontMetrics(new JLabel().getFont())
1036                            // .getHeight() > 5 ? new JLabel().getFontMetrics(
1037                            // new JLabel().getFont()).getHeight() : iconHeight);
1038    
1039                            // ****************************************************************************
1040                            // Create the actual icon
1041                            // ****************************************************************************
1042                            final BufferedImage buffImage = new BufferedImage(iconWidth,
1043                                            iconHeight, BufferedImage.TYPE_INT_ARGB);
1044    
1045                            final Graphics2D graphics = buffImage.createGraphics();
1046    
1047                            if (colorModel != null) {
1048                                    // The colors come from the ColorModel!
1049    
1050                                    try {
1051                                            Object inData = null;
1052                                            switch (colorModel.getTransferType()) {
1053                                            case DataBuffer.TYPE_BYTE:
1054                                                    inData = new byte[] { rValue.byteValue() };
1055                                                    break;
1056                                            case DataBuffer.TYPE_USHORT:
1057                                                    inData = new short[] { rValue.shortValue() };
1058                                                    break;
1059                                            case DataBuffer.TYPE_INT:
1060                                                    inData = new int[] { rValue.intValue() };
1061                                                    break;
1062                                            case DataBuffer.TYPE_SHORT:
1063                                                    inData = new short[] { rValue.shortValue() };
1064                                                    break;
1065                                            case DataBuffer.TYPE_FLOAT:
1066                                                    inData = new float[] { rValue.floatValue() };
1067                                                    break;
1068                                            case DataBuffer.TYPE_DOUBLE:
1069                                                    inData = new double[] { rValue.doubleValue() };
1070                                                    break;
1071                                            default:
1072                                                    inData = rValue.intValue();
1073                                          }                                          }
1074                                  };                                          final Color color = new Color(colorModel.getRGB(inData));
1075                                            graphics.setBackground(color);
1076                                            graphics.setColor(color);
1077                                            graphics.fillRect(0, 0, iconWidth, iconHeight);
1078                                    } catch (final Exception e) {
1079                                            LOGGER.info(
1080                                                            "Dann nehmen wir halt den GridCoverageRenderer", e);
1081                                            colorModel = null;
1082                                    }
1083                            } else {
1084                                    // The colors come from the Style
1085    
1086                                  /**                                  /**
1087                                   * The size of the legend Symbol is dependent on the size of the                                   * The coverage contains only one value of value rValue
                                  * font.  
1088                                   */                                   */
1089                                  final int fontHeight = new JLabel().getFontMetrics(                                  final GridCoverage2D sampleCov = sampleRasters.get(rValue);
1090                                                  new JLabel().getFont()).getHeight();                                  GridCoverageRenderer renderer;
1091                                                                    try {
1092                                  final Dimension ICON_SIZE = new Dimension(iconWidth,                                          renderer = new GridCoverageRenderer(sampleCov
1093                                                  fontHeight > 5 ? fontHeight : iconHeight);                                                          .getCoordinateReferenceSystem(), JTSUtil
1094                                                            .createEnvelope(sampleCov.getEnvelope()),
1095                                  // ****************************************************************************                                                          new Rectangle(iconWidth, iconHeight),
1096                                  // Create the actual icon                                                          (AffineTransform) null);
1097                                  // ****************************************************************************                                  } catch (final Exception e1) {
1098                                  final BufferedImage imageForRule = LegendIconFeatureRenderer                                          throw new RuntimeException(
1099                                                  .getInstance().createImageForRule(rule, featureType,                                                          "Creating a GridCoverageRenderer failed:", e1);
1100                                                                  ICON_SIZE);                                  }
1101    
1102                                  // LOGGER.debug("Creating a new Legend Image for RUle name =                                  /**
1103                                  // "+rule.getName());                                   * Iterate over all FeatureTypeStyles.
1104                                     */
1105                                    final List<RasterSymbolizer> rSymbols = StylingUtil
1106                                                    .getRasterSymbolizers(style);
1107    
1108                                  ImageIcon legendIcon = new ImageIcon(imageForRule);                                  for (final RasterSymbolizer symbolizer : rSymbols) {
1109                                            try {
1110                                                    renderer.paint(graphics, sampleCov, symbolizer);
1111                                            } catch (final Exception ee) {
1112                                                    LOGGER.error("Unable to paint " + symbolizer
1113                                                                    + " into the legend image", ee);
1114                                            }
1115                                    }
1116                            }
1117    
1118                                  final JLabel iconLabel = new JLabel(legendIcon);                          final JLabel iconLabel = new JLabel(new ImageIcon(buffImage));
1119                                  hbox.setAlignmentX(0f);                          panel.add(iconLabel, "sgx1");
                                 hbox.add(iconLabel);  
                                 hbox.add(Box.createHorizontalStrut(3));  
   
                                 // ****************************************************************************  
                                 // The labeltext is read from the SLD. Its either the title  
                                 // directly, or interpreted as OneLine Code  
                                 // ****************************************************************************  
                                 // final String rawText =  
                                 // rule.getDescription().getTitle().toString();  
                                 final String rawText = rule.getDescription().getTitle().toString();  
1120    
1121                                  Translation labelT = new Translation();                          final Translation labelT = rasterLegendData.get(rValue);
1122                                  labelT.fromOneLine(rawText);                          final JLabel classTitleLabel = new JLabel(labelT.toString());
1123                            panel.add(classTitleLabel, "sgx2"
1124                                            + (rasterLegendData.isPaintGaps() ? ", gapy 0:0:0 5:5:5"
1125                                                            : ""));
1126                            classTitleLabel.setLabelFor(iconLabel);
1127    
1128                            if (rasterLegendData.isPaintGaps()) {
1129                                    iconLabel
1130                                                    .setBorder(BorderFactory.createLineBorder(Color.black));
1131                            }
1132    
1133                                  final JLabel classTitleLabel = new JLabel(labelT.toString());                  }
                                 hbox.add(classTitleLabel);  
                                 classTitleLabel.setLabelFor(iconLabel);  
1134    
1135                                  box.add(hbox);                  return panel;
1136            }
1137    
1138            /**
1139             * Extracts the {@link ColorModel} of any {@link StyledRasterInterface}. May
1140             * return <code>null</code> if the geoobject can not be accessed.
1141             */
1142            @SuppressWarnings("unchecked")
1143            public static ColorModel getColorModel(
1144                            final StyledRasterInterface<?> styledGrid) {
1145                    ColorModel colorModel = null;
1146                    try {
1147                            final Object geoObject = styledGrid.getGeoObject();
1148                            if (geoObject instanceof GridCoverage2D) {
1149                                    final GridCoverage2D cov = (GridCoverage2D) geoObject;
1150                                    colorModel = cov.getRenderedImage().getColorModel();
1151                            } else if (styledGrid instanceof StyledRasterPyramidInterface) {
1152    
1153                                    final Parameter readGG = new Parameter(
1154                                                    AbstractGridFormat.READ_GRIDGEOMETRY2D);
1155    
1156                                    final ReferencedEnvelope mapExtend = new org.geotools.geometry.jts.ReferencedEnvelope(
1157                                                    styledGrid.getEnvelope(), styledGrid.getCrs());
1158    
1159                                    readGG.setValue(new GridGeometry2D(new GeneralGridEnvelope(
1160                                                    new Rectangle(0, 0, 1, 1)), mapExtend));
1161    
1162                                    final FeatureCollection<SimpleFeatureType, SimpleFeature> rFc = (FeatureCollection<SimpleFeatureType, SimpleFeature>) geoObject;
1163    
1164                                    final AbstractGridCoverage2DReader aReader = (AbstractGridCoverage2DReader) FeatureUtil
1165                                                    .getWrappedGeoObject(rFc);
1166                                    final GridCoverage2D cov = (GridCoverage2D) aReader
1167                                                    .read(new GeneralParameterValue[] { readGG });
1168                                    colorModel = cov.getRenderedImage().getColorModel();
1169                          }                          }
1170                    } catch (final Exception e) {
1171                            LOGGER.error("Error reading the colormodel from " + styledGrid, e);
1172                            return null;
1173                  }                  }
1174                    return colorModel;
1175            }
1176    
1177            /**
1178             * @return <code>true</code> if a {@link RasterSymbolizer} can be applied
1179             *         and will have an effect. Some rasters (e.g. GeoTIFF) can come
1180             *         with their own {@link ColorModel} and will ignore any
1181             *         {@link RasterSymbolizer} = SLD.
1182             */
1183            public static boolean isStyleable(
1184                            final StyledRasterInterface<?> styledRaster) {
1185                    final ColorModel colorModel = getColorModel(styledRaster);
1186    
1187                    // LOGGER.info("The colormodel of " + styledRaster.getTitle() + " is "
1188                    // + colorModel != null ? colorModel.getClass().getSimpleName() :
1189                    // "NULL");
1190    
1191                    if (colorModel == null)
1192                            return true;
1193                    if (colorModel instanceof ComponentColorModel)
1194                            return true;
1195                    return false;
1196            }
1197    
1198            /**
1199             * Set the given Style as the Style of the {@link MapLayer}, unless the
1200             * styles are the same (not comparing selection stuff). If the
1201             * {@link MapLayer}s {@link Style} is changed, the selection FTS is kept.<br/>
1202             * Remember {@link MapLayer#setStyle(Style)} triggers an event leading to a
1203             * repaint, so only use it when needed.
1204             *
1205             * @return <code>true</code> if the {@link MapLayer}'s {@link Style} has
1206             *         been changed.
1207             */
1208            public static boolean updateMapLayerStyleIfChangedAndKeepSelection(
1209                            MapLayer mapLayer, Style style2) {
1210    
1211                    Style mapLayerStyleCleaned = StylingUtil
1212                                    .removeSelectionFeatureTypeStyle(mapLayer.getStyle());
1213    
1214                    Style newStyleCleaned = StylingUtil
1215                                    .removeSelectionFeatureTypeStyle(style2);
1216    
1217                    if (StylingUtil.isStyleDifferent(mapLayerStyleCleaned, newStyleCleaned)) {
1218    
1219                            // They are different when compared without SELECTION FTS!
1220    
1221                            // Now let's copy any SELECTION FTS to the now style
1222                            FeatureTypeStyle selectionFeatureTypeStyle = StylingUtil
1223                                            .getSelectionFeatureTypeStyle(mapLayer.getStyle());
1224                            if (selectionFeatureTypeStyle != null) {
1225                                    newStyleCleaned.featureTypeStyles().add(
1226                                                    selectionFeatureTypeStyle);
1227                                    // newStyleCleaned is not so clean anymore... We just alled a
1228                                    // selcetion FTS
1229                            }
1230    
1231                  return box;                          mapLayer.setStyle(newStyleCleaned);
1232    
1233                            return true;
1234    
1235                    } else {
1236                            return false;
1237                    }
1238          }          }
1239    
1240            /**
1241             * After loading an atlas, the AttribteMetaData contains whatever is written
1242             * in the XML. But the DBF may have changed! This method checks an
1243             * {@link AttributeMetadataMap} against a schema and also corrects
1244             * upperCase/lowerCase problems. It will also remove any geometry column
1245             * attribute metadata.
1246             */
1247            /**
1248             * After loading an atlas, the AttribteMetaData contains whatever is written
1249             * in the XML. But the DBF may have changed!
1250             */
1251            public static void checkAttribMetaData(
1252                            AttributeMetadataMap<AttributeMetadataImpl> attributeMetaDataMap,
1253                            SimpleFeatureType schema) {
1254    
1255                    if (schema == null)
1256                            throw new IllegalArgumentException("schmema may not be null!");
1257    
1258                    ArrayList<Name> willRemove = new ArrayList<Name>();
1259    
1260                    // 1. Check.. all attributes in the atm should be in the schema as well.
1261                    // maybe correct some upperCase/loweCase stuff
1262    
1263                    for (AttributeMetadata atm : attributeMetaDataMap.values()) {
1264    
1265                            AttributeDescriptor foundDescr = schema
1266                                            .getDescriptor(atm.getName());
1267                            if (foundDescr == null) {
1268                                    Name bestMatch = FeatureUtil.findBestMatchingAttribute(schema,
1269                                                    atm.getLocalName());
1270                                    if (bestMatch == null)
1271                                            willRemove.add(atm.getName());
1272                                    else
1273                                            atm.setName(bestMatch);
1274                            } else if (foundDescr instanceof GeometryDescriptor) {
1275                                    // We don't want GeometryColumns in here
1276                                    willRemove.add(atm.getName());
1277                            }
1278                    }
1279    
1280                    // Remove the ones that were not findable in the schema
1281                    for (Name removeName : willRemove) {
1282                            if (attributeMetaDataMap.remove(removeName) == null) {
1283                                    LOGGER.warn("removing the AMData didn't work");
1284                            }
1285                    }
1286    
1287                    // 2. check... all attributes from the schema must have an ATM
1288                    for (AttributeDescriptor ad : schema.getAttributeDescriptors()) {
1289                            if (ad instanceof GeometryDescriptor)
1290                                    continue;
1291                            if (!attributeMetaDataMap.containsKey(ad.getName())) {
1292                                    attributeMetaDataMap.put(ad.getName(),
1293                                                    new AttributeMetadataImpl(ad, schema
1294                                                                    .getAttributeDescriptors().indexOf(ad),
1295                                                                    attributeMetaDataMap.getLanguages()));
1296                            }
1297                    }
1298            }
1299    
1300          /**          /**
1301           * Creates a           * Checks every attribute name in the {@link AttributeMetadataMap} for its
1302           * @param styledGrid           * binding type. It the type is textual, add the mrpty string as a NODATA
1303           * @param iconHeight           * value.
1304           * @param iconWidth           *
1305           * @return           * @param attributeMetaDataMap
1306             * @param schema
1307           */           */
1308          public static Box createLegendPanel(StyledRasterInterface<?> styledGrid, int iconWidth, int iconHeight) {          public static void addEmptyStringToAllTextualAttributes(
1309                  throw new RuntimeException("Not yet...");                          AttributeMetadataMap<? extends AttributeMetadata> attributeMetaDataMap,
1310                            SimpleFeatureType schema) {
1311    
1312                    for (Name name : attributeMetaDataMap.keySet()) {
1313                            if (String.class.isAssignableFrom(schema.getDescriptor(name)
1314                                            .getType().getBinding())) {
1315                                    attributeMetaDataMap.get(name).getNodataValues().add("");
1316                            }
1317                    }
1318          }          }
1319    
1320            /**
1321             * @return a nicely formatted String containing all NODATA values of any
1322             *         {@link AttributeMetadata} object. Strings are quoted so that any
1323             *         empty {@link String} can be seen.
1324             */
1325            public static String formatNoDataValues(Set<Object> nodataValuesList) {
1326                    String nicelyFormatted = "";
1327                    if (nodataValuesList != null) {
1328                            if (nodataValuesList.size() == 0)
1329                                    nicelyFormatted = "";
1330                            else {
1331                                    for (Object ndo : nodataValuesList) {
1332                                            if (ndo instanceof String)
1333                                                    nicelyFormatted += "\"" + ndo + "\"";
1334                                            else
1335                                                    nicelyFormatted += ndo.toString();
1336    
1337                                            nicelyFormatted += ",";
1338                                    }
1339                                    // Remove the extra comma
1340                                    nicelyFormatted = nicelyFormatted.substring(0, nicelyFormatted
1341                                                    .length() - 1);
1342                            }
1343                    }
1344                    return nicelyFormatted;
1345            }
1346  }  }

Legend:
Removed from v.397  
changed lines
  Added in v.769

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26