/[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 863 by alfonx, Sun May 23 13:42:13 2010 UTC revision 1160 by alfonx, Fri Oct 22 21:35:30 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 53  import org.opengis.referencing.crs.Coord Line 52  import org.opengis.referencing.crs.Coord
52  import schmitzm.geotools.io.GeoImportUtil;  import schmitzm.geotools.io.GeoImportUtil;
53  import schmitzm.geotools.styling.StylingUtil;  import schmitzm.geotools.styling.StylingUtil;
54  import skrueger.AttributeMetadataImpl;  import skrueger.AttributeMetadataImpl;
 import skrueger.AttributeMetadataInterface;  
55  import skrueger.i8n.Translation;  import skrueger.i8n.Translation;
56    
57  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   * This class enables a non Atlas context to use the Atlas LayerPanel   * This class enables a non Atlas context to use the Atlas LayerPanel
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 Tzeggai</a>
64   *   *
65   *         TODO Rename to StyledShapefile   *         TODO Rename to StyledShapefile
66   */   */
# Line 78  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 103  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 135  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 158  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 277  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 294  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>
          *         Kr&uuml;ger</a>  
315           */           */
316          public File getSldFile() {          public File getSldFile() {
317                  return sldFile;                  return sldFile;
# Line 344  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 368  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 384  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            public void setCRS(CoordinateReferenceSystem crs2) {
416                    crs=crs2;
417            }
418    
419  }  }

Legend:
Removed from v.863  
changed lines
  Added in v.1160

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26