[Geoserver-users] 16 bit Geotiffs using WMS

Hello,

When I try to render a 16 bit DEM (containing Coverages) with geoserver
using WMS with Qgis.All i get is a blank page.

My Process Steps were as follows:

I used GDAL_translate to convert a DEM into a 16 or 8 bit GeoTiff.The
GeoTiff opens fine if Qgis reads it from the file but,if i load it into
Geoserver and try to render it using WMS, the ouput is simply a blank
page!!!!

if anybody has any suggestions,i would appreciate,
Thanks
Sharat
--
View this message in context: http://www.nabble.com/16-bit-Geotiffs-using-WMS-tf4214674.html#a11990562
Sent from the GeoServer - User mailing list archive at Nabble.com.

Ciao,
a sample file and a Jira task for it would be greatly appreciated.

Keep in mind also that for the moment the implementation of
RasterSymbolizer is quite poor hence your DEM data could not be
rendered very nicely.

Simone.

On 8/3/07, venkatsharat <sharat_aec@anonymised.com> wrote:

Hello,

When I try to render a 16 bit DEM (containing Coverages) with geoserver
using WMS with Qgis.All i get is a blank page.

My Process Steps were as follows:

I used GDAL_translate to convert a DEM into a 16 or 8 bit GeoTiff.The
GeoTiff opens fine if Qgis reads it from the file but,if i load it into
Geoserver and try to render it using WMS, the ouput is simply a blank
page!!!!

if anybody has any suggestions,i would appreciate,
Thanks
Sharat
--
View this message in context: http://www.nabble.com/16-bit-Geotiffs-using-WMS-tf4214674.html#a11990562
Sent from the GeoServer - User mailing list archive at Nabble.com.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
-------------------------------------------------------
Eng. Simone Giannecchini
President /CEO GeoSolutions S.A.S.
Via Carignoni 51
55041 Camaiore (LU)
Italy

phone: +39 0584983027
fax: +39 0584983027
mob: +39 349 8227000

http://www.geo-solutions.it

-------------------------------------------------------

venkatsharat ha scritto:

Hello,

When I try to render a 16 bit DEM (containing Coverages) with geoserver
using WMS with Qgis.All i get is a blank page.

Hmmm... mine is just a guess, but try to associate the following SLD to
your raster:

<?xml version="1.0" encoding="UTF-8"?>
<StyledLayerDescriptor xmlns="http://www.opengis.net/sld&quot; xmlns:ogc="http://www.opengis.net/ogc&quot; xmlns:xlink="http://www.w3.org/1999/xlink&quot; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&quot; xsi:schemaLocation="http://www.opengis.net/sld
http://schemas.opengis.net/sld/1.0.0/StyledLayerDescriptor.xsd&quot; version="1.0.0">
<UserLayer>
   <Name>raster_layer</Name>
         <LayerFeatureConstraints>
             <FeatureTypeConstraint/>
         </LayerFeatureConstraints>
   <UserStyle>
     <Name>raster</Name>
     <Title>A boring default style</Title>
     <Abstract>A sample style for rasters</Abstract>
     <FeatureTypeStyle>
           <FeatureTypeName>Feature</FeatureTypeName>
       <Rule>
         <RasterSymbolizer/>
       </Rule>
     </FeatureTypeStyle>
   </UserStyle>
</UserLayer>
</StyledLayerDescriptor>

Cheers
Andrea