<?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: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator? in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32454#M421</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What data type are the bands?&amp;nbsp; If you have byte or unsigned integer data, you might be getting integer overflows as you're applying the float conversion after the operations. As an example - say you have unsigned 16bit integers, band 4 = 500 and band 43 = 750.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Float(500 - 750) will return 65286 but Float(500) - 750 will return -250.0.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Try:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
2.5 * ((Float("%Band 4%") - "%Band 3%")) / (Float("%Band 4%") + 6 * "%Band 3%" - 7.5 *"%Band 1%" + 1))
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 21:17:05 GMT</pubDate>
    <dc:creator>Luke_Pinner</dc:creator>
    <dc:date>2021-12-10T21:17:05Z</dc:date>
    <item>
      <title>Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32453#M420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to derive Enhanced Vegetation Index (EVI) from Landsat 5 TM data using the raster calculator and I can't seem to get the output I want. Here is a link to the description and formula for EVI: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://en.wikipedia.org/wiki/Enhanced_vegetation_index"&gt;http://en.wikipedia.org/wiki/Enhanced_vegetation_index&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The output should be a raster with values ranging from -1 to 1, but I get values from like 30-40 which is incorrect. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Right now my formula looks like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2.5 * (Float("%Band 4%" - "%Band 3%") / Float("%Band 4%" + 6 * "%Band 3%" - 7.5 *"%Band 1%" + 1))&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone see something in here that doesn't make sense-- or even better--a formula I could copy/paste?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2013 23:08:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32453#M420</guid>
      <dc:creator>StephenChignell</dc:creator>
      <dc:date>2013-02-27T23:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32454#M421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What data type are the bands?&amp;nbsp; If you have byte or unsigned integer data, you might be getting integer overflows as you're applying the float conversion after the operations. As an example - say you have unsigned 16bit integers, band 4 = 500 and band 43 = 750.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Float(500 - 750) will return 65286 but Float(500) - 750 will return -250.0.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Try:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
2.5 * ((Float("%Band 4%") - "%Band 3%")) / (Float("%Band 4%") + 6 * "%Band 3%" - 7.5 *"%Band 1%" + 1))
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:17:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32454#M421</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2021-12-10T21:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32455#M422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;I'm trying to derive Enhanced Vegetation Index (EVI) from Landsat 5 TM data using the raster calculator and I can't seem to get the output I want. Here is a link to the description and formula for EVI: &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://en.wikipedia.org/wiki/Enhanced_vegetation_index"&gt;http://en.wikipedia.org/wiki/Enhanced_vegetation_index&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The output should be a raster with values ranging from -1 to 1, but I get values from like 30-40 which is incorrect. &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The coefficients you are using are hard-coded for MODIS data sets (as stated in the wikipedia article). Additionally, the values required are not raw Landsat dataset DN values (0-255) but instead must be atmospherically-corrected reflectance values.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's a journal article that discusses the processing involved.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://southwestnwrsnatresources.files.wordpress.com/2011/12/sesnie-et-al-2011.pdf"&gt;http://southwestnwrsnatresources.files.wordpress.com/2011/12/sesnie-et-al-2011.pdf&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Feb 2013 03:28:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32455#M422</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2013-02-28T03:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32456#M423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The coefficients you are using are hard-coded for MODIS data sets (as stated in the wikipedia article). Additionally, the values required are not raw Landsat dataset DN values (0-255) but instead must be atmospherically-corrected reflectance values.&lt;BR /&gt;&lt;BR /&gt;Here's a journal article that discusses the processing involved.&lt;BR /&gt;&lt;A href="http://southwestnwrsnatresources.files.wordpress.com/2011/12/sesnie-et-al-2011.pdf"&gt;http://southwestnwrsnatresources.files.wordpress.com/2011/12/sesnie-et-al-2011.pdf&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Curt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the advice--I do plan on using atmospherically corrected imagery in my eventual run--I forgot to mention that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks too for the article, it was very informative. However, do you know if EVI correction factors have been developed for TM data? I can't seem to find anything that suggests anyone has derived EVI from Landsat. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Mar 2013 22:21:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32456#M423</guid>
      <dc:creator>StephenChignell</dc:creator>
      <dc:date>2013-03-06T22:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32457#M424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;What data type are the bands?&amp;nbsp; If you have byte or unsigned integer data, you might be getting integer overflows as you're applying the float conversion after the operations. As an example - say you have unsigned 16bit integers, band 4 = 500 and band 43 = 750.&lt;BR /&gt;Float(500 - 750) will return 65286 but Float(500) - 750 will return -250.0.&lt;BR /&gt;&lt;BR /&gt;Try:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
2.5 * ((Float("%Band 4%") - "%Band 3%")) / (Float("%Band 4%") + 6 * "%Band 3%" - 7.5 *"%Band 1%" + 1))
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Luke,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll give this code a try once (if) I've resolved the issues with my actual correction coefficients...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:17:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32457#M424</guid>
      <dc:creator>StephenChignell</dc:creator>
      <dc:date>2021-12-10T21:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32458#M425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;What data type are the bands?&amp;nbsp; If you have byte or unsigned integer data, you might be getting integer overflows as you're applying the float conversion after the operations. As an example - say you have unsigned 16bit integers, band 4 = 500 and band 43 = 750.&lt;BR /&gt;Float(500 - 750) will return 65286 but Float(500) - 750 will return -250.0.&lt;BR /&gt;&lt;BR /&gt;Try:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
2.5 * ((Float("%Band 4%") - "%Band 3%")) / (Float("%Band 4%") + 6 * "%Band 3%" - 7.5 *"%Band 1%" + 1))
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi lpinner,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am having a similar problem in creating the formula for EVI using MODIS bands. No matter which way I enter it (with the float conversion in various positions), I still get an index from -10405 to 9610. All of the bands I am using are 32-bit unsigned integers. Any tips on how to enter the EVI equation using these MODIS bands? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks very much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:17:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32458#M425</guid>
      <dc:creator>MeganMcSherry</dc:creator>
      <dc:date>2021-12-10T21:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32459#M426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What MODIS product are you using?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 23:07:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32459#M426</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2013-08-08T23:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32460#M427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I strongly suggest extracting some pixel values and doing the calculation by hand before doing battle with arcpy on this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 23:08:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32460#M427</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2013-08-08T23:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32461#M428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;What MODIS product are you using?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am using MYD09A1 images.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2013 23:17:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32461#M428</guid>
      <dc:creator>MeganMcSherry</dc:creator>
      <dc:date>2013-08-08T23:17:57Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32462#M429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Are you applying the MYD09A1 &lt;/SPAN&gt;&lt;A href="https://lpdaac.usgs.gov/dataset_discovery/modis/modis_products_table/myd09a1"&gt;scale factor of 0.0001&lt;/A&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;2.5 * (("%Band 4%" * 0.0001 - "%Band 3%" * 0.0001)) / (("%Band 4%" * 0.0001) + 6 * ("%Band 3%" * 0.0001) - 7.5 * ("%Band 1%" * 0.0001) + 1))&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Aug 2013 01:10:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32462#M429</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2013-08-09T01:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32463#M430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Are you applying the MYD09A1 &lt;A href="https://lpdaac.usgs.gov/products/modis_products_table/myd09a1"&gt;scale factor of 0.0001&lt;/A&gt;?&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;2.5 * (("%Band 4%" * 0.0001 - "%Band 3%" * 0.0001)) / (("%Band 4%" * 0.0001) + 6 * ("%Band 3%" * 0.0001) - 7.5 * ("%Band 1%" * 0.0001) + 1))&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;No I hadn't been...the numbers make so much more sense now! Thank you for bringing that to my attention, I'm still learning. Much appreciated.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Aug 2013 17:21:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32463#M430</guid>
      <dc:creator>MeganMcSherry</dc:creator>
      <dc:date>2013-08-12T17:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32464#M431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, I tired to do it, but unfortunately, I have got&amp;nbsp; map has the same color. just one color?????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 17:38:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32464#M431</guid>
      <dc:creator>ahmedzaeen1</dc:creator>
      <dc:date>2016-03-23T17:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32465#M432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you tell me what is the purpose of this scale factor? Ive calculated NDVI from Landsat TM and never applied this scale factor. Ive always got the correct values nevertheless. Thats why Im a bit confused why to use this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 09:28:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32465#M432</guid>
      <dc:creator>SalmanAhmed3</dc:creator>
      <dc:date>2017-07-26T09:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32466#M433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The EVI formula only works with reflectance (from 0 - 1) because of the coefficients in the formula -&amp;nbsp;&lt;SPAN style="color: #222222; background-color: #ffffff; font-size: 14px;"&gt; L=1, C1 = 6, C2 = 7.5, and G (gain factor) = 2.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NDVI has no such coefficients, so you can calculate it&amp;nbsp;regardless of&amp;nbsp;whether your data is scaled or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that that scale factor I referred to is specifically for the MODIS&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;MYD09A1 &lt;SPAN&gt;surface reflectance&amp;nbsp;&lt;/SPAN&gt;product. &amp;nbsp;&lt;/SPAN&gt;MODIS&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;MYD09A1 surface reflectance values are multiplied by 1000 and then stored as 16-bit integer data to reduce file size/storage space. &amp;nbsp;The scale factor converts the 16 bit values to&amp;nbsp;&lt;SPAN&gt;floating point values from 0.0 - 1.0&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;If you want Landsat EVI, you can just download it these days. If you want to calculate it yourself, you need to use reflectance data (not DN) which you can either download (the surface reflectance product) or calculate it yourself (either simple top of atmosphere reflectance &amp;nbsp;or atmospheric correction to surface reflectance).&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jul 2017 01:39:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32466#M433</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2017-07-27T01:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Formula for Enhanced Vegetation Index (EVI) in Raster Calculator?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32467#M434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, could you calculate the EVI values? I'm facing the same issue. Even after ToA correction,the values are not between -1 to +1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 14:31:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/formula-for-enhanced-vegetation-index-evi-in/m-p/32467#M434</guid>
      <dc:creator>RushatiDey</dc:creator>
      <dc:date>2020-09-17T14:31:19Z</dc:date>
    </item>
  </channel>
</rss>

