GET_RASTER_INFO

Used in

REQUEST  

Servers

Image  

Parent elements

REQUEST 

Syntax

<GET_RASTER_INFOAttribute Description Table
     (r)layerid="string"
     (r)x="double"
     (r)y="double"
>

     <COORDSYS... />

</GET_RASTER_INFO >
(r): Attribute or child element is required.

Description

Returns the pixel value of an image at a given x,y coordinate location for the specified layer.

Restrictions


Notes


Attribute Descriptions for GET_RASTER_INFO

AttributeUsage
layeridID of the layer to query.
xX-coordinate of selected point.
yY-coordinate of selected point.
Back to top 

Examples for GET_RASTER_INFO

<?xml version="1.0" encoding="UTF-8" ?>
<ARCXML version="1.1">
  <REQUEST>
    <GET_RASTER_INFO x="136.333846" y="60.075385" layerid="0" >
      <COORDSYS id="4326" />
    </GET_RASTER_INFO>
  </REQUEST>
</ARCXML>

Back to top