/[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 894 by alfonx, Fri Jun 4 09:19:07 2010 UTC
# Line 60  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   */   */
67  public class StyledFS implements StyledFeatureSourceInterface {  public class StyledFS implements StyledFeatureSourceInterface {
68          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);          private static final Logger LOGGER = Logger.getLogger(StyledFS.class);
69    
70          private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;          private final FeatureSource<SimpleFeatureType, SimpleFeature> fs;
71            
72          /** Caching the CRS of the layer **/          /** Caching the CRS of the layer **/
73          CoordinateReferenceSystem crs = null;          CoordinateReferenceSystem crs = null;
74    
# Line 86  public class StyledFS implements StyledF Line 86  public class StyledFS implements StyledF
86    
87          private File sldFile;          private File sldFile;
88    
89          private AttributeMetadataMap map;          /** A map of simple attribute names to their meta-data **/
90            private AttributeMetadataMap<AttributeMetadataImpl> map;
91    
92          private Filter filter = Filter.INCLUDE;          private Filter filter = Filter.INCLUDE;
93    
# Line 154  public class StyledFS implements StyledF Line 155  public class StyledFS implements StyledF
155    
156          public CoordinateReferenceSystem getCrs() {          public CoordinateReferenceSystem getCrs() {
157                  if (crs == null) {                  if (crs == null) {
158                          crs = fs.getSchema()                          crs = fs.getSchema().getCoordinateReferenceSystem();
159                                          .getCoordinateReferenceSystem();                          if (crs == null) {
160                          if (fs.getSchema().getCoordinateReferenceSystem() == null) {  
161                                  LOGGER.warn("Could not determine the CRS of " + getTitle()                                  crs = fs.getSchema().getGeometryDescriptor()
162                                                  + ". Using default " + GeoImportUtil.getDefaultCRS());                                                  .getCoordinateReferenceSystem();
163                                  crs = GeoImportUtil.getDefaultCRS();                                  
164                                    if (crs == null) {
165                                            LOGGER.warn("Could not determine the CRS of " + getTitle()
166                                                            + ". Using default "
167                                                            + GeoImportUtil.getDefaultCRS());
168                                            crs = GeoImportUtil.getDefaultCRS();
169                                    }
170                          }                          }
171                  }                  }
172                  return crs;                  return crs;
# Line 251  public class StyledFS implements StyledF Line 258  public class StyledFS implements StyledF
258          /**          /**
259           *           *
260           */           */
261          public AttributeMetadataMap getAttributeMetaDataMap() {          public AttributeMetadataMap<AttributeMetadataImpl> getAttributeMetaDataMap() {
262                  if (map == null) {                  if (map == null) {
263    
264                          map = new AttributeMetadataImplMap();                          map = new AttributeMetadataImplMap();
265    
266  //                      // Leaving out the first one, it will be the_geom                          // // Leaving out the first one, it will be the_geom
267  //                      for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {                          // for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
268  //                              AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);                          // AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);
269  //                          //
270  //                              AttributeMetadataImpl attMetaData = new AttributeMetadataImpl( new NameImpl(attDesc                          // AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(
271  //                                              .getName().getNamespaceURI(), attDesc                          // new NameImpl(attDesc
272  //                                              .getName().getLocalPart()), map.getLanguages());                          // .getName().getNamespaceURI(), attDesc
273  //                              map.put(attDesc.getName(), attMetaData);                          // .getName().getLocalPart()), map.getLanguages());
274  //                      }                          // map.put(attDesc.getName(), attMetaData);
275                                                    // }
276    
277                          // Leaving out the first one, it will be the_geom                          // Leaving out the first one, it will be the_geom
278                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {                          for (int i = 1; i < fs.getSchema().getAttributeCount(); i++) {
279                                  AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);                                  AttributeDescriptor attDesc = fs.getSchema().getDescriptor(i);
280    
281                                  // TODO AttributeMetadataAS would be nicer, which would not work with Translations ;-)                                  // TODO AttributeMetadataAS would be nicer, which would not work
282                                  AttributeMetadataImpl attMetaData = new AttributeMetadataImpl( new NameImpl(attDesc                                  // with Translations ;-)
283                                                  .getName().getNamespaceURI(), attDesc                                  AttributeMetadataImpl attMetaData = new AttributeMetadataImpl(
284                                                  .getName().getLocalPart()), map.getLanguages());                                                  new NameImpl(attDesc.getName().getNamespaceURI(),
285                                  if (String.class.isAssignableFrom( attDesc.getType().getBinding() )){                                                                  attDesc.getName().getLocalPart()), map
286                                                                    .getLanguages());
287                                    if (String.class.isAssignableFrom(attDesc.getType()
288                                                    .getBinding())) {
289                                          // For Strings we add the "" as NODATA values                                          // For Strings we add the "" as NODATA values
290                                          attMetaData.addNodataValue("");                                          attMetaData.addNodataValue("");
291                                  }                                  }
# Line 288  public class StyledFS implements StyledF Line 299  public class StyledFS implements StyledF
299           * @return The {@link File} where the SLD was loaded from or           * @return The {@link File} where the SLD was loaded from or
300           *         <code>null</code> if there didn't exist a {@link File}.           *         <code>null</code> if there didn't exist a {@link File}.
301           *           *
302           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons Tzeggai</a>
          *         Kr&uuml;ger</a>  
303           */           */
304          public File getSldFile() {          public File getSldFile() {
305                  return sldFile;                  return sldFile;
306          }          }
307            
308          public void setSldFile(File sldFile) {          public void setSldFile(File sldFile) {
309                  this.sldFile = sldFile;                  this.sldFile = sldFile;
310          }          }
# Line 359  public class StyledFS implements StyledF Line 369  public class StyledFS implements StyledF
369                  return getGeoObject().getSchema();                  return getGeoObject().getSchema();
370          }          }
371    
372            /**
373             * Tries to load a style from the file denoted in {@link #getSldFile()}. If
374             * the file doesn't exits, return <code>null</code>;
375             *
376             * @return <code>true</code> is style was loaded
377             */
378            public boolean loadStyle() {
379                    if (getSldFile() == null)
380                            return false;
381    
382                    try {
383                            Style[] loadSLD = StylingUtil.loadSLD(getSldFile());
384                            setStyle(loadSLD[0]);
385                            return true;
386                    } catch (Exception e) {
387                            return false;
388                    }
389    
390            }
391    
392  }  }

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26