/[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 888 by alfonx, Thu Jun 3 10:48:43 2010 UTC revision 1159 by alfonx, Fri Oct 22 17:56:28 2010 UTC
# Line 76  public class StyledFS implements StyledF Line 76  public class StyledFS implements StyledF
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 101  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<SimpleFeatureType, SimpleFeature> fs,          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs,
109                          File sldFile) {                          File sldFile, String id) {
110    
111                  this.fs = fs;                  this.fs = fs;
112    
113                  id = StyledFS.class.getSimpleName()                  if (id == null) {
114                                  + new Random(new Date().getTime()).nextInt(10000000);                          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    
# Line 133  public class StyledFS implements StyledF Line 140  public class StyledFS implements StyledF
140          }          }
141    
142          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs) {          public StyledFS(FeatureSource<SimpleFeatureType, SimpleFeature> fs) {
143                  this(fs, null);                  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() {
# Line 156  public class StyledFS implements StyledF Line 168  public class StyledFS implements StyledF
168          public CoordinateReferenceSystem getCrs() {          public CoordinateReferenceSystem getCrs() {
169                  if (crs == null) {                  if (crs == null) {
170                          crs = fs.getSchema().getCoordinateReferenceSystem();                          crs = fs.getSchema().getCoordinateReferenceSystem();
171                          if (fs.getSchema().getCoordinateReferenceSystem() == null) {                          if (crs == null) {
172                                  LOGGER.warn("Could not determine the CRS of " + getTitle()  
173                                                  + ". Using default " + GeoImportUtil.getDefaultCRS());                                  crs = fs.getSchema().getGeometryDescriptor()
174                                  crs = GeoImportUtil.getDefaultCRS();                                                  .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;                  return crs;
# Line 275  public class StyledFS implements StyledF Line 294  public class StyledFS implements StyledF
294                                  // with Translations ;-)                                  // with Translations ;-)
295                                  AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(                                  AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(
296                                                  new NameImpl(attDesc.getName().getNamespaceURI(),                                                  new NameImpl(attDesc.getName().getNamespaceURI(),
297                                                                  attDesc.getName().getLocalPart()), map                                                                  attDesc.getName().getLocalPart()),
298                                                                  .getLanguages());                                                  map.getLanguages());
299                                  if (String.class.isAssignableFrom(attDesc.getType()                                  if (String.class.isAssignableFrom(attDesc.getType()
300                                                  .getBinding())) {                                                  .getBinding())) {
301                                          // For Strings we add the "" as NODATA values                                          // For Strings we add the "" as NODATA values
# Line 292  public class StyledFS implements StyledF Line 311  public class StyledFS implements StyledF
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>
          *         Tzeggai</a>  
315           */           */
316          public File getSldFile() {          public File getSldFile() {
317                  return sldFile;                  return sldFile;
# Line 342  public class StyledFS implements StyledF Line 360  public class StyledFS implements StyledF
360                  // return fc.subCollection(filter);                  // return fc.subCollection(filter);
361    
362                  try {                  try {
363                          return getFeatureSource().getFeatures(filter);                          if (filter != Filter.INCLUDE)
364                                    return getFeatureSource().getFeatures(filter);
365                            else
366                                    return getFeatureSource().getFeatures();
367                  } catch (IOException e) {                  } catch (IOException e) {
368                          throw new RuntimeException(e);                          throw new RuntimeException(e);
369                  }                  }
# Line 366  public class StyledFS implements StyledF Line 387  public class StyledFS implements StyledF
387          /**          /**
388           * Tries to load a style from the file denoted in {@link #getSldFile()}. If           * Tries to load a style from the file denoted in {@link #getSldFile()}. If
389           * the file doesn't exits, return <code>null</code>;           * the file doesn't exits, return <code>null</code>;
390             *
391           * @return <code>true</code> is style was loaded           * @return <code>true</code> is style was loaded
392           */           */
393          public boolean loadStyle() {          public boolean loadStyle() {
394                  if (getSldFile() == null)                  if (getSldFile() == null)
395                          return false;                          return false;
396                    
397                  try {                  try {
398                          Style[] loadSLD = StylingUtil.loadSLD(getSldFile());                          Style[] loadSLD = StylingUtil.loadSLD(getSldFile());
399                          setStyle(loadSLD[0]);                          setStyle(loadSLD[0]);
# Line 382  public class StyledFS implements StyledF Line 404  public class StyledFS implements StyledF
404    
405          }          }
406    
407            public void setTitle(String title) {
408                    setTitle(new Translation(title));
409            }
410    
411            public void setDesc(String desc) {
412                    setDesc(new Translation(desc));
413            }
414    
415  }  }

Legend:
Removed from v.888  
changed lines
  Added in v.1159

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26