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

branches/1.0-gt2-2.6/src/skrueger/geotools/StyledFS.java revision 447 by alfonx, Wed Oct 7 14:08:41 2009 UTC trunk/src/skrueger/geotools/StyledFS.java revision 770 by alfonx, Sun Mar 21 11:36:11 2010 UTC
# Line 30  Line 30 
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;
# Line 41  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.data.store.EmptyFeatureCollection;  
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;  import org.opengis.feature.simple.SimpleFeature;
47  import org.opengis.feature.simple.SimpleFeatureType;  import org.opengis.feature.simple.SimpleFeatureType;
# Line 50  import org.opengis.feature.type.Attribut Line 49  import org.opengis.feature.type.Attribut
49  import org.opengis.filter.Filter;  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 61  import com.vividsolutions.jts.geom.Envel Line 61  import com.vividsolutions.jts.geom.Envel
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 Kr&uuml;ger</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<SimpleFeatureType, SimpleFeature> 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
# Line 100  public class StyledFS implements StyledF Line 105  public class StyledFS implements StyledF
105                          File sldFile) {                          File sldFile) {
106    
107                  this.fs = fs;                  this.fs = fs;
108    
109                  id = StyledFS.class.getSimpleName()                  id = StyledFS.class.getSimpleName()
110                                  + new Random(new Date().getTime()).nextInt(10000000);                                  + new Random(new Date().getTime()).nextInt(10000000);
111    
112                  this.sldFile = sldFile;                  this.sldFile = sldFile;
113    
114                    // datei existiert, dann lesen
115                  if (sldFile != null && sldFile.exists()) {                  if (sldFile != null && sldFile.exists()) {
116                          try {                          try {
117                                  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");  
118                          } catch (Exception e) {                          } catch (Exception e) {
119                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);
120                                    style = null;
121                          }                          }
122                  }                  }
123    
124                  title = new Translation();                  title = new Translation();
125                  desc = new Translation();                  desc = new Translation();
126    
# Line 147  public class StyledFS implements StyledF Line 153  public class StyledFS implements StyledF
153          }          }
154    
155          public CoordinateReferenceSystem getCrs() {          public CoordinateReferenceSystem getCrs() {
156                  return fs.getSchema().getCoordinateReferenceSystem();                  if (crs == null) {
157                            crs = fs.getSchema()
158                                            .getCoordinateReferenceSystem();
159                            if (fs.getSchema().getCoordinateReferenceSystem() == null) {
160                                    LOGGER.warn("Could not determine the CRS of " + getTitle()
161                                                    + ". Using default " + GeoImportUtil.getDefaultCRS());
162                                    crs = GeoImportUtil.getDefaultCRS();
163                            }
164                    }
165                    return crs;
166          }          }
167    
168          public Translation getDesc() {          public Translation getDesc() {
# Line 239  public class StyledFS implements StyledF Line 254  public class StyledFS implements StyledF
254          public AttributeMetadataMap getAttributeMetaDataMap() {          public AttributeMetadataMap getAttributeMetaDataMap() {
255                  if (map == null) {                  if (map == null) {
256    
257                          map = new AttributeMetadataMap();                          map = new AttributeMetadataImplMap();
258    
259                          // Leaving out the first one, it will be the_geom                          // Leaving out the first one, it will be the_geom
260                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
261                                  AttributeDescriptor att = fs.getSchema().getDescriptor(i);                                  AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);
262    
263                                  AttributeMetaData attMetaData = new AttributeMetaData(i, att                                  AttributeMetadataImpl attMetaData = new AttributeMetadataImpl( new NameImpl(attDesc
264                                                  .getLocalName());                                                  .getName().getNamespaceURI(), attDesc
265                                  map.put(i, attMetaData);                                                  .getName().getLocalPart()), map.getLanguages());
266                                    map.put(attDesc.getName(), attMetaData);
267                          }                          }
268                  }                  }
269                  return map;                  return map;
# Line 263  public class StyledFS implements StyledF Line 279  public class StyledFS implements StyledF
279          public File getSldFile() {          public File getSldFile() {
280                  return sldFile;                  return sldFile;
281          }          }
282            
283          public void setSldFile(File sldFile) {          public void setSldFile(File sldFile) {
284                  this.sldFile = sldFile;                  this.sldFile = sldFile;
285          }          }
# Line 298  public class StyledFS implements StyledF Line 314  public class StyledFS implements StyledF
314    
315          @Override          @Override
316          public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollectionFiltered() {          public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollectionFiltered() {
317                  final FeatureCollection<SimpleFeatureType, SimpleFeature> fc = getFeatureCollection();                  // final FeatureCollection<SimpleFeatureType, SimpleFeature> fc =
318                  if (filter == Filter.EXCLUDE)                  // getFeatureCollection();
319                          return new EmptyFeatureCollection(fc.getSchema());                  // if (filter == Filter.EXCLUDE)
320                  if (filter == Filter.INCLUDE)                  // return new EmptyFeatureCollection(fc.getSchema());
321                          return fc;                  // if (filter == Filter.INCLUDE)
322                  return fc.subCollection(filter);                  // return fc;
323                    // return fc.subCollection(filter);
324    
325                    try {
326                            return getFeatureSource().getFeatures(filter);
327                    } catch (IOException e) {
328                            throw new RuntimeException(e);
329                    }
330          }          }
331    
332          @Override          @Override

Legend:
Removed from v.447  
changed lines
  Added in v.770

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26