/[schmitzm]/trunk/src/skrueger/geotools/StyledLayerUtil.java
ViewVC logotype

Diff of /trunk/src/skrueger/geotools/StyledLayerUtil.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 772 by alfonx, Sun Mar 21 14:05:26 2010 UTC revision 1212 by alfonx, Wed Nov 3 10:49:38 2010 UTC
# Line 25  Line 25 
25   *   *
26   * Contributors:   * Contributors:
27   *     Martin O. J. Schmitz - initial API and implementation   *     Martin O. J. Schmitz - initial API and implementation
28   *     Stefan A. Krüger - additional utility classes   *     Stefan A. Tzeggai - additional utility classes
29   ******************************************************************************/   ******************************************************************************/
30  package skrueger.geotools;  package skrueger.geotools;
31    
# Line 92  import schmitzm.io.IOUtil; Line 92  import schmitzm.io.IOUtil;
92  import schmitzm.lang.LangUtil;  import schmitzm.lang.LangUtil;
93  import schmitzm.swing.JPanel;  import schmitzm.swing.JPanel;
94  import schmitzm.swing.SwingUtil;  import schmitzm.swing.SwingUtil;
 import skrueger.AttributeMetadataInterface;  
95  import skrueger.AttributeMetadataImpl;  import skrueger.AttributeMetadataImpl;
96    import skrueger.AttributeMetadataInterface;
97  import skrueger.RasterLegendData;  import skrueger.RasterLegendData;
98  import skrueger.i8n.Translation;  import skrueger.i8n.Translation;
99    
# Line 285  public class StyledLayerUtil { Line 285  public class StyledLayerUtil {
285           */           */
286          public static AttributeMetadataImpl parseAttributeMetaData(          public static AttributeMetadataImpl parseAttributeMetaData(
287                          final Element element) {                          final Element element) {
288                  final String namespace = String.valueOf(element                  final String namespace = element.getAttributeValue("namespace");
289                                  .getAttributeValue("namespace"));                  final String localname = element.getAttributeValue("localname");
                 final String localname = String.valueOf(element  
                                 .getAttributeValue("localname"));  
290                  final NameImpl aName = new NameImpl(namespace, localname);                  final NameImpl aName = new NameImpl(namespace, localname);
291                  final Boolean visible = Boolean.valueOf(element                  final Boolean visible = Boolean.valueOf(element
292                                  .getAttributeValue("visible"));                                  .getAttributeValue("visible"));
# Line 880  public class StyledLayerUtil { Line 878  public class StyledLayerUtil {
878                  // Store the SLD                  // Store the SLD
879                  final Style sldStyle = style.getGeoObjectStyle();                  final Style sldStyle = style.getGeoObjectStyle();
880                  if (sldStyle != null) {                  if (sldStyle != null) {
881                          StylingUtil.saveStyleToSLD(sldStyle, IOUtil.changeFileExt(new File(                          StylingUtil.saveStyleToSld(sldStyle, IOUtil.changeFileExt(new File(
882                                          geoObjectURL.toURI()), sldExt));                                          geoObjectURL.toURI()), sldExt));
883                  }                  }
884    
# Line 931  public class StyledLayerUtil { Line 929  public class StyledLayerUtil {
929           * Creates a {@link JPanel} that shows a legend for a list of           * Creates a {@link JPanel} that shows a legend for a list of
930           * {@link FeatureTypeStyle}s and a targeted featureType           * {@link FeatureTypeStyle}s and a targeted featureType
931           *           *
932             * @param style
933             *            The Style to presented in this legend
934           * @param featureType           * @param featureType
935           *            If this a legend for Point, Polygon or Line?           *            If this a legend for Point, Polygon or Line?
          * @param list  
          *            The Styles to presented in this legend  
936           *           *
937           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons
938           *         Kr&uuml;ger</a>           *         Tzeggai</a>
939           */           */
940          public static JPanel createLegendPanel(Style style,          public static JPanel createLegendSwingPanel(Style style,
941                          final SimpleFeatureType featureType, final int iconWidth,                          final SimpleFeatureType featureType, final int iconWidth,
942                          final int iconHeight) {                          final int iconHeight) {
943    
# Line 995  public class StyledLayerUtil { Line 993  public class StyledLayerUtil {
993                  return panel;                  return panel;
994          }          }
995    
996            
997    
998            
999          /**          /**
1000           * Creates a {@link JComponent} that contains a legend for a given           * Creates a {@link JComponent} that contains a legend for a given
1001           * rasterLayer and a given {@link Style}.           * {@link StyledRasterInterface} and a given {@link Style}.
1002           *           *
1003           * @param style           * @param style
1004           *            if <code>null</code>, the default {@link Style} is extracetd           *            if <code>null</code>, the default {@link Style} is extracetd
1005           *            from the {@link StyledRasterInterface}           *            from the {@link StyledRasterInterface}
1006           */           */
1007          public static JPanel createLegendPanel(          public static JPanel createLegendSwingPanel(
1008                          final StyledRasterInterface<?> styledRaster, Style style,                          final StyledRasterInterface<?> styledRaster, Style style,
1009                          final int iconWidth, final int iconHeight) {                          final int iconWidth, final int iconHeight) {
1010    
# Line 1134  public class StyledLayerUtil { Line 1135  public class StyledLayerUtil {
1135    
1136                  return panel;                  return panel;
1137          }          }
1138            
1139                    
1140    
1141          /**          /**
1142           * Extracts the {@link ColorModel} of any {@link StyledRasterInterface}. May           * Extracts the {@link ColorModel} of any {@link StyledRasterInterface}. May
# Line 1148  public class StyledLayerUtil { Line 1151  public class StyledLayerUtil {
1151                          if (geoObject instanceof GridCoverage2D) {                          if (geoObject instanceof GridCoverage2D) {
1152                                  final GridCoverage2D cov = (GridCoverage2D) geoObject;                                  final GridCoverage2D cov = (GridCoverage2D) geoObject;
1153                                  colorModel = cov.getRenderedImage().getColorModel();                                  colorModel = cov.getRenderedImage().getColorModel();
1154                          } else if (styledGrid instanceof StyledRasterPyramidInterface) {                          } else if (styledGrid instanceof StyledGridCoverageReaderInterface) {
1155    
1156                                  final Parameter readGG = new Parameter(                                  final Parameter readGG = new Parameter(
1157                                                  AbstractGridFormat.READ_GRIDGEOMETRY2D);                                                  AbstractGridFormat.READ_GRIDGEOMETRY2D);
1158    
1159                                  final ReferencedEnvelope mapExtend = new org.geotools.geometry.jts.ReferencedEnvelope(                                  final ReferencedEnvelope mapExtend = new ReferencedEnvelope(
1160                                                  styledGrid.getEnvelope(), styledGrid.getCrs());                                                  styledGrid.getEnvelope(), styledGrid.getCrs());
1161    
1162                                  readGG.setValue(new GridGeometry2D(new GeneralGridEnvelope(                                  readGG.setValue(new GridGeometry2D(new GeneralGridEnvelope(

Legend:
Removed from v.772  
changed lines
  Added in v.1212

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26