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

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

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

trunk/src/skrueger/geotools/StyledFS.java revision 93 by alfonx, Fri May 1 16:24:15 2009 UTC branches/1.0-gt2-2.6/src/skrueger/geotools/StyledFS.java revision 420 by alfonx, Thu Oct 1 20:22:48 2009 UTC
# Line 1  Line 1 
1  package skrueger.geotools;  /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3  import java.io.File;   *
4  import java.io.FileNotFoundException;   * This file is part of the SCHMITZM library - a collection of utility
5  import java.io.IOException;   * classes based on Java 1.6, focusing (not only) on Java Swing
6  import java.net.URL;   * and the Geotools library.
7  import java.util.Date;   *
8  import java.util.HashMap;   * The SCHMITZM project is hosted at:
9  import java.util.Map;   * http://wald.intevation.org/projects/schmitzm/
10  import java.util.Random;   *
11     * This program is free software; you can redistribute it and/or
12  import javax.swing.ImageIcon;   * modify it under the terms of the GNU Lesser General Public License
13  import javax.swing.JPanel;   * as published by the Free Software Foundation; either version 3
14     * of the License, or (at your option) any later version.
15  import org.apache.log4j.Logger;   *
16  import org.geotools.data.FeatureSource;   * This program is distributed in the hope that it will be useful,
17  import org.geotools.feature.AttributeType;   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  import org.geotools.styling.Style;   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  import org.opengis.referencing.crs.CoordinateReferenceSystem;   * GNU General Public License for more details.
20     *
21  import schmitzm.geotools.styling.StylingUtil;   * You should have received a copy of the GNU Lesser General Public License (license.txt)
22  import skrueger.AttributeMetaData;   * along with this program; if not, write to the Free Software
23  import skrueger.i8n.Translation;   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24     * or try this link: http://www.gnu.org/licenses/lgpl.html
25  import com.vividsolutions.jts.geom.Envelope;   *
26     * Contributors:
27  /**   *     Martin O. J. Schmitz - initial API and implementation
28   * This class enables a non Atlas context to use the Atlas LayerPanel   *     Stefan A. Krüger - additional utility classes
29   * {@link JPanel} as a {@link MapContextManagerInterface}   ******************************************************************************/
30   *  package skrueger.geotools;
31   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>  
32   */  import java.io.File;
33  public class StyledFS implements StyledFeatureSourceInterface {  import java.io.FileNotFoundException;
34          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);  import java.io.IOException;
35    import java.net.URL;
36          private final FeatureSource fs;  import java.util.Date;
37    import java.util.HashMap;
38          /**  import java.util.Random;
39           * A unique ID which identifies the Layer in the Atlas. It's more important  
40           * than it should be ;-)  import javax.swing.ImageIcon;
41           */  import javax.swing.JPanel;
42          private String id;  
43    import org.apache.log4j.Logger;
44          private Style style;  import org.geotools.data.FeatureSource;
45    import org.geotools.feature.FeatureCollection;
46          private Translation title;  import org.geotools.styling.Style;
47    import org.opengis.feature.simple.SimpleFeature;
48          private Translation desc;  import org.opengis.feature.simple.SimpleFeatureType;
49    import org.opengis.feature.type.AttributeDescriptor;
50          private File sldFile;  import org.opengis.referencing.crs.CoordinateReferenceSystem;
51    
52          private HashMap<Integer, AttributeMetaData> map;  import schmitzm.geotools.styling.StylingUtil;
53    import skrueger.AttributeMetaData;
54          /**  import skrueger.i8n.Translation;
55           * This class enables a non Atlas context to use the Atlas LayerPanel  
56           * {@link JPanel} as a {@link MapContextManagerInterface}  import com.vividsolutions.jts.geom.Envelope;
57           *  
58           * @param fs  /**
59           *            {@link FeatureSource} that is beeing styled.   * This class enables a non Atlas context to use the Atlas LayerPanel
60           *   * {@link JPanel} as a {@link MapContextManagerInterface}
61           * @param sldFile   *
62           *            may be <code>null</code>. Otherwise the SLD {@link File} to   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>
63           *            import and associate with this {@link StyledFS}   */
64           */  public class StyledFS implements StyledFeatureSourceInterface {
65          public StyledFS(FeatureSource fs, File sldFile) {          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);
66    
67                  this.fs = fs;          private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;
68                  id = StyledFS.class.getSimpleName()  
69                                  + new Random(new Date().getTime()).nextInt(10000000);          /**
70             * A unique ID which identifies the Layer in the Atlas. It's more important
71                  this.sldFile = sldFile;           * than it should be ;-)
72             */
73                  if ((sldFile != null) && (sldFile.exists())) {          private String id;
74                          try {  
75                                  style = StylingUtil.loadSLD(sldFile)[0];          private Style style;
76                          } catch (FileNotFoundException e) {  
77                                  LOGGER          private Translation title;
78                                                  .debug("The SLD file passed was empty. Leaving the Style untouched. (We are in the constructor.. so its null");  
79                          }          private Translation desc;
80                  }  
81            private File sldFile;
82                  title = new Translation();  
83                  title.fromOneLine(sldFile.getName());          private AttributeMetadataMap map;
84    
85                  desc = new Translation();          /**
86                  desc.fromOneLine(sldFile.getAbsolutePath());           * This class enables a non Atlas context to use the Atlas LayerPanel
87          }           * {@link JPanel} as a {@link MapContextManagerInterface}
88             *
89          public void dispose() {           * @param fs
90          }           *            {@link FeatureSource} that is beeing styled.
91             *
92          /**           * @param sldFile
93           * Returnes human readable {@link String} of the CRS natively used by this           *            may be <code>null</code>. Otherwise the SLD {@link File} to
94           * {@link DpLayer}           *            import and associate with this {@link StyledFS}
95           *           */
96           * If crs == null, it will call {@link #getGeoObject()}          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs, File sldFile) {
97           *  
98           */                  this.fs = fs;
99          public String getCRSString() {                  id = StyledFS.class.getSimpleName()
100                  if (getCrs() == null)                                  + new Random(new Date().getTime()).nextInt(10000000);
101                          return "CRS?";  
102                    this.sldFile = sldFile;
103                  return getCrs().getName().getCode();  
104          }                  if (sldFile != null && sldFile.exists()) {
105                            try {
106          public CoordinateReferenceSystem getCrs() {                                  style = StylingUtil.loadSLD(sldFile)[0];
107                  return fs.getSchema().getDefaultGeometry().getCoordinateSystem();                          } catch (FileNotFoundException e) {
108          }                                  LOGGER
109                                                    .debug("The SLD file passed was empty. Leaving the Style untouched. (We are in the constructor.. so its null");
110          public Translation getDesc() {                          } catch (Exception e) {
111                  return desc;                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);
112          }                          }
113                    }
114          public Envelope getEnvelope() {                  title = new Translation();
115                  try {                  title.fromOneLine(sldFile.getName());
116                          return fs.getBounds();  
117                  } catch (IOException e) {                  desc = new Translation();
118                          e.printStackTrace();                  desc.fromOneLine(sldFile.getAbsolutePath());
119                          return null;          }
120                  }  
121          }          public void dispose() {
122            }
123          public FeatureSource getGeoObject() throws Exception {  
124                  return fs;          /**
125          }           * Returns human readable {@link String} of the CRS natively used by this
126             * {@link DpLayer}
127          public String getId() {           *
128                  return id;           * If CRS == null, it will call {@link #getGeoObject()}
129          }           *
130             */
131          public ImageIcon getImageIcon() {          public String getCRSString() {
132                  return null;                  if (getCrs() == null)
133          }                          return "CRS?";
134    
135          public URL getInfoURL() {                  return getCrs().getName().getCode();
136                  return null;          }
137          }  
138            public CoordinateReferenceSystem getCrs() {
139          public Translation getKeywords() {                  return fs.getSchema().getCoordinateReferenceSystem();
140                  return null;          }
141          }  
142            public Translation getDesc() {
143          public Style getStyle() {                  return desc;
144                  return style;          }
145          }  
146            public Envelope getEnvelope() {
147          public Translation getTitle() {                  try {
148                  return title;                          return fs.getBounds();
149          }                  } catch (IOException e) {
150                            e.printStackTrace();
151          public boolean isDisposed() {                          return null;
152                  return false;                  }
153          }          }
154    
155          /**          public FeatureSource<SimpleFeatureType, SimpleFeature> getGeoObject() {
156           * If true, this layer will not be shown in the legend. Default = false                  return fs;
157           */          }
158          /**  
159           *          public String getId() {
160           * Killed by SK: 6. April 09: Ein Layer soll nicht generell auf                  return id;
161           * verstecken/nicht verstecken gestellt werden können. Das sind          }
162           * Eigenschaften der Karte/MapContext, ebenso wie die Reihenfolge der Layer.  
163           * Im Atlas verwaltet deshalb nun die Klasse skrueger.atlas.Map welche Layer          public ImageIcon getImageIcon() {
164           * nicht in der Legende auftauchen sollen. Meines Wissens hat keiner bisher                  return null;
165           * die Funktion genutzt.          }
166           *  
167  //      public boolean isHideInLegend() {          public URL getInfoURL() {
168  //              return false;                  return null;
169  //      }          }
170           */  
171            public Translation getKeywords() {
172          public void setDesc(Translation dec) {                  return null;
173                  this.desc = dec;          }
174          }  
175            public Style getStyle() {
176          public void setImageIcon(ImageIcon icon) {                  return style;
177          }          }
178    
179          public void setKeywords(Translation keywords) {          public Translation getTitle() {
180          }                  return title;
181            }
182          public void setStyle(Style style) {  
183                  this.style = style;          public boolean isDisposed() {
184                    return false;
185          }          }
186    
187          public void setTitle(Translation title) {          /**
188                  this.title = title;           * If true, this layer will not be shown in the legend. Default = false
189             */
190          }          /**
191             *
192          public void uncache() {           * Killed by SK: 6. April 09: Ein Layer soll nicht generell auf
193          }           * verstecken/nicht verstecken gestellt werden können. Das sind
194             * Eigenschaften der Karte/MapContext, ebenso wie die Reihenfolge der Layer.
195          /**           * Im Atlas verwaltet deshalb nun die Klasse skrueger.atlas.Map welche Layer
196           *           * nicht in der Legende auftauchen sollen. Meines Wissens hat keiner bisher
197           */           * die Funktion genutzt.
198          public Map<Integer, AttributeMetaData> getAttributeMetaDataMap() {           *
199                  if (map == null) {           * // public boolean isHideInLegend() { // return false; // }
200                                     */
201                          map = new HashMap<Integer, AttributeMetaData>();  
202                                    public void setDesc(Translation dec) {
203                          // Leaving out the first one, it will be the_geom                  this.desc = dec;
204                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {          }
205                                  AttributeType att = fs.getSchema().getAttributeType(i);  
206                                            public void setImageIcon(ImageIcon icon) {
207                                  AttributeMetaData attMetaData = new AttributeMetaData(i, att.getLocalName());          }
208                                  map.put(i, attMetaData);  
209                          }          public void setKeywords(Translation keywords) {
210                  }          }
211                  return map;  
212          }          public void setStyle(Style style) {
213                    this.style = style;
214          /**  
215           * @return The {@link File} where the SLD was loaded from or          }
216           *         <code>null</code> if there didn't exist a {@link File}. (It  
217           *         could be a WFS or a PostGIS          public void setTitle(Translation title) {
218           *                  this.title = title;
219           * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>  
220           */          }
221          public File getSldFile() {  
222                  return sldFile;          public void uncache() {
223          }          }
224    
225          public void setSldFile(File sldFile) {          /**
226                  this.sldFile = sldFile;           *
227          }           */
228            public AttributeMetadataMap getAttributeMetaDataMap() {
229  }                  if (map == null) {
230    
231                            map = new AttributeMetadataMap();
232    
233                            // Leaving out the first one, it will be the_geom
234                            for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
235                                    AttributeDescriptor att = fs.getSchema().getDescriptor(i);
236    
237                                    AttributeMetaData attMetaData = new AttributeMetaData(i, att
238                                                    .getLocalName());
239                                    map.put(i, attMetaData);
240                            }
241                    }
242                    return map;
243            }
244    
245            /**
246             * @return The {@link File} where the SLD was loaded from or
247             *         <code>null</code> if there didn't exist a {@link File}.
248             *
249             * @author <a href="mailto:[email protected]">Stefan Alfons
250             *         Kr&uuml;ger</a>
251             */
252            public File getSldFile() {
253                    return sldFile;
254            }
255    
256            public void setSldFile(File sldFile) {
257                    this.sldFile = sldFile;
258            }
259    
260            /**
261             * Returns the features of the {@link FeatureSource}.
262             *
263             * @see {@link StyledFeaturesInterface}
264             */
265            @Override
266            public FeatureCollection getFeatureCollection() {
267                    FeatureCollection features;
268                    try {
269                            features = getGeoObject().getFeatures();
270                    } catch (IOException e) {
271                            throw new RuntimeException(
272                                            "Error getting the features of the  FeatureSource");
273                    }
274                    return features;
275            }
276    
277            /**
278             * Same as {@link #getGeoObject()} method, but complies to the
279             * {@link StyledFeaturesInterface}
280             *
281             * @see {@link StyledFeaturesInterface}
282             */
283            @Override
284            public FeatureSource getFeatureSource() {
285                    return getGeoObject();
286            }
287    
288    }

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26