/[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 454 by alfonx, Sun Oct 11 16:12:05 2009 UTC trunk/src/skrueger/geotools/StyledFS.java revision 694 by alfonx, Fri Feb 12 11:28:41 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.styling.Style;  import org.geotools.styling.Style;
45  import org.opengis.feature.simple.SimpleFeature;  import org.opengis.feature.simple.SimpleFeature;
# Line 52  import org.opengis.referencing.crs.Coord Line 50  import org.opengis.referencing.crs.Coord
50    
51  import schmitzm.geotools.io.GeoImportUtil;  import schmitzm.geotools.io.GeoImportUtil;
52  import schmitzm.geotools.styling.StylingUtil;  import schmitzm.geotools.styling.StylingUtil;
53  import skrueger.AttributeMetaData;  import skrueger.AttributeMetadata;
54  import skrueger.i8n.Translation;  import skrueger.i8n.Translation;
55    
56  import com.vividsolutions.jts.geom.Envelope;  import com.vividsolutions.jts.geom.Envelope;
# Line 62  import com.vividsolutions.jts.geom.Envel Line 60  import com.vividsolutions.jts.geom.Envel
60   * {@link JPanel} as a {@link MapContextManagerInterface}   * {@link JPanel} as a {@link MapContextManagerInterface}
61   *   *
62   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>
63     *
64     * TODO Rename to StyledShapefile
65   */   */
66  public class StyledFS implements StyledFeatureSourceInterface {  public class StyledFS implements StyledFeatureSourceInterface {
67          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);
68    
69          private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;          private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;
70            
71            /** Caching the CRS of the layer **/
72            CoordinateReferenceSystem crs = null;
73    
74          /**          /**
75           * 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 101  public class StyledFS implements StyledF Line 104  public class StyledFS implements StyledF
104                          File sldFile) {                          File sldFile) {
105    
106                  this.fs = fs;                  this.fs = fs;
107    
108                  id = StyledFS.class.getSimpleName()                  id = StyledFS.class.getSimpleName()
109                                  + new Random(new Date().getTime()).nextInt(10000000);                                  + new Random(new Date().getTime()).nextInt(10000000);
110    
111                  this.sldFile = sldFile;                  this.sldFile = sldFile;
112    
113                    // datei existiert, dann lesen
114                  if (sldFile != null && sldFile.exists()) {                  if (sldFile != null && sldFile.exists()) {
115                          try {                          try {
116                                  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");  
117                          } catch (Exception e) {                          } catch (Exception e) {
118                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);                                  LOGGER.warn("Reading SLD failed: " + sldFile, e);
119                                    style = null;
120                          }                          }
121                  }                  }
122    
123                  title = new Translation();                  title = new Translation();
124                  desc = new Translation();                  desc = new Translation();
125    
# Line 148  public class StyledFS implements StyledF Line 152  public class StyledFS implements StyledF
152          }          }
153    
154          public CoordinateReferenceSystem getCrs() {          public CoordinateReferenceSystem getCrs() {
155                  CoordinateReferenceSystem crs = fs.getSchema().getCoordinateReferenceSystem();                  if (crs == null) {
156                  if (fs.getSchema().getCoordinateReferenceSystem() == null) {                          crs = fs.getSchema()
157                          LOGGER.warn("Could not determine the CRS of "+getTitle()+". Using default "+GeoImportUtil.getDefaultCRS());                                          .getCoordinateReferenceSystem();
158                          crs = GeoImportUtil.getDefaultCRS();                          if (fs.getSchema().getCoordinateReferenceSystem() == null) {
159                                    LOGGER.warn("Could not determine the CRS of " + getTitle()
160                                                    + ". Using default " + GeoImportUtil.getDefaultCRS());
161                                    crs = GeoImportUtil.getDefaultCRS();
162                            }
163                  }                  }
164                  return crs;                  return crs;
165          }          }
# Line 245  public class StyledFS implements StyledF Line 253  public class StyledFS implements StyledF
253          public AttributeMetadataMap getAttributeMetaDataMap() {          public AttributeMetadataMap getAttributeMetaDataMap() {
254                  if (map == null) {                  if (map == null) {
255    
256                          map = new AttributeMetadataMap();                          map = new AttributeMetadataMap(new String[] { Translation
257                                            .getActiveLang() });
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                                  AttributeMetadata attMetaData = new AttributeMetadata(attDesc
264                                                  .getLocalName());                                                  .getName(), map.getLanguages());
265                                  map.put(i, attMetaData);                                  map.put(attDesc.getName(), attMetaData);
266                          }                          }
267                  }                  }
268                  return map;                  return map;
# Line 269  public class StyledFS implements StyledF Line 278  public class StyledFS implements StyledF
278          public File getSldFile() {          public File getSldFile() {
279                  return sldFile;                  return sldFile;
280          }          }
281            
282          public void setSldFile(File sldFile) {          public void setSldFile(File sldFile) {
283                  this.sldFile = sldFile;                  this.sldFile = sldFile;
284          }          }
# Line 304  public class StyledFS implements StyledF Line 313  public class StyledFS implements StyledF
313    
314          @Override          @Override
315          public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollectionFiltered() {          public FeatureCollection<SimpleFeatureType, SimpleFeature> getFeatureCollectionFiltered() {
316                  final FeatureCollection<SimpleFeatureType, SimpleFeature> fc = getFeatureCollection();                  // final FeatureCollection<SimpleFeatureType, SimpleFeature> fc =
317                  if (filter == Filter.EXCLUDE)                  // getFeatureCollection();
318                          return new EmptyFeatureCollection(fc.getSchema());                  // if (filter == Filter.EXCLUDE)
319                  if (filter == Filter.INCLUDE)                  // return new EmptyFeatureCollection(fc.getSchema());
320                          return fc;                  // if (filter == Filter.INCLUDE)
321                  return fc.subCollection(filter);                  // return fc;
322                    // return fc.subCollection(filter);
323    
324                    try {
325                            return getFeatureSource().getFeatures(filter);
326                    } catch (IOException e) {
327                            throw new RuntimeException(e);
328                    }
329          }          }
330    
331          @Override          @Override

Legend:
Removed from v.454  
changed lines
  Added in v.694

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26