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

revision 244 by alfonx, Wed Jul 29 09:33:33 2009 UTC revision 1191 by alfonx, Sat Oct 30 00:02:44 2010 UTC
# Line 2  Line 2 
2   * Copyright (c) 2009 Martin O. J. Schmitz.   * Copyright (c) 2009 Martin O. J. Schmitz.
3   *   *
4   * This file is part of the SCHMITZM library - a collection of utility   * This file is part of the SCHMITZM library - a collection of utility
5   * classes based on Java 1.6, focussing (not only) on Java Swing   * classes based on Java 1.6, focusing (not only) on Java Swing
6   * and the Geotools library.   * and the Geotools library.
7   *   *
8   * The SCHMITZM project is hosted at:   * The SCHMITZM project is hosted at:
# Line 25  Line 25 
25   *   *
26   * Contributors:   * Contributors:
27   *     Martin O. J. Schmitz - initial API and implementation   *     Martin O. J. Schmitz - initial API and implementation
28   *     Stefan A. Krüger - additional utility classes   *     Stefan A. Tzeggai - additional utility classes
29   ******************************************************************************/   ******************************************************************************/
30  package skrueger.geotools;  package skrueger.geotools;
31    
32  import java.io.File;  import java.io.File;
 import java.io.FileNotFoundException;  
33  import java.io.IOException;  import java.io.IOException;
34  import java.net.URL;  import java.net.URL;
35  import java.util.Date;  import java.util.Date;
 import java.util.HashMap;  
 import java.util.Map;  
36  import java.util.Random;  import java.util.Random;
37    
38  import javax.swing.ImageIcon;  import javax.swing.ImageIcon;
# Line 43  import javax.swing.JPanel; Line 40  import javax.swing.JPanel;
40    
41  import org.apache.log4j.Logger;  import org.apache.log4j.Logger;
42  import org.geotools.data.FeatureSource;  import org.geotools.data.FeatureSource;
 import org.geotools.feature.AttributeType;  
43  import org.geotools.feature.FeatureCollection;  import org.geotools.feature.FeatureCollection;
44    import org.geotools.feature.NameImpl;
45  import org.geotools.styling.Style;  import org.geotools.styling.Style;
46    import org.opengis.feature.simple.SimpleFeature;
47    import org.opengis.feature.simple.SimpleFeatureType;
48    import org.opengis.feature.type.AttributeDescriptor;
49    import org.opengis.filter.Filter;
50  import org.opengis.referencing.crs.CoordinateReferenceSystem;  import org.opengis.referencing.crs.CoordinateReferenceSystem;
51    
52    import schmitzm.geotools.io.GeoImportUtil;
53  import schmitzm.geotools.styling.StylingUtil;  import schmitzm.geotools.styling.StylingUtil;
54  import skrueger.AttributeMetaData;  import skrueger.AttributeMetadataImpl;
55  import skrueger.i8n.Translation;  import skrueger.i8n.Translation;
56    
57  import com.vividsolutions.jts.geom.Envelope;  import com.vividsolutions.jts.geom.Envelope;
# Line 58  import com.vividsolutions.jts.geom.Envel Line 60  import com.vividsolutions.jts.geom.Envel
60   * This class enables a non Atlas context to use the Atlas LayerPanel   * This class enables a non Atlas context to use the Atlas LayerPanel
61   * {@link JPanel} as a {@link MapContextManagerInterface}   * {@link JPanel} as a {@link MapContextManagerInterface}
62   *   *
63   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>   * @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a>
64     *
65     *         TODO Rename to StyledShapefile
66   */   */
67  public class StyledFS implements StyledFeatureSourceInterface {  public class StyledFS implements StyledFeatureSourceInterface {
68          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);
69    
70          private final FeatureSource fs;          private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;
71    
72            /** Caching the CRS of the layer **/
73            CoordinateReferenceSystem crs = null;
74    
75          /**          /**
76           * A unique ID which identifies the Layer in the Atlas. It's more important           * A unique ID which identifies the Layer in the Atlas. It's more important
77           * than it should be ;-)           * than it should be ;-)
78           */           */
79          private String id;          final private String id;
80    
81          private Style style;          private Style style;
82    
# Line 79  public class StyledFS implements StyledF Line 86  public class StyledFS implements StyledF
86    
87          private File sldFile;          private File sldFile;
88    
89          private HashMap<Integer, AttributeMetaData> map;          /** A map of simple attribute names to their meta-data **/
90            private AttributeMetadataMap<AttributeMetadataImpl> map;
91    
92            private Filter filter = Filter.INCLUDE;
93    
94          /**          /**
95           * This class enables a non Atlas context to use the Atlas LayerPanel           * This class enables a non Atlas context to use the Atlas LayerPanel
# Line 91  public class StyledFS implements StyledF Line 101  public class StyledFS implements StyledF
101           * @param sldFile           * @param sldFile
102           *            may be <code>null</code>. Otherwise the SLD {@link File} to           *            may be <code>null</code>. Otherwise the SLD {@link File} to
103           *            import and associate with this {@link StyledFS}           *            import and associate with this {@link StyledFS}
104             *
105             * @param id
106             *            <code>null</code> is allowed and will autogenerate an id
107           */           */
108          public StyledFS(FeatureSource fs, File sldFile) {          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
109                            File sldFile, String id) {
110    
111                  this.fs = fs;                  this.fs = fs;
112                  id = StyledFS.class.getSimpleName()  
113                                  + new Random(new Date().getTime()).nextInt(10000000);                  if (id == null) {
114                            this.id = StyledFS.class.getSimpleName()
115                                            + new Random(new Date().getTime()).nextInt(10000000);
116                    } else {
117                            this.id = id;
118                    }
119    
120                  this.sldFile = sldFile;                  this.sldFile = sldFile;
121    
122                  if ((sldFile != null) && (sldFile.exists())) {                  // datei existiert, dann lesen
123                    if (sldFile != null && sldFile.exists()) {
124                          try {                          try {
125                                  style = StylingUtil.loadSLD(sldFile)[0];                                  style = StylingUtil.loadSLD(sldFile)[0];
                         } catch (FileNotFoundException e) {  
                                 LOGGER  
                                                 .debug("The SLD file passed was empty. Leaving the Style untouched. (We are in the constructor.. so its null");  
126                          } catch (Exception e) {                          } catch (Exception e) {
127                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);
128                                    style = null;
129                          }                          }
130                  }                  }
                 title = new Translation();  
                 title.fromOneLine(sldFile.getName());  
131    
132                    title = new Translation();
133                  desc = new Translation();                  desc = new Translation();
134                  desc.fromOneLine(sldFile.getAbsolutePath());  
135                    if (sldFile != null) {
136                            title.fromOneLine(sldFile.getName());
137                            desc.fromOneLine(sldFile.getAbsolutePath());
138                    }
139    
140            }
141    
142            public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs) {
143                    this(fs, (File) null, null);
144            }
145    
146            public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
147                            String id) {
148                    this(fs, null, id);
149          }          }
150    
151          public void dispose() {          public void dispose() {
152          }          }
153    
154          /**          /**
155           * Returnes human readable {@link String} of the CRS natively used by this           * Returns human readable {@link String} of the CRS natively used by this
156           * {@link DpLayer}           * {@link DpLayer}
157           *           *
158           * If crs == null, it will call {@link #getGeoObject()}           * If CRS == null, it will call {@link #getGeoObject()}
159           *           *
160           */           */
161          public String getCRSString() {          public String getCRSString() {
# Line 135  public class StyledFS implements StyledF Line 166  public class StyledFS implements StyledF
166          }          }
167    
168          public CoordinateReferenceSystem getCrs() {          public CoordinateReferenceSystem getCrs() {
169                  return fs.getSchema().getDefaultGeometry().getCoordinateSystem();                  if (crs == null) {
170                            crs = fs.getSchema().getCoordinateReferenceSystem();
171                            if (crs == null) {
172    
173                                    crs = fs.getSchema().getGeometryDescriptor()
174                                                    .getCoordinateReferenceSystem();
175    
176                                    if (crs == null) {
177                                            LOGGER.warn("Could not determine the CRS of " + getTitle()
178                                                            + ". Using default "
179                                                            + GeoImportUtil.getDefaultCRS());
180                                            crs = GeoImportUtil.getDefaultCRS();
181                                    }
182                            }
183                    }
184                    return crs;
185          }          }
186    
187          public Translation getDesc() {          public Translation getDesc() {
# Line 151  public class StyledFS implements StyledF Line 197  public class StyledFS implements StyledF
197                  }                  }
198          }          }
199    
200          public FeatureSource getGeoObject() {          public FeatureSource<SimpleFeatureType, SimpleFeature> getGeoObject() {
201                  return fs;                  return fs;
202          }          }
203    
# Line 224  public class StyledFS implements StyledF Line 270  public class StyledFS implements StyledF
270          /**          /**
271           *           *
272           */           */
273          public Map<Integer, AttributeMetaData> getAttributeMetaDataMap() {          public AttributeMetadataMap<AttributeMetadataImpl> getAttributeMetaDataMap() {
274                  if (map == null) {                  if (map == null) {
275    
276                          map = new HashMap<Integer, AttributeMetaData>();                          map = new AttributeMetadataImplMap();
277    
278                            // // Leaving out the first one, it will be the_geom
279                            // for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
280                            // AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);
281                            //
282                            // AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(
283                            // new NameImpl(attDesc
284                            // .getName().getNamespaceURI(), attDesc
285                            // .getName().getLocalPart()), map.getLanguages());
286                            // map.put(attDesc.getName(), attMetaData);
287                            // }
288    
289                          // Leaving out the first one, it will be the_geom                          // Leaving out the first one, it will be the_geom
290                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
291                                  AttributeType att = fs.getSchema().getAttributeType(i);                                  AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);
292    
293                                  AttributeMetaData attMetaData = new AttributeMetaData(i, att                                  // TODO AttributeMetadataAS would be nicer, which would not work
294                                                  .getLocalName());                                  // with Translations ;-)
295                                  map.put(i, attMetaData);                                  AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(
296                                                    new NameImpl(attDesc.getName().getNamespaceURI(),
297                                                                    attDesc.getName().getLocalPart()),
298                                                    map.getLanguages());
299                                    if (String.class.isAssignableFrom(attDesc.getType()
300                                                    .getBinding())) {
301                                            // For Strings we add the "" as NODATA values
302                                            attMetaData.addNodataValue("");
303                                    }
304                                    map.put(attDesc.getName(), attMetaData);
305                          }                          }
306                  }                  }
307                  return map;                  return map;
# Line 243  public class StyledFS implements StyledF Line 309  public class StyledFS implements StyledF
309    
310          /**          /**
311           * @return The {@link File} where the SLD was loaded from or           * @return The {@link File} where the SLD was loaded from or
312           *         <code>null</code> if there didn't exist a {@link File}.           *         <code>null</code> if there didn't exist a {@link File}.
313           *           *
314           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a>
          *         Kr&uuml;ger</a>  
315           */           */
316          public File getSldFile() {          public File getSldFile() {
317                  return sldFile;                  return sldFile;
318          }          }
319    
320            /**
321             * Associates this .sld with the {@link FeatureSource}, but does not
322             * automatically load the file. It must not even exist.
323             *
324             * @param sldFile
325             */
326          public void setSldFile(File sldFile) {          public void setSldFile(File sldFile) {
327                  this.sldFile = sldFile;                  this.sldFile = sldFile;
328          }          }
# Line 262  public class StyledFS implements StyledF Line 333  public class StyledFS implements StyledF
333           * @see {@link StyledFeaturesInterface}           * @see {@link StyledFeaturesInterface}
334           */           */
335          @Override          @Override
336          public FeatureCollection getFeatureCollection() {          public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollection() {
337                  FeatureCollection features;                  FeatureCollection<SimpleFeatureType, SimpleFeature> features;
338                  try {                  try {
339                          features = getGeoObject().getFeatures();                          features = getGeoObject().getFeatures();
340                  } catch (IOException e) {                  } catch (IOException e) {
# Line 280  public class StyledFS implements StyledF Line 351  public class StyledFS implements StyledF
351           * @see {@link StyledFeaturesInterface}           * @see {@link StyledFeaturesInterface}
352           */           */
353          @Override          @Override
354          public FeatureSource getFeatureSource() {          public FeatureSource<SimpleFeatureType, SimpleFeature> getFeatureSource() {
355                  return getGeoObject();                  return getGeoObject();
356          }          }
357    
358            @Override
359            public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollectionFiltered() {
360                    // final FeatureCollection<SimpleFeatureType, SimpleFeature> fc =
361                    // getFeatureCollection();
362                    // if (filter == Filter.EXCLUDE)
363                    // return new EmptyFeatureCollection(fc.getSchema());
364                    // if (filter == Filter.INCLUDE)
365                    // return fc;
366                    // return fc.subCollection(filter);
367    
368                    try {
369                            if (filter != Filter.INCLUDE)
370                                    return getFeatureSource().getFeatures(filter);
371                            else
372                                    return getFeatureSource().getFeatures();
373                    } catch (IOException e) {
374                            throw new RuntimeException(e);
375                    }
376            }
377    
378            @Override
379            public Filter getFilter() {
380                    return filter;
381            }
382    
383            @Override
384            public void setFilter(Filter filter) {
385                    this.filter = filter;
386            }
387    
388            @Override
389            public SimpleFeatureType getSchema() {
390                    return getGeoObject().getSchema();
391            }
392    
393            /**
394             * Tries to load a style from the file denoted in {@link #getSldFile()}. If
395             * the file doesn't exits, return <code>null</code>;
396             *
397             * @return <code>true</code> is style was loaded
398             */
399            public boolean loadStyle() {
400                    if (getSldFile() == null)
401                            return false;
402    
403                    try {
404                            Style[] loadSLD = StylingUtil.loadSLD(getSldFile());
405                            setStyle(loadSLD[0]);
406                            return true;
407                    } catch (Exception e) {
408                            return false;
409                    }
410    
411            }
412    
413            public void setTitle(String title) {
414                    setTitle(new Translation(title));
415            }
416    
417            public void setDesc(String desc) {
418                    setDesc(new Translation(desc));
419            }
420    
421            public void setCRS(CoordinateReferenceSystem crs2) {
422                    crs = crs2;
423            }
424    
425  }  }

Legend:
Removed from v.244  
changed lines
  Added in v.1191

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26