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

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

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

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

Legend:
Removed from v.256  
changed lines
  Added in v.420

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26