Ciao Simone, thank you for your reply,
The version of GeoServer that I'm using is the 2.4-SNAPSHOT.
For the test I'm using a satellite image with red green and blue bands
(RGB).
The informations of the image from the gdalinfo command are:
Driver: GTiff/GeoTIFF
Files: L8_ms_30_04_13.tif
Size is 6375, 2820
Coordinate System is:
GEOGCS["WGS 84",
DATUM["WGS_1984",
SPHEROID["WGS 84",6378137,298.257223563,
AUTHORITY["EPSG","7030"]],
AUTHORITY["EPSG","6326"]],
PRIMEM["Greenwich",0],
UNIT["degree",0.0174532925199433],
AUTHORITY["EPSG","4326"]]
Origin = (22.234617285022399,38.179278213209521)
Pixel Size = (0.000306062103134,-0.000306062103134)
Metadata:
AREA_OR_POINT=Area
Image Structure Metadata:
INTERLEAVE=PIXEL
Corner Coordinates:
Upper Left ( 22.2346173, 38.1792782) ( 22d14' 4.62"E, 38d10'45.40"N)
Lower Left ( 22.2346173, 37.3161831) ( 22d14' 4.62"E, 37d18'58.26"N)
Upper Right ( 24.1857632, 38.1792782) ( 24d11' 8.75"E, 38d10'45.40"N)
Lower Right ( 24.1857632, 37.3161831) ( 24d11' 8.75"E, 37d18'58.26"N)
Center ( 23.2101902, 37.7477306) ( 23d12'36.68"E, 37d44'51.83"N)
Band 1 Block=6375x1 Type=Byte, ColorInterp=Red
Mask Flags: PER_DATASET ALPHA
Band 2 Block=6375x1 Type=Byte, ColorInterp=Green
Mask Flags: PER_DATASET ALPHA
Band 3 Block=6375x1 Type=Byte, ColorInterp=Blue
Mask Flags: PER_DATASET ALPHA
Band 4 Block=6375x1 Type=Byte, ColorInterp=Alpha
The SLD code from the Styles --> [Raster Image] is the following:
<?xml version="1.0" encoding="UTF-8"?>
<sld:StyledLayerDescriptor xmlns="http://www.opengis.net/sld"
xmlns:sld="http://www.opengis.net/sld"
xmlns:ogc="http://www.opengis.net/ogc"
xmlns:gml="http://www.opengis.net/gml" version="1.0.0">
<sld:NamedLayer>
<sld:Name>l8_ms_30_04_13</sld:Name>
<sld:UserStyle>
<sld:Name>l8_ms_30_04_13</sld:Name>
<sld:Title>l8_ms_30_04_13</sld:Title>
<sld:FeatureTypeStyle>
<sld:Name>name</sld:Name>
<sld:Rule>
<sld:RasterSymbolizer/>
</sld:Rule>
</sld:FeatureTypeStyle>
</sld:UserStyle>
</sld:NamedLayer>
</sld:StyledLayerDescriptor>
I intergrate the "Brightness and contrast" example from the following link:
http://docs.geoserver.org/stable/en/user/styling/sld-cookbook/rasters.html#brightness-and-contrast
The final code that I insert on the form, is the following:
<?xml version="1.0" encoding="UTF-8"?>
<sld:StyledLayerDescriptor xmlns="http://www.opengis.net/sld"
xmlns:sld="http://www.opengis.net/sld"
xmlns:ogc="http://www.opengis.net/ogc"
xmlns:gml="http://www.opengis.net/gml" version="1.0.0">
<sld:NamedLayer>
<sld:Name>l8_ms_30_04_13</sld:Name>
<sld:UserStyle>
<sld:Name>l8_ms_30_04_13</sld:Name>
<sld:Title>l8_ms_30_04_13</sld:Title>
<sld:FeatureTypeStyle>
<sld:Name>name</sld:Name>
<sld:Rule>
<sld:RasterSymbolizer/>
<ContrastEnhancement>
<Normalize />
<GammaValue>0.5</GammaValue>
</ContrastEnhancement>
<ColorMap>
<ColorMapEntry color="#008000" quantity="70" />
<ColorMapEntry color="#663333" quantity="256" />
</ColorMap>
</sld:Rule>
</sld:FeatureTypeStyle>
</sld:UserStyle>
</sld:NamedLayer>
</sld:StyledLayerDescriptor>
After the process, the problem remains the same.
How can fix it ?
Thank you again for your help,
Regards,
George
--
View this message in context: http://osgeo-org.1560.x6.nabble.com/SLD-Raster-problem-tp5103936p5104117.html
Sent from the GeoServer - User mailing list archive at Nabble.com.