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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 607 - (show annotations)
Wed Dec 9 15:13:42 2009 UTC (15 years, 2 months ago) by alfonx
Original Path: branches/2.0-RC1/src/skrueger/geotools/StyledLayerUtil.java
File size: 43763 byte(s)
Keine Ahnung was er da gebrancht hat.. der stand der dateien war weder trunk, noch der 1.0-gt26 branch... ich hab die dateien jetzt händisch auf den richtigen stand gebracht und comitte

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26