<?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 Re: Con statement with raster calculator in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250559#M3569</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Could you please try this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Con(("inRastA" &amp;lt;= 43) &amp;amp; ("inRastB" &amp;gt;= 42) &amp;amp;(("inRastA" + "inRastB") &amp;lt;=85),86, ( "inRastA" + "inRastB"))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Mar 2015 07:19:39 GMT</pubDate>
    <dc:creator>KishorGhatage</dc:creator>
    <dc:date>2015-03-02T07:19:39Z</dc:date>
    <item>
      <title>Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250554#M3564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to know if there is a way to perform a conditional raster calculation between two layers A and B.&lt;/P&gt;&lt;P&gt;I would like to have the following conditions:&lt;/P&gt;&lt;P&gt;If (inRastA &amp;lt;= 43) (condition 1) and (inRastB&amp;gt; = 42) (condition2) and (inRastA+inRastB &amp;lt;= 85) (condition3), then the result is (ouRast = 86), otherwise (inRastA+inRastB).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I write this statement within the Raster Calculator?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below the same example written in Excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(And(A1&amp;lt;=43; B1&amp;gt;=42; O1&amp;lt;=85);86;O1+B1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 20:56:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250554#M3564</guid>
      <dc:creator>TahirTamba1</dc:creator>
      <dc:date>2015-02-27T20:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250555#M3565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have obviously found the &lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//009z00000005000000"&gt;Con &lt;/A&gt;tool. Save us some time and post what you have so far.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: the short answer to your first question is, yes, it is possible to do this using Con. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 21:33:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250555#M3565</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-02-27T21:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250556#M3566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Con(("inRastA" &amp;lt;= 43") &amp;amp; ("inRastB" &amp;gt;= 42) &amp;amp; ("inRastA" + "inRastB") &amp;lt;=85, "ouRast" == 86, "inRastA" + "inRastB")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it works&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 22:35:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250556#M3566</guid>
      <dc:creator>EtiOst</dc:creator>
      <dc:date>2015-02-27T22:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250557#M3567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Darren,&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN title="Pour être plus explicite, nous avons généré deux grilles d'interpolation en utilisant la méthode du krigeage sur les sols contaminés appartenant à deux groupes parmi ala grille de classification des sols contaminés adoptée par le ministère l'environnement de la province du Québec."&gt;To be more explicit, we generated two interpolation grids using the kriging method for contaminated soils from two groups among ala contaminated soil classification scheme adopted by the Ministry of Environment of Quebec. &lt;/SPAN&gt;&lt;SPAN title="Les sols de la classe BC (contaminés) représente la grille de surface interpolée pour cette classe."&gt;The soils of the BC class (contaminated) represents the interpolated surface grid for this class. &lt;/SPAN&gt;&lt;SPAN title="La seconde classe représente les sols C+ et C+RESC, très contaminés. "&gt;The second class represents C + and C + RESC soil very contaminated.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN title="Après interpolation des deux catégories qui représentent les même points d'échantillonnage, nous avons voulu superposer les deux grilles pour obtenir une grille finale qui nous donne un portrait globale de la contamination. "&gt;After interpolation of the two categories that represent the same sampling point, we wanted to overlay the two grids to get a final grid that gives us an overall picture of the contamination.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN title="Pour cela nous avons effectué une classification des valeurs des pixels, selon trois classes, basée sur les limites de classes déterminés par les statistiques obtenus pour les sols de la classe BC et C+ et C+RESC."&gt;For this, we performed a classification of pixel values, according to three classes, based on the class limits determined by the statistics obtained for the soils of the BC class and C + and C + RESC. &lt;/SPAN&gt;&lt;SPAN title="En effectuant la superposition des deux couches rasters, nous aimerions que les valeurs des pixels de la couches BC et C+ et C+RESC remplissent les critères que nous avons déterminés"&gt;By performing the overlaid of two raster layers, we would like to have the pixel values ​​of the BC layers and C + and C + RESC that fulfill the criteria we determined. The result of the Con is depected by the last image.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN title="En effectuant la superposition des deux couches rasters, nous aimerions que les valeurs des pixels de la couches BC et C+ et C+RESC remplissent les critères que nous avons déterminés"&gt;See attachment&amp;nbsp; below.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN title="En effectuant la superposition des deux couches rasters, nous aimerions que les valeurs des pixels de la couches BC et C+ et C+RESC remplissent les critères que nous avons déterminés"&gt;Regards&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN title="Pour cela nous avons effectué une classification des valeurs des pixels, selon trois classes, basée sur les limites de classes déterminés par les statistiques obtenus pour les sols de la classe BC et C+ et C+RESC."&gt;&lt;IMG alt="Grid_BC.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/67558_Grid_BC.png" style="width: 620px; height: 332px;" /&gt;&lt;IMG alt="Grid_C+C+RESC.png" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/67559_Grid_C+C+RESC.png" style="width: 620px; height: 353px;" /&gt;&lt;IMG alt="Overlaid BC and C+RESC.png" class="image-3 jive-image" src="/legacyfs/online/67560_Overlaid BC and C+RESC.png" style="width: 620px; height: 327px;" /&gt;on &lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 06:19:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250557#M3567</guid>
      <dc:creator>TahirTamba1</dc:creator>
      <dc:date>2015-03-02T06:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250558#M3568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank for your answer. I've tried the Con argument you pointed me out based on the criterion we determined to overlay the two raster grid we generaeted. &lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;Curiously&lt;/SPAN&gt;&lt;SPAN&gt;, I get the&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;same result as&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;a simple&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;addition operation&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;between the two layers&lt;/SPAN&gt;. &lt;SPAN class="hps"&gt;View&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the files attached&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;to the answer of&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;Darren post&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I'm wondering if our reasoning does make sense?&lt;SPAN lang="en"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank again for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 06:32:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250558#M3568</guid>
      <dc:creator>TahirTamba1</dc:creator>
      <dc:date>2015-03-02T06:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250559#M3569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Could you please try this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Con(("inRastA" &amp;lt;= 43) &amp;amp; ("inRastB" &amp;gt;= 42) &amp;amp;(("inRastA" + "inRastB") &amp;lt;=85),86, ( "inRastA" + "inRastB"))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 07:19:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250559#M3569</guid>
      <dc:creator>KishorGhatage</dc:creator>
      <dc:date>2015-03-02T07:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250560#M3570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI&gt;=IF(And(A1&amp;lt;=43; B1&amp;gt;=42; O1&amp;lt;=85);86;O1+B1)&lt;/LI&gt;&lt;LI&gt;If (inRastA &amp;lt;= 43) (condition 1) and (inRastB&amp;gt; = 42) (condition2) and (inRastA+inRastB &amp;lt;= 85) (condition3), then the result is (ouRast = 86), otherwise (inRastA+inRastB).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are&amp;nbsp; 2 conditions in the first&lt;/P&gt;&lt;P&gt;There are&amp;nbsp; 3 conditions in the second&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you confirm the logic&lt;/P&gt;&lt;P&gt;Using the IF statement as the one that worked:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;True =&amp;nbsp;&amp;nbsp; if A1&amp;lt;=43 AND B1 &amp;gt;42 and O1 (A1+B1 &amp;lt;=85)&amp;nbsp;&amp;nbsp;&amp;nbsp; then 86&lt;/P&gt;&lt;P&gt;False =&amp;nbsp; else&amp;nbsp; A1 + B1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the first checks should be&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; con 1&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; con 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , True_1&amp;amp;2, False_2,&amp;nbsp;&amp;nbsp;&amp;nbsp; False_1&lt;/P&gt;&lt;P&gt;&amp;nbsp; (A1+B1 &amp;lt; = 85),&amp;nbsp; [ (A1&amp;lt;=43 and B1&amp;gt;=42),&amp;nbsp;&amp;nbsp;&amp;nbsp; True,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; False],&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; False)&lt;/P&gt;&lt;P&gt;&amp;nbsp; (A1+B1 &amp;lt; = 85),&amp;nbsp; [ (A1&amp;lt;=43 and B1&amp;gt;=42),&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 86,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; A1+B1],&amp;nbsp;&amp;nbsp; A1+B1)&lt;/P&gt;&lt;P&gt;&amp;nbsp; (test 1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; True1&amp;nbsp; [ (test 2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (True 1 and True 2),&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 86&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; True 1, False 2)&amp;nbsp;&amp;nbsp;&amp;nbsp; A1 + B1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; False 1&amp;nbsp;&amp;nbsp;&amp;nbsp; A1 + B1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 10:11:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250560#M3570</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-03-02T10:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250561#M3571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;Sorry to mislead you. The first condition is what my colleague has done in Excel using the non kriged data. She just wanted to provide the syntax of a conditional request to Excel as an example. I was afraid that it induces the readers into error, but she insisted ...&lt;/P&gt;&lt;P&gt; But in reality, it is probably the second case we would like to evaluate the three conditions from two rasters provided, in my previous post&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 14:35:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250561#M3571</guid>
      <dc:creator>TahirTamba1</dc:creator>
      <dc:date>2015-03-02T14:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250562#M3572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank for the example you provide. I'll will try it soon and I'll get back to you soon...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ReRegards!&lt;/P&gt;&lt;P&gt;Tahir Tamba&lt;/P&gt;&lt;P&gt;6632, Avenue de Gaspé&lt;/P&gt;&lt;P&gt;Montréal, H2S 2Y2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 15:02:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250562#M3572</guid>
      <dc:creator>TahirTamba1</dc:creator>
      <dc:date>2015-03-02T15:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250563#M3573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN-CA" style="font-size: 12.0pt; font-family: Arial;"&gt;Hi, if I understand well, you are trying to adjust the superposition raster pixel values in order to show up the contamination for the cases you have contamination in one of two grids but when you do the sum of their contamination limit intervals values, it disappears. I guess, if you fix 85 (42+43) as a limit for a contamination class of the superposition grid, and you have values greater than 42 (image 2) and less than 43 (image 1), your superposition grid (image 3) will not show the contamination represented by the values greater than 42 of image 2 and the values less than 43 of image 1 because their sum is less than 85 (for example 45+30=75). I think your conditions are good, I don’t know why it doesn’t work. &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 20:35:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250563#M3573</guid>
      <dc:creator>EtiOst</dc:creator>
      <dc:date>2015-03-02T20:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250564#M3574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;Sorry not being able to give you a feedback regarding Con statement we were trying to achieve for better overlaying the two input raster grids I sent in my previous posts. &lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;My boss put me&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;in a rush&lt;/SPAN&gt; for &lt;SPAN class="hps"&gt;an urgent project&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;that&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;we have to deliver&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;this week&lt;/SPAN&gt;. &lt;SPAN class="hps"&gt;This is why&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;I have not&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;had a chance to&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;get back to you&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;about my&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;request.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;BR /&gt;&lt;SPAN class="hps"&gt;I finally&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;tested&lt;/SPAN&gt; your "Con" statement &lt;SPAN class="hps"&gt;and the result&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;seems to match&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;what&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;we expected.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="hps"&gt;Thank you&lt;/SPAN&gt; Kishore for&lt;SPAN class="hps"&gt; your&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;help.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;Thank also all of you for pointing me out&amp;nbsp; the syntax for Con statement. I really appreciated!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;Best regards.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 14:20:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250564#M3574</guid>
      <dc:creator>TahirTamba1</dc:creator>
      <dc:date>2015-03-19T14:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Con statement with raster calculator</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250565#M3575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;What we want to achieve is to overlay two raster grids with using 3 conditions mentioned in the second stament you pointed out. Looking to your first check statement logic, I think this logic summerize the Con statement that Kishore suggest.&lt;/P&gt;&lt;P&gt;But can't figure out how to achieve this using Spatial Analyst Con staement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 14:39:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/con-statement-with-raster-calculator/m-p/250565#M3575</guid>
      <dc:creator>TahirTamba1</dc:creator>
      <dc:date>2015-03-19T14:39:36Z</dc:date>
    </item>
  </channel>
</rss>

