<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Biospherica &#187; Drought</title>
	<atom:link href="http://joewheatley.net/tag/drought/feed/" rel="self" type="application/rss+xml" />
	<link>http://joewheatley.net</link>
	<description>Earth Vegetation</description>
	<lastBuildDate>Wed, 25 Apr 2012 12:58:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Large-scale vegetation-rainfall correlations in Africa</title>
		<link>http://joewheatley.net/response-of-african-vegetation-to-drought/</link>
		<comments>http://joewheatley.net/response-of-african-vegetation-to-drought/#comments</comments>
		<pubDate>Wed, 12 May 2010 16:35:59 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Climate]]></category>
		<category><![CDATA[ecosystem model]]></category>
		<category><![CDATA[Africa]]></category>
		<category><![CDATA[Drought]]></category>
		<category><![CDATA[NDVI]]></category>

		<guid isPermaLink="false">http://joewheatley.net/?p=2012</guid>
		<description><![CDATA[Weather and climatic variability affect vegetation on continental scales. Intuitively, healthy vegetation is greener. A quantitative index of &#8220;greenness&#8221; called Normalised Difference Vegetation Index (NDVI) was developed by NASA.  The index takes values between 0 and 1. NDVI is related to the fraction of photosynthetically active radiation absorbed by the vegetation canopy. It is a [...]]]></description>
			<content:encoded><![CDATA[<p>Weather and climatic variability affect vegetation on continental scales. Intuitively, healthy vegetation is greener. A quantitative index of &#8220;greenness&#8221; called <em>Normalised Difference Vegetation Index</em> (<strong><a href="http://www.nasa.gov/topics/earth/features/obscure_data.html">NDVI</a></strong>) was developed by NASA.  The index takes values between 0 and 1. NDVI is related to the fraction of photosynthetically active radiation absorbed by the vegetation canopy. It is a powerful tool in vegetation monitoring.</p>
<p>Quantifying the relationship between weather and vegetation on a regional scale is a statistical problem which requires long time-series of NDVI. <strong><a href="http://glcf.umd.edu/data/gimms/" target="_blank">GIMMS</a></strong> is a  25 year (1981-2006) NDVI dataset based on inputs from a sequence of NOAA weather satellites carrying <strong><a href="http://noaasis.noaa.gov/NOAASIS/ml/avhrr.html">AVHRR</a></strong> radiometers. The GIMMS team removed satellite drift, calibration  effects <em>etc.</em>[1] Of course NDVI has a complex spatial variation which is related to variations in  vegetation cover type, not to weather variations. To isolate the impact of weather variations, it makes sense to &#8220;standardize&#8221; NDVI. <em>Vegetation Condition Index</em> (VCI) is:</p>
<p style="text-align: center;"><img src='http://s.wordpress.com/latex.php?latex=VCI%3D%5Cfrac%7BNDVI%20%5C%3B%20%5C%3A-%5C%3B%20%5C%3ANDVI_%7Bmin%7D%7D%7BNDVI_%7Bmax%7D-NDVI_%7Bmin%7D%7D&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='VCI=\frac{NDVI \; \:-\; \:NDVI_{min}}{NDVI_{max}-NDVI_{min}}' title='VCI=\frac{NDVI \; \:-\; \:NDVI_{min}}{NDVI_{max}-NDVI_{min}}' class='latex' /></p>
<p>For example, NDVI<sub>min</sub> might refer to the minimum local May NDVI value observed during 1981-2006. A tropical rainforest and a semi-arid region have very different NDVI, but both may have VCI close to  1 during a favourable period.</p>
<p>The maps below show the correlation between VCI and 3-month <a href="http://joewheatley.net/visualizing-drought/" target="_blank">Standardized Precipitation Index</a> (SPI3) computed for Africa by calendar month. GIMMS 8km NDVI was upscaled to 200km to match the scale of gridded monthly climate datasets for precipitation (<a href="http://lwf.ncdc.noaa.gov/oa/wmo/wdcamet-ncdc.html">GPCP</a>).[2] The red areas correspond to areas of high correlation between VCI and SPI3. Vegetation in these areas responsive to rainfall variations on a 3-month timescale. A striking feature  is the line high correlation in the Sahel   region. Vegetation in the Sahel is highly sensitive to drought. Southern Africa is also highly rainfall sensitive during Dec-May. It is impressive that the combination of datasets of very different origins (GPCP and GIMMS) produces spatially and temporally consistent information.</p>
<h2 style="text-align: center;">Sensitivity of Vegetation to Precipitation 1981-2006</h2>
<p><a href="http://joewheatley.net/wp-content/uploads/2010/05/AF_VCI_SPI3Hyrbid_correl1.png"><img class="aligncenter size-large wp-image-2230" title="AF_VCI_SPI3Hyrbid_correl" src="http://joewheatley.net/wp-content/uploads/2010/05/AF_VCI_SPI3Hyrbid_correl1-1024x754.png" alt="AF_VCI_SPI3Hyrbid_correl" width="1024" height="754" /></a></p>
<h3>R code snippets</h3>
<p>Most of the effort is in pre-processing the climate and NDVI data so that they share the same projection, grid, time coordinate etc. GDAL and the interp() function from the akima package were used for this purpose. Eventually we end up with SPI3 and VCI data represented by N × T matrices where N = Nx ×Ny is the dimension of the spatial maps and T is the number of observations. From there,  SPI3 and VCI maps were organized by calendar month,</p>
<p><code>vci.m   &lt;- lapply(seq(1:12),function(m) vci[,seq(from=m, to=T, by=12)])<br />
spi3.m &lt;- lapply(seq(1:12), function(m) spi3[,seq(from=m, to=T, by=12)])</code></p>
<p>Correlation maps between VCI and SPI3  for each calendar month are obtained from,</p>
<p><code>corr.maps &lt;- lapply(seq(1:12),function(m) sapply(seq(1:N), function(i) cor( vci.m[[m]][i,],spi3.m[[m]][i,]) ))</code></p>
<p>Finally the above map table was produced using spplot() from the sp package with overlays from the maps package.</p>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: left;">[1] <span style="color: #888888;"> Tucker, C.J., J.E. Pinzon, and M.E. Brown (2004),  Global Inventory Modeling and Mapping Studies, NA94apr15b.n11-VIg, 2.0,  Global  Land Cover Facility, University of Maryland, College Park, Maryland,  04/15/1994.</span></p>
<p style="text-align: left;">[2]<span style="color: #888888;"> SG: Adler, R.F., G.J. Huffman, A. Chang, R.  Ferraro, P. Xie,     J. Janowiak, B. Rudolf, U. Schneider, S. Curtis, D. Bolvin, A.  Gruber, J. Susskind, P.     Arkin, 2003: The Version 2 Global Precipitation Climatology Project  (GPCP) Monthly     Precipitation Analysis (1979-Present). J. Hydrometeor., 4,1147-1167. </span></p>
]]></content:encoded>
			<wfw:commentRss>http://joewheatley.net/response-of-african-vegetation-to-drought/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.329 seconds -->

