<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Identify on Raster Values in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identify-on-raster-values/m-p/520315#M48485</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Question:&amp;nbsp; Is it possible to get the pixel value of a raster layer in a MapService using the Identify feature?&amp;nbsp; I've looked a bit in the forums and didn't see much on this or similar questions were left unanswered.&amp;nbsp; I am using Javascript 3.3 and I'm pulling a MapService from ArcGIS Server 10.1--specifically: &lt;/SPAN&gt;&lt;A href="http://atlas.wvgs.wvnet.edu/arcgis/rest/services/Coal_Web_Mercator/Pittsburgh_WM/MapServer"&gt;http://atlas.wvgs.wvnet.edu/arcgis/rest/services/Coal_Web_Mercator/Pittsburgh_WM/MapServer&lt;/A&gt;&lt;SPAN&gt; where I'd like to pull from raster layers 6, 10, 14, 22 which deals with coal elevation and thickness.&amp;nbsp; I'm using the Find-Drilldown Identify tool (&lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/jssamples/find_drilldown.html"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/jssamples/find_drilldown.html&lt;/A&gt;&lt;SPAN&gt;) in my application.&amp;nbsp; I was able to employ it successfully with the vector layers.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd appreciate some direction in this matter.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;John Bocan&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GIS Programmer/Analyst&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;WVGES&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Mar 2013 14:42:55 GMT</pubDate>
    <dc:creator>JohnBocan</dc:creator>
    <dc:date>2013-03-18T14:42:55Z</dc:date>
    <item>
      <title>Identify on Raster Values</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identify-on-raster-values/m-p/520315#M48485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Question:&amp;nbsp; Is it possible to get the pixel value of a raster layer in a MapService using the Identify feature?&amp;nbsp; I've looked a bit in the forums and didn't see much on this or similar questions were left unanswered.&amp;nbsp; I am using Javascript 3.3 and I'm pulling a MapService from ArcGIS Server 10.1--specifically: &lt;/SPAN&gt;&lt;A href="http://atlas.wvgs.wvnet.edu/arcgis/rest/services/Coal_Web_Mercator/Pittsburgh_WM/MapServer"&gt;http://atlas.wvgs.wvnet.edu/arcgis/rest/services/Coal_Web_Mercator/Pittsburgh_WM/MapServer&lt;/A&gt;&lt;SPAN&gt; where I'd like to pull from raster layers 6, 10, 14, 22 which deals with coal elevation and thickness.&amp;nbsp; I'm using the Find-Drilldown Identify tool (&lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/jssamples/find_drilldown.html"&gt;http://help.arcgis.com/en/webapi/javascript/arcgis/jssamples/find_drilldown.html&lt;/A&gt;&lt;SPAN&gt;) in my application.&amp;nbsp; I was able to employ it successfully with the vector layers.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd appreciate some direction in this matter.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;John Bocan&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;GIS Programmer/Analyst&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;WVGES&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Mar 2013 14:42:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identify-on-raster-values/m-p/520315#M48485</guid>
      <dc:creator>JohnBocan</dc:creator>
      <dc:date>2013-03-18T14:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Identify on Raster Values</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identify-on-raster-values/m-p/520316#M48486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You could try using a &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/jsapi/querytask.html"&gt;queryTask&lt;/A&gt;&lt;SPAN&gt; instead of identify.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You may need to run multiple queryTasks (one for each layer you wish to run against, ie &lt;/SPAN&gt;&lt;A href="http://atlas...../MapServer/6"&gt;http://atlas...../MapServer/6&lt;/A&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;A href="http://atlas..../MapServer/10"&gt;http://atlas..../MapServer/10&lt;/A&gt;&lt;SPAN&gt;, etc)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Brett Lord-Castillo put together a demo showing how to run multiple query tasks concurrently at &lt;/SPAN&gt;&lt;A href="http://jsfiddle.net/blordcastillo/mULcz/"&gt;http://jsfiddle.net/blordcastillo/mULcz/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Mar 2013 22:52:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identify-on-raster-values/m-p/520316#M48486</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2013-03-18T22:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Identify on Raster Values</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identify-on-raster-values/m-p/520317#M48487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the suggestion.&amp;nbsp; I will consider that query solution instead of the identify drilldown idea for my application (seems cleaner and more efficient!); however, it does not answer my main problem--apprehending the pixel value of a raster layer in a MapService and then displaying the value.&amp;nbsp; Both the identify and query means of showing data deal with "fields".&amp;nbsp; Rasters only have a "value" or "pixel value" and I've not found a good discussion on querying or identifying those in a MapService.&amp;nbsp; Any direction to further documentation or suggestions is greatly appreciated!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 20:09:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identify-on-raster-values/m-p/520317#M48487</guid>
      <dc:creator>JohnBocan</dc:creator>
      <dc:date>2013-03-19T20:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Identify on Raster Values</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identify-on-raster-values/m-p/520318#M48488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;A href="http://forums.arcgis.com/threads/16680-Identify-on-Raster-Layer"&gt;This thread&lt;/A&gt;&lt;SPAN&gt; might be some help. It seems to suggest that the syntax for retrieving a pixel value might be:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;idResults[0]['Pixel Value']&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Haven't tried it so I'm just throwing it out there.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Mar 2013 20:21:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/identify-on-raster-values/m-p/520318#M48488</guid>
      <dc:creator>SteveCole</dc:creator>
      <dc:date>2013-03-19T20:21:41Z</dc:date>
    </item>
  </channel>
</rss>

