Hi,<br><br>According to <a href="http://mapserver.org/input/raster.html#raster-query">http://mapserver.org/input/raster.html#raster-query</a><br>I suspect those values could be retrieved as the "red", "green" and "blue" attributes of the returned features.<br>
<br>Best regards,<br><br>Tamas<br><br><br><br><div class="gmail_quote">2009/9/27 Ahmet Temiz <span dir="ltr"><<a href="mailto:temiz@deprem.gov.tr">temiz@deprem.gov.tr</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
hello<br>
<br>
I am using java mapscript and trying to get values from raster layer.<br>
<br>
But I can only get x,y values but not other values especially color values of<br>
the pixel I had clicked.<br>
<br>
here is the my code's fragment :<br>
<br>
int q = slplayer.queryByPoint(map0, qpt, mapscript.MS_MULTIPLE, 10.0 );<br>
int numResults = slplayer.getNumResults();<br>
<br>
if (numResults != 0) {<br>
        for (int j = 0; j < numResults; j++) {<br>
                resultCacheMemberObj resultMember = slplayer.getResult(j);<br>
                slplayer.open();<br>
                shapeObj shape = new shapeObj(slplayer.getType()<br>
                                .swigValue());<br>
                int s = slplayer.getShape(shape, resultMember.getTileindex(),<br>
                                resultMember.getShapeindex());<br>
<br>
               System.out.println(" *** s "+s);   -----> 0<br>
<br>
<br>
                if (shape != null) {<br>
<br>
                System.out.println(" *** numResults "+numResults); ----> 2<br>
<br>
                int shpix = shape.getIndex();<br>
<br>
                System.out.println(" *** shpix "+shpix);  ! -------> -1<br>
<br>
                System.out.println(" *** shape.getValue "+shape.getValue(j));  -----> only<br>
gives x,y values bot not RGB values<br>
<br>
                }<br>
                slplayer.close();<br>
        }<br>
<br>
here is the related part of map file :<br>
<br>
LAYER<br>
  NAME "slp_cat"<br>
  STATUS OFF<br>
  TILEINDEX "/home/orkun/data/hsunucu/mapshar/rast_index.shp"<br>
  TILEITEM "Location"<br>
  TYPE RASTER<br>
  TEMPLATE "/home/orkun/workspace2/pro1/WebContent/Raster_Query.html"<br>
  PROCESSING "SCALE=1,9"<br>
  #PROCESSING "SCALE_BUCKETS=9"<br>
  CLASS<br>
    NAME "0-5"<br>
    EXPRESSION ([pixel] =1)<br>
    STYLE<br>
      COLOR 254 254 25<br>
    END<br>
  END<br>
<br>
  CLASS<br>
    NAME "5-10"<br>
    EXPRESSION ([pixel] =2)<br>
    STYLE<br>
      COLOR 249 177 20<br>
    END<br>
  END<br>
   CLASS<br>
    NAME "10-15"<br>
    EXPRESSION ([pixel] =3)<br>
    STYLE<br>
      COLOR 25 254 82<br>
    END<br>
  END<br>
<br>
   CLASS<br>
    NAME "15-20"<br>
    EXPRESSION ([pixel] =4)<br>
    STYLE<br>
      COLOR 25 254 225<br>
    END<br>
  END<br>
<br>
  CLASS<br>
    NAME "20-25"<br>
    EXPRESSION ([pixel] =5)<br>
    STYLE<br>
      COLOR 25 140 254<br>
    END<br>
  END<br>
<br>
  CLASS<br>
    NAME "30-35"<br>
    EXPRESSION ([pixel] =6)<br>
    STYLE<br>
      COLOR 53 25 254<br>
    END<br>
  END<br>
<br>
  CLASS<br>
    NAME "35-45"<br>
    EXPRESSION ([pixel] =7)<br>
    STYLE<br>
      COLOR 196 25 254<br>
    END<br>
  END<br>
<br>
  CLASS<br>
    NAME "35-45"<br>
    EXPRESSION ([pixel] =8)<br>
    STYLE<br>
      COLOR 254 25 169<br>
    END<br>
  END<br>
<br>
  CLASS<br>
    NAME "45-90"<br>
    EXPRESSION ([pixel] =9)<br>
    STYLE<br>
      COLOR 254 25 25<br>
    END<br>
  END<br>
<br>
 END<br>
<br>
~~~~~~~~~~~~~~~~~<br>
<br>
 Could you possibly tell me where I am wrong ?<br>
<br>
 kind regards<br>
<br>
--<br>
Open WebMail Project (<a href="http://openwebmail.org" target="_blank">http://openwebmail.org</a>)<br>
<br>
<br>
--<br>
This message has been scanned for viruses and<br>
dangerous content by MailScanner, and is<br>
believed to be clean.<br>
<br>
_______________________________________________<br>
mapserver-users mailing list<br>
<a href="mailto:mapserver-users@lists.osgeo.org">mapserver-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/mapserver-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapserver-users</a><br>
</blockquote></div><br>