/[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 1191 by alfonx, Sat Oct 30 00:02:44 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;
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 342  public class StyledFS implements StyledF Line 366  public class StyledFS implements StyledF
366                  // return fc.subCollection(filter);                  // return fc.subCollection(filter);
367    
368                  try {                  try {
369                          return getFeatureSource().getFeatures(filter);                          if (filter != Filter.INCLUDE)
370                                    return getFeatureSource().getFeatures(filter);
371                            else
372                                    return getFeatureSource().getFeatures();
373                  } catch (IOException e) {                  } catch (IOException e) {
374                          throw new RuntimeException(e);                          throw new RuntimeException(e);
375                  }                  }
# Line 366  public class StyledFS implements StyledF Line 393  public class StyledFS implements StyledF
393          /**          /**
394           * 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
395           * the file doesn't exits, return <code>null</code>;           * the file doesn't exits, return <code>null</code>;
396             *
397           * @return <code>true</code> is style was loaded           * @return <code>true</code> is style was loaded
398           */           */
399          public boolean loadStyle() {          public boolean loadStyle() {
400                  if (getSldFile() == null)                  if (getSldFile() == null)
401                          return false;                          return false;
402                    
403                  try {                  try {
404                          Style[] loadSLD = StylingUtil.loadSLD(getSldFile());                          Style[] loadSLD = StylingUtil.loadSLD(getSldFile());
405                          setStyle(loadSLD[0]);                          setStyle(loadSLD[0]);
# Line 382  public class StyledFS implements StyledF Line 410  public class StyledFS implements StyledF
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.888  
changed lines
  Added in v.1191

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26