/[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 862 by alfonx, Sat May 22 01:24:46 2010 UTC revision 1203 by alfonx, Tue Nov 2 22:53:55 2010 UTC
# Line 42  import org.apache.log4j.Logger; Line 42  import org.apache.log4j.Logger;
42  import org.geotools.data.FeatureSource;  import org.geotools.data.FeatureSource;
43  import org.geotools.feature.FeatureCollection;  import org.geotools.feature.FeatureCollection;
44  import org.geotools.feature.NameImpl;  import org.geotools.feature.NameImpl;
45    import org.geotools.geometry.jts.ReferencedEnvelope;
46  import org.geotools.styling.Style;  import org.geotools.styling.Style;
47  import org.opengis.feature.simple.SimpleFeature;  import org.opengis.feature.simple.SimpleFeature;
48  import org.opengis.feature.simple.SimpleFeatureType;  import org.opengis.feature.simple.SimpleFeatureType;
# Line 60  import com.vividsolutions.jts.geom.Envel Line 61  import com.vividsolutions.jts.geom.Envel
61   * This class enables a non Atlas context to use the Atlas LayerPanel   * This class enables a non Atlas context to use the Atlas LayerPanel
62   * {@link JPanel} as a {@link MapContextManagerInterface}   * {@link JPanel} as a {@link MapContextManagerInterface}
63   *   *
64   * @author <a href="mailto:[email protected]">Stefan Alfons Kr&uuml;ger</a>   * @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a>
65   *   *
66   * TODO Rename to StyledShapefile   *         TODO Rename to StyledShapefile
67   */   */
68  public class StyledFS implements StyledFeatureSourceInterface {  public class StyledFS implements StyledFeatureSourceInterface {
69          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);
70    
71          private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;          private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;
72            
73          /** Caching the CRS of the layer **/          /** Caching the CRS of the layer **/
74          CoordinateReferenceSystem crs = null;          CoordinateReferenceSystem crs = null;
75    
# Line 76  public class StyledFS implements StyledF Line 77  public class StyledFS implements StyledF
77           * 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
78           * than it should be ;-)           * than it should be ;-)
79           */           */
80          private String id;          final private String id;
81    
82          private Style style;          private Style style;
83    
# Line 86  public class StyledFS implements StyledF Line 87  public class StyledFS implements StyledF
87    
88          private File sldFile;          private File sldFile;
89    
90          private AttributeMetadataMap map;          /** A map of simple attribute names to their meta-data **/
91            private AttributeMetadataMap<AttributeMetadataImpl> map;
92    
93          private Filter filter = Filter.INCLUDE;          private Filter filter = Filter.INCLUDE;
94    
# Line 100  public class StyledFS implements StyledF Line 102  public class StyledFS implements StyledF
102           * @param sldFile           * @param sldFile
103           *            may be <code>null</code>. Otherwise the SLD {@link File} to           *            may be <code>null</code>. Otherwise the SLD {@link File} to
104           *            import and associate with this {@link StyledFS}           *            import and associate with this {@link StyledFS}
105             *
106             * @param id
107             *            <code>null</code> is allowed and will autogenerate an id
108           */           */
109          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs,          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
110                          File sldFile) {                          File sldFile, String id) {
111    
112                  this.fs = fs;                  this.fs = fs;
113    
114                  id = StyledFS.class.getSimpleName()                  if (id == null) {
115                                  + new Random(new Date().getTime()).nextInt(10000000);                          this.id = StyledFS.class.getSimpleName()
116                                            + new Random(new Date().getTime()).nextInt(10000000);
117                    } else {
118                            this.id = id;
119                    }
120    
121                  this.sldFile = sldFile;                  this.sldFile = sldFile;
122    
# Line 132  public class StyledFS implements StyledF Line 141  public class StyledFS implements StyledF
141          }          }
142    
143          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs) {          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs) {
144                  this(fs, null);                  this(fs, (File) null, null);
145            }
146    
147            public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
148                            String id) {
149                    this(fs, null, id);
150          }          }
151    
152          public void dispose() {          public void dispose() {
# Line 154  public class StyledFS implements StyledF Line 168  public class StyledFS implements StyledF
168    
169          public CoordinateReferenceSystem getCrs() {          public CoordinateReferenceSystem getCrs() {
170                  if (crs == null) {                  if (crs == null) {
171                          crs = fs.getSchema()                          crs = fs.getSchema().getCoordinateReferenceSystem();
172                                          .getCoordinateReferenceSystem();                          if (crs == null) {
173                          if (fs.getSchema().getCoordinateReferenceSystem() == null) {  
174                                  LOGGER.warn("Could not determine the CRS of " + getTitle()                                  crs = fs.getSchema().getGeometryDescriptor()
175                                                  + ". Using default " + GeoImportUtil.getDefaultCRS());                                                  .getCoordinateReferenceSystem();
176                                  crs = GeoImportUtil.getDefaultCRS();  
177                                    if (crs == null) {
178                                            LOGGER.warn("Could not determine the CRS of " + getTitle()
179                                                            + ". Using default "
180                                                            + GeoImportUtil.getDefaultCRS());
181                                            crs = GeoImportUtil.getDefaultCRS();
182                                    }
183                          }                          }
184                  }                  }
185                  return crs;                  return crs;
# Line 251  public class StyledFS implements StyledF Line 271  public class StyledFS implements StyledF
271          /**          /**
272           *           *
273           */           */
274          public AttributeMetadataMap getAttributeMetaDataMap() {          public AttributeMetadataMap<AttributeMetadataImpl> getAttributeMetaDataMap() {
275                  if (map == null) {                  if (map == null) {
276    
277                          map = new AttributeMetadataImplMap();                          map = new AttributeMetadataImplMap();
278    
279  //                      // Leaving out the first one, it will be the_geom                          // // Leaving out the first one, it will be the_geom
280  //                      for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {                          // for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
281  //                              AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);                          // AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);
282  //                          //
283  //                              AttributeMetadataImpl attMetaData = new AttributeMetadataImpl( new NameImpl(attDesc                          // AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(
284  //                                              .getName().getNamespaceURI(), attDesc                          // new NameImpl(attDesc
285  //                                              .getName().getLocalPart()), map.getLanguages());                          // .getName().getNamespaceURI(), attDesc
286  //                              map.put(attDesc.getName(), attMetaData);                          // .getName().getLocalPart()), map.getLanguages());
287  //                      }                          // map.put(attDesc.getName(), attMetaData);
288                                                    // }
289    
290                          // Leaving out the first one, it will be the_geom                          // Leaving out the first one, it will be the_geom
291                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
292                                  AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);                                  AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);
293    
294                                  // TODO AttributeMetadataAS would be nicer, which would not work with Translations ;-)                                  // TODO AttributeMetadataAS would be nicer, which would not work
295                                  AttributeMetadataImpl attMetaData = new AttributeMetadataImpl( new NameImpl(attDesc                                  // with Translations ;-)
296                                                  .getName().getNamespaceURI(), attDesc                                  AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(
297                                                  .getName().getLocalPart()), map.getLanguages());                                                  new NameImpl(attDesc.getName().getNamespaceURI(),
298                                  if (String.class.isAssignableFrom( attDesc.getType().getBinding() )){                                                                  attDesc.getName().getLocalPart()),
299                                                    map.getLanguages());
300                                    if (String.class.isAssignableFrom(attDesc.getType()
301                                                    .getBinding())) {
302                                          // For Strings we add the "" as NODATA values                                          // For Strings we add the "" as NODATA values
303                                          attMetaData.addNodataValue("");                                          attMetaData.addNodataValue("");
304                                  }                                  }
# Line 288  public class StyledFS implements StyledF Line 312  public class StyledFS implements StyledF
312           * @return The {@link File} where the SLD was loaded from or           * @return The {@link File} where the SLD was loaded from or
313           *         <code>null</code> if there didn't exist a {@link File}.           *         <code>null</code> if there didn't exist a {@link File}.
314           *           *
315           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a>
          *         Kr&uuml;ger</a>  
316           */           */
317          public File getSldFile() {          public File getSldFile() {
318                  return sldFile;                  return sldFile;
319          }          }
320            
321            /**
322             * Associates this .sld with the {@link FeatureSource}, but does not
323             * automatically load the file. It must not even exist.
324             *
325             * @param sldFile
326             */
327          public void setSldFile(File sldFile) {          public void setSldFile(File sldFile) {
328                  this.sldFile = sldFile;                  this.sldFile = sldFile;
329          }          }
# Line 338  public class StyledFS implements StyledF Line 367  public class StyledFS implements StyledF
367                  // return fc.subCollection(filter);                  // return fc.subCollection(filter);
368    
369                  try {                  try {
370                          return getFeatureSource().getFeatures(filter);                          if (filter != Filter.INCLUDE)
371                                    return getFeatureSource().getFeatures(filter);
372                            else
373                                    return getFeatureSource().getFeatures();
374                  } catch (IOException e) {                  } catch (IOException e) {
375                          throw new RuntimeException(e);                          throw new RuntimeException(e);
376                  }                  }
# Line 359  public class StyledFS implements StyledF Line 391  public class StyledFS implements StyledF
391                  return getGeoObject().getSchema();                  return getGeoObject().getSchema();
392          }          }
393    
394            /**
395             * Tries to load a style from the file denoted in {@link #getSldFile()}. If
396             * the file doesn't exits, return <code>null</code>;
397             *
398             * @return <code>true</code> is style was loaded
399             */
400            public boolean loadStyle() {
401                    if (getSldFile() == null)
402                            return false;
403    
404                    try {
405                            Style[] loadSLD = StylingUtil.loadSLD(getSldFile());
406                            setStyle(loadSLD[0]);
407                            return true;
408                    } catch (Exception e) {
409                            return false;
410                    }
411    
412            }
413    
414            public void setTitle(String title) {
415                    setTitle(new Translation(title));
416            }
417    
418            public void setDesc(String desc) {
419                    setDesc(new Translation(desc));
420            }
421    
422            public void setCRS(CoordinateReferenceSystem crs2) {
423                    crs = crs2;
424            }
425    
426            @Override
427            public ReferencedEnvelope getReferencedEnvelope() {
428                    return new ReferencedEnvelope(getEnvelope(), getCrs());
429            }
430    
431  }  }

Legend:
Removed from v.862  
changed lines
  Added in v.1203

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26