<?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 Max() in ArcGIS 10 in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/max-in-arcgis-10/m-p/620617#M9032</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've seen some of the other threads about this, and I'm aware that the Max() statement has been stripped from the Raster Calculator as of ArcGIS 10. This was extremely handy for running quick Maximization routines and the reason why functionality like this would be stripped rather than left in eludes me....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Leaving that aside, I have some RC code I was using in Arc 9.3 with Max() statements embedded within Con()s. I'd love to hear any creative ideas of how I might be able to get this to work in Arc 10, because I can't see how using Cell Statistics or Raster Properties GUI tools can be a solution here. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code basically looks through a pile of ~23 rasters, and assigns an index value ranging from 1 to 23 depending on which of these rasters contained the maximum value. My plan is to try and replace specific terms to make the syntax work with Python but any other ideas would be hugely helpful. Thanks! Sample code below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) &amp;lt; -9997,-9999, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [CottonLB] ,1, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [FodderLB] ,2, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [FruitsLB] ,3, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [GroundnutLB] ,4, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [JatrophaLB] ,5, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [MaizeLB] ,6, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [MilletLB] ,7, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [MiscanthusLB] ,8, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [NarcostimulantsLB] ,9, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [OilpalmLB] ,1LB, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [PulsesLB] ,11, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [RapeseedLB] ,12, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [RiceLB] ,13, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [RootsLB] ,14, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SorghumLB] ,15, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SoybeanLB] ,16, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SugarbeetLB] ,17, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SugarcaneLB] ,18, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SunflowerLB] ,19, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SwitchgrassLB] ,2LB, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [TubersLB] ,21, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [VegetablesLB] ,22, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [WheatLB] ,23))))))))))))))))))))))))&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Jul 2013 14:11:25 GMT</pubDate>
    <dc:creator>JeremyProville</dc:creator>
    <dc:date>2013-07-30T14:11:25Z</dc:date>
    <item>
      <title>Max() in ArcGIS 10</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/max-in-arcgis-10/m-p/620617#M9032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've seen some of the other threads about this, and I'm aware that the Max() statement has been stripped from the Raster Calculator as of ArcGIS 10. This was extremely handy for running quick Maximization routines and the reason why functionality like this would be stripped rather than left in eludes me....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Leaving that aside, I have some RC code I was using in Arc 9.3 with Max() statements embedded within Con()s. I'd love to hear any creative ideas of how I might be able to get this to work in Arc 10, because I can't see how using Cell Statistics or Raster Properties GUI tools can be a solution here. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code basically looks through a pile of ~23 rasters, and assigns an index value ranging from 1 to 23 depending on which of these rasters contained the maximum value. My plan is to try and replace specific terms to make the syntax work with Python but any other ideas would be hugely helpful. Thanks! Sample code below:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) &amp;lt; -9997,-9999, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [CottonLB] ,1, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [FodderLB] ,2, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [FruitsLB] ,3, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [GroundnutLB] ,4, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [JatrophaLB] ,5, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [MaizeLB] ,6, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [MilletLB] ,7, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [MiscanthusLB] ,8, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [NarcostimulantsLB] ,9, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [OilpalmLB] ,1LB, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [PulsesLB] ,11, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [RapeseedLB] ,12, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [RiceLB] ,13, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [RootsLB] ,14, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SorghumLB] ,15, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SoybeanLB] ,16, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SugarbeetLB] ,17, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SugarcaneLB] ,18, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SunflowerLB] ,19, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [SwitchgrassLB] ,2LB, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [TubersLB] ,21, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [VegetablesLB] ,22, Con(max([CottonLB],[FodderLB],[FruitsLB],[GroundnutLB],[JatrophaLB],[MaizeLB],[MilletLB],[MiscanthusLB],[NarcostimulantsLB],[OilpalmLB],[PulsesLB],[RapeseedLB],[RiceLB],[RootsLB],[SorghumLB],[SoybeanLB],[SugarbeetLB],[SugarcaneLB],[SunflowerLB],[SwitchgrassLB],[TubersLB],[VegetablesLB],[WheatLB]) == [WheatLB] ,23))))))))))))))))))))))))&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jul 2013 14:11:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/max-in-arcgis-10/m-p/620617#M9032</guid>
      <dc:creator>JeremyProville</dc:creator>
      <dc:date>2013-07-30T14:11:25Z</dc:date>
    </item>
  </channel>
</rss>

