<?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; Uncategorized</title>
	<atom:link href="http://joewheatley.net/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://joewheatley.net</link>
	<description>Earth Vegetation</description>
	<lastBuildDate>Thu, 29 Jul 2010 15:16:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Survey</title>
		<link>http://joewheatley.net/survey/</link>
		<comments>http://joewheatley.net/survey/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 16:37:22 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://joewheatley.net/?p=2315</guid>
		<description><![CDATA[If you are a professional with interest in weather/climate impacts in agriculture Biospherica would like to hear your views.
Please click here to take the online survey.
It takes about 6 minutes. All questions are optional.
Thanks!
]]></description>
			<content:encoded><![CDATA[<p>If you are a professional with interest in weather/climate impacts in agriculture <em>Biospherica</em> would like to hear your views.</p>
<p>Please click <strong><a href="https://www.surveymonkey.com/s/89LYFV6">here</a> </strong>to take the online survey.</p>
<p>It takes about 6 minutes. All questions are optional.</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://joewheatley.net/survey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visualizing Drought</title>
		<link>http://joewheatley.net/visualizing-drought/</link>
		<comments>http://joewheatley.net/visualizing-drought/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 15:24:43 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[time-series]]></category>
		<category><![CDATA[water stress]]></category>

		<guid isPermaLink="false">http://joewheatley.net/?p=1877</guid>
		<description><![CDATA[The impacts of drought depend on time-scale. On short time-scales, drought means dry soil. On long time-scales, it means dry rivers and empty reservoirs. A region may simultaneously experience dry conditions on one time-scale and wet conditions on another e.g. wet soil but low streamflow or visa versa.
Standardized Precipitation Index (SPI) is a widely used [...]]]></description>
			<content:encoded><![CDATA[<p>The impacts of drought depend on time-scale. On short time-scales, drought means dry soil. On long time-scales, it means dry rivers and empty reservoirs. A region may simultaneously experience dry conditions on one time-scale and wet conditions on another e.g. wet soil but low streamflow or visa versa.</p>
<p><strong><a href="http://iridl.ldeo.columbia.edu/maproom/.Global/.Precipitation/SPI.html" target="_blank">Standardized Precipitation Index</a></strong> (SPI) is a widely used measure of drought which can be defined for any time-scale of interest. For any location, SPI is normally distributed with zero mean and unit standard deviation. Index values &gt; 2 indicate exceptionally wet conditions for that location, values &lt; -2 indicate exceptionally dry conditions for that location, etc. Historical precipitation is the only input needed to compute SPI.</p>
<p>Australia experienced drought between 2002 and 2007. The image below shows SPI computed for a location in the drought-prone Murray-Darling basin of New South Wales. The time-series run from Jan 1948 to Jan 2010 and the index was calculated for time-scales from 1 to 12 months. Precipitation data is from <strong><a href="http://www.esrl.noaa.gov/psd/data/gridded/data.ncep.reanalysis.derived.surfaceflux.html" target="_blank">NCEP Reanalysis</a></strong> [1] in a 1.875° × 1.875° grid cell centred at 30°S 145°E.</p>
<p style="text-align: center;">
<p style="text-align: left;">
<p style="text-align: center;"><a href="http://joewheatley.net/wp-content/uploads/2010/03/SPI.png"><img class="aligncenter size-large wp-image-1888" title="SPI" src="http://joewheatley.net/wp-content/uploads/2010/03/SPI-1024x320.png" alt="SPI" width="1024" height="320" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">The drought of 2002 to 2007 shows up very clearly. It was preceeded by a wet period between 2005 and 2001. While 2009 showed an episode of severe drought at short time-scales, SPI at was normal/wet at longer time-scales during 2009. Agricultural yields recovered.</p>
<h2 style="text-align: left;">Calculating SPI-<em>M</em></h2>
<p style="text-align: left;">
<p style="text-align: left;">
<p>Empirical rainfall probability distributions are far from normal (gaussian) and often approximate a shifted gamma distribution. The empirical cumulative probability distributions are used to transform the rainfall time-series into time-series of percentile probabilities. A normally distributed precipitation index is found by pretending that these percentile probabilities derive from a standard cumulative normal distribution and inverting to find the index values.</p>
<p>This is simple in <em>R</em>. If the vector <em>data </em>contains rainfall infall data, then:</p>
<p><code>fit.cdf &lt;- ecdf(data)<br />
cdfs &lt;- sapply(data,fit.cdf)<br />
SPI &lt;- qnorm(cdfs)<br />
</code></p>
<p>Tha rainfall data are M-month moving averages (current and previous months). A separate index is calculated for each calendar month to remove seasonality. The R code used to compute SPI values (based in NCEP Reanalysis or other data sets such as <strong><a href="http://www.gewex.org/gpcp.html" target="_blank">GCPC</a></strong>) is <a href="http://joewheatley.net/wp-content/uploads/2010/03/SPI.txt" target="_blank"><strong>here</strong></a>.</p>
<p>[1] The NCEP/NCAR 40-year reanalysis project, Bull. Amer. Meteor. Soc., 77,  437-470, 1996</p>
]]></content:encoded>
			<wfw:commentRss>http://joewheatley.net/visualizing-drought/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ensemble Prediction</title>
		<link>http://joewheatley.net/ensemble-prediction/</link>
		<comments>http://joewheatley.net/ensemble-prediction/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:33:23 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[weather forecast]]></category>

		<guid isPermaLink="false">http://joewheatley.net/?p=1770</guid>
		<description><![CDATA[Weather is unpredictable. Small differences in initial conditions can develop into big differences in the pattern of circulation, in the timing and location of cyclones, rainfall etc. This is true no matter how good the initial observing system is.
The approach taken by organisations such as ECMWF or NCEP is to re-run numerical forecast models with [...]]]></description>
			<content:encoded><![CDATA[<p>Weather is unpredictable. Small differences in initial conditions can develop into big differences in the pattern of circulation, in the timing and location of cyclones, rainfall etc. This is true no matter how good the initial observing system is.</p>
<p>The approach taken by organisations such as ECMWF or NCEP is to re-run numerical forecast models with a range of carefully chosen initial conditions. The collection of runs is called the <em>ensemble</em>. Ensemble prediction systems (EPS) give <em>probabilistic forecasts</em> for variables such as rainfall, temperature etc. Current operational EPS have 20 (GFS)  or 51 (ECMWF) ensemble members from which the probability distributions are derived. ECMWF give an overview of their system<strong> <a href="http://www.ecmwf.int/about/information_leaflets/EPS.pdf" target="_blank">here</a></strong>. The probability distributions capture part of the intrinsic uncertainty in weather or climate.</p>
<p>The graph below shows histograms of 20 ensemble member temperatures near some major cities. The data were extracted from NCEP <strong><a href="http://www.nco.ncep.noaa.gov/pmb/products/gens/" target="_blank">GENS</a> </strong>16-day 2m temperature forecast produced at 00UTC 2 Feb 2010 (i.e GFS forecasts for 18 Feb).</p>
<p style="text-align: center;"><a href="http://joewheatley.net/wp-content/uploads/2010/02/ensembleHistograms2.png"><img class="size-large wp-image-1799 aligncenter" title="ensembleHistograms2" src="http://joewheatley.net/wp-content/uploads/2010/02/ensembleHistograms2-1024x985.png" alt="ensembleHistograms2" width="528" height="508" /></a></p>
<p>The maps below show some corresponding ensemble statistics for the entire globe (1° resolution, equal area cylindrical projection).</p>
<p style="text-align: center;"><a href="http://joewheatley.net/wp-content/uploads/2010/02/ensembleStats.png"><img class="size-large wp-image-1793 aligncenter" title="ensembleStats" src="http://joewheatley.net/wp-content/uploads/2010/02/ensembleStats-1024x619.png" alt="ensembleStats" width="1024" height="619" /></a></p>
<p style="text-align: left;">The upper map indicates that forecast uncertainty (standard error) is high between 40° and 60° in both hemispheres (related to the chaotic behaviour of  jet streams.) Currently, 16 day temperatures north of Lake Baikal in Siberia are very uncertain, for example. The contours indicate ensemble median temperatures.</p>
<p style="text-align: left;">Skewness in ensemble temperatures is shown in the lower map. For example, large negative skewness is found in north central US, eastern mediterranean, and Paraguay/Mato Grosso. This suggests tail risk of low temperatures relative to ensemble mean in these areas.</p>
<p style="text-align: left;">
<p style="text-align: left;">
<p style="text-align: center;">
<p>EPS is the future of weather and climate forecasting. These systems produce huge amounts of data. Building useful applications of EPS is both a challenge and an opportunity.</p>
<p>For anyone interested, the <em><strong>R</strong></em> code used to produce these graphs is given <strong><a href="http://joewheatley.net/wp-content/uploads/2010/02/ensemble.R" target="_blank">here</a></strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://joewheatley.net/ensemble-prediction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NCEP Global Forecast System</title>
		<link>http://joewheatley.net/ncep-global-forecast-system/</link>
		<comments>http://joewheatley.net/ncep-global-forecast-system/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 11:14:32 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Climate]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GFS]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[weather forecast]]></category>

		<guid isPermaLink="false">http://joewheatley.net/?p=1192</guid>
		<description><![CDATA[Just about everyone is familiar with weather maps. There are many situations where it is useful to combine the underlying numerical weather data with other types of information. Accessing  the weather data is a necessary first step.
The output from the U.S. National Centers for Environmental Prediction (NCEP) Global  Forecast System (GFS) is freely available. The [...]]]></description>
			<content:encoded><![CDATA[<p>Just about everyone is familiar with weather maps. There are many situations where it is useful to combine the underlying numerical weather data with other types of information. Accessing  the weather data is a necessary first step.</p>
<p>The output from the U.S. National Centers for Environmental Prediction (<strong><a href="http://www.nco.ncep.noaa.gov/" target="_blank">NCEP</a></strong>) Global  Forecast System (GFS) is freely available. The surface resolution of the model is ≈ 0.3º× 0.3°. The model runs every 6 hours, producing forecasts at 3-hourly intervals extending out to 16 days. As an example of output from GFS, the map (below) shows the predicted average  temperature at 2 metres over the entire globe for the next 24 hr (date of this post). The map shows predicted cold conditions in Europe, and the continuing heatwave in Australia.</p>
<p><a href="http://joewheatley.net/wp-content/uploads/2009/12/t2m.jpeg"><img class="aligncenter size-large wp-image-1685" title="t2m" src="http://joewheatley.net/wp-content/uploads/2009/12/t2m-1024x572.jpg" alt="t2m" width="1024" height="572" /></a></p>
<h3>How the map was made</h3>
<p><strong><a href="http://www.nco.ncep.noaa.gov/pmb/products/gfs/" target="_blank">GFS forecasts</a></strong> are in a format called GRIB2. According to Wikipedia, <em><strong>&#8220;</strong>GRIB (GRIdded Binary) is a mathematically concise data format commonly used in meteorology to store historical and forecast weather data.&#8221; </em>GRIB files contain physical fields such as temperature, humidity etc defined on a spatial grid, as well as boundary conditions such as vegetation type and elevation. The data might be assimilated from observations, or output from a forecast model.</p>
<p>The first step is to translate the GRIB into a raster format such as <strong><a href="http://www.unidata.ucar.edu/software/netcdf/" target="_blank">netcdf</a></strong> which can be read in <em>R</em><strong><em>. </em></strong>For example, the GRIB2 file <em>gfs.2009121700/gfs.t00z.sfluxgrbf03.grib2</em> contains the 3-hr forecast surface data on 17 Dec 2009  produced at 00 UTC (midnight universal time). An inventory of the data contained in this file can be seen <strong><a href="http://www.nco.ncep.noaa.gov/pmb/products/gfs/gfs.t00z.sfluxgrbf00.grib2.shtml" target="_blank">here</a></strong>. Download this forecast as <em>temp.grb</em></p>
<p><code>loc=file.path("ftp://ftp.ncep.noaa.gov/pub/data/nccf/com/gfs/prod/gfs.2009121700/gfs.t00z.sfluxgrbf03.grib2")<br />
download.file(loc,"temp.grb",mode="wb")</code></p>
<p>To read <em>temp.grb</em> a utility called <strong><a href="http://www.cpc.noaa.gov/products/wesley/wgrib2/" target="_blank">wgrib2</a></strong> needs to be installed on your system. Then data such as land fraction can extracted into a netcdf file <em>LAND.nc</em> using the <em>R</em> shell command</p>
<p><code>shell("wgrib2 -s temp03.grb | grep :LAND: | wgrib2 -i temp00.grb -netcdf LAND.nc",intern=T)</code></p>
<p>The ncdf package can now be used to read the contents of <em>LAND.nc</em>.</p>
<p><code>library(ncdf)<br />
landFrac &lt;-open.ncdf("LAND.nc")<br />
land &lt;- get.var.ncdf(landFrac,"LAND_surface")<br />
x &lt;- get.var.ncdf(landFrac,"longitude")<br />
y &lt;- get.var.ncdf(landFrac,"latitude")</code></p>
<p>The 1152×576 matrix <em>land</em> takes values 1 for land and 0 for water (sea-ice is 1). x and y are the longitude and latitude of the non-uniform GFS grid.</p>
<p>2m temperature data can be read in the same way. The average of the first 8  forecasts was called <em>t2m.mean</em> and plotted using <em>image.plot()</em> from the fields package:</p>
<p><code>library(fields)<br />
rgb.palette &lt;- colorRampPalette(c("snow1","snow2","snow3","seagreen","orange","firebrick"), space = "rgb")#colors<br />
image.plot(x,y,t2m.mean,col=rgb.palette(200),axes=F,main=as.expression(paste("GFS 24hr Average 2M Temperature",day,"00 UTC",sep="")),axes=F,legend.lab="o C")<br />
contour(x,y,land,add=TRUE,lwd=1,levels=0.99,drawlabels=FALSE,col="grey30") #add land outline </code></p>
]]></content:encoded>
			<wfw:commentRss>http://joewheatley.net/ncep-global-forecast-system/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How big is the uncertainty in the global temperature trend?</title>
		<link>http://joewheatley.net/serial-correlation-and-global-temperature-trend-uncertainty/</link>
		<comments>http://joewheatley.net/serial-correlation-and-global-temperature-trend-uncertainty/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:41:59 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Climate]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://joewheatley.net/?p=1399</guid>
		<description><![CDATA[The global temperature record shows strong serial correlation. This boosts the uncertainty in the slope of the global warming trend. Here the uncertainty in the trend is derived using one of the satellite datasets.
warming in the satellite era
Data from satellites have been used to construct a global temperature record beginning in December 1978. This covers [...]]]></description>
			<content:encoded><![CDATA[<p>The global temperature record shows strong serial correlation. This boosts the uncertainty in the slope of the global warming trend. Here the uncertainty in the trend is derived using one of the satellite datasets.</p>
<h3>warming in the satellite era</h3>
<p>Data from satellites have been used to construct a global temperature record beginning in December 1978. This covers the recent warming period. The University of Alabama at Huntsville (UAH) <strong><a href="http://vortex.nsstc.uah.edu/public/msu/t2lt/tltglhmam_5.2" target="_blank">2LT product</a></strong> gives average temperature of the lower atmosphere derived from microwave radiances. Planck&#8217;s law says that microwave radiances are related to temperature.</p>
<p>The plot below shows UAH monthly time-series and a least-squares regression fit. The slope of the regression line is 0.013ºC/year (equivalent to 0.13°C/decade or 1.3°C/century). Also shown is the <strong><a href="http://data.giss.nasa.gov/gistemp/" target="_blank">Gistemp</a></strong> global temperature time-series over the same time interval. Gistemp is based on surface weather stations. The trend in the Gistemp series is higher, 0.18°C/decade.</p>
<p style="text-align: left;"><a href="http://joewheatley.net/wp-content/uploads/2009/12/anomaly.png"><img class="aligncenter size-large wp-image-1407" title="anomaly" src="http://joewheatley.net/wp-content/uploads/2009/12/anomaly-1024x934.png" alt="anomaly" width="655" height="598" /></a></p>
<h3 style="text-align: left;">uncertainty in trend</h3>
<p>A linear regression fit to global temperatures is a statistical model in which strong residual variations are superposed on a linear warming trend. The residual variations reflect &#8220;noise&#8221; in the climate system. ENSO, random events such as volcanos, and many other modes of variability contribute to the &#8220;noise&#8221;. The &#8220;uncertainty&#8221; in the global warming trend can be estimated in the context of this statistical model.</p>
<p>From this point of view, the UAH monthly data are one realisation of a random sample of length N. In reality we only have one sample, the UAH data from the real world. However, if repeated sampling and slope measurement were possible, it would yield a range of outcomes due to noise. The width of the resulting slope probability distribution reflects the uncertainty in the global warming trend. It is evident that there is strong serial correlation in the residuals. This enhances the uncertainty, because it reduces the effective number of independent degrees of freedom in the data. Fewer degrees of freedom means more uncertainty.</p>
<p>The UAH residuals are fit to an auto-regressive model to account for serial auto-correlation. The Akaike information criterion to choose an optimal order n. For UAH it  turns out that n=2, with coefficients 0.58  and 0.24. To find the slope probability distribution 10,000 time-series were used in a Monte Carlo simulation. Each simulated time-series assumes a UAH trend-line of 0.13°C/decade and an AR(2) noise term parameterized using the AR(2) model fit to the UAH residuals. Linear regression fit on each of these simulated time-series yields the slope probablity distribution.</p>
<p style="text-align: center;"><a href="http://joewheatley.net/wp-content/uploads/2009/12/slope.png"><img class="aligncenter size-large wp-image-1554" title="slope" src="http://joewheatley.net/wp-content/uploads/2009/12/slope-1024x942.png" alt="slope" width="491" height="452" /></a></p>
<p style="text-align: left;">A typical result is shown above along with a fit to the normal distribution. By construction the mean is 0.13°C/decade as expected. The standard error is 0.036°C/decade. This is 3.4 times greater than the standard error with independent and identically distributed (iid) residuals.</p>
<p>The 2σ confidence interval for UAH global temperature trend is 0.05 to 0.2°C/decade. Unfortunately, this is quite a wide window.<em> </em>Would another 30 years of data help? Assuming that the properties of the UAH time-series do not change, and extending the above simulation for another 30 years, the standard error is reduced from 0.035°C/decade to 0.026°C/decade. Better, but still a surprising degree of uncertainty.</p>
<h3><em>R</em> code</h3>
<p>The above analysis was carried out using <em>R</em> functions ar() and arima.sim()</p>
<p><code>fitLin &lt;-lm(GLOBAL~dates)  # linear regression fit to GLOBAL= UAH global temperature, dates = UAH dates<br />
ar.fit &lt;- ar(residuals(fitLin)) # AR model for residuals<br />
N=10000; # number of simulated UAH time-series<br />
fits &lt;- cbind(rep(0,N),rep(0,N))<br />
trend &lt;- coefficients(fitLin)[1] + dates*coefficients(fitLin)[2] # UAH trend line<br />
#Monte Carlo<br />
for( i in 1:N){<br />
warming &lt;- trend+arima.sim(n = NData, list(ar = c(ar.fit$ar[1], ar.fit$ar[2])), sd=sqrt(ar.fit$var.pred)) #generate sample<br />
fit.warm &lt;- lm(warming~dates) # linear fit<br />
fits[i,1] &lt;- coefficients(fit.warm)[1];<br />
fits[i,2] &lt;- coefficients(fit.warm)[2]; # slope of simulated data<br />
}<br />
library(MASS) # MASS library must be installed<br />
gf &lt;- fitdistr(fits[,2],"normal") # fit a normal distribution to the slopes<br />
mn &lt;-gf$estimate[1] #mean<br />
sig &lt;- gf$estimate[2] #standard error<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://joewheatley.net/serial-correlation-and-global-temperature-trend-uncertainty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flux Towers: Part I</title>
		<link>http://joewheatley.net/flux-towers-part-i/</link>
		<comments>http://joewheatley.net/flux-towers-part-i/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 10:05:37 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Carbon]]></category>
		<category><![CDATA[Forests]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[carbon sources and sinks]]></category>
		<category><![CDATA[eddy covariance]]></category>
		<category><![CDATA[Flux tower]]></category>
		<category><![CDATA[Terrestrial Carbon]]></category>

		<guid isPermaLink="false">http://joewheatley.net/?p=654</guid>
		<description><![CDATA[Most solar energy absorbed at the earth&#8217;s surface is radiated back into space. For every high energy solar photon absorbed, about 20 degraded thermal photons are eventually radiated back. Ecosystems hitch a ride on this process. The starting point is of course plant photosynthesis which converts sunlight into chemical energy:  . The reverse process (respiration, [...]]]></description>
			<content:encoded><![CDATA[<p>Most solar energy absorbed at the earth&#8217;s surface is radiated back into space. For every high energy solar photon absorbed, about 20 degraded thermal photons are eventually radiated back. Ecosystems hitch a ride on this process. The starting point is of course plant photosynthesis which converts sunlight into chemical energy:  <img src='http://s.wordpress.com/latex.php?latex=%5Cmathrm%7BCO_2%7D%2B%5Cmathrm%7BH_2O%7D%2B%5Cmathrm%7Bphotons%7D%5Crightarrow%20%5Cmathrm%7Bsugars%7D%2B%5Cmathrm%7BO_2%7D&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\mathrm{CO_2}+\mathrm{H_2O}+\mathrm{photons}\rightarrow \mathrm{sugars}+\mathrm{O_2}' title='\mathrm{CO_2}+\mathrm{H_2O}+\mathrm{photons}\rightarrow \mathrm{sugars}+\mathrm{O_2}' class='latex' />. The reverse process (respiration, burning of sugars and emission of CO2) converts the energy captured by photosynthesis into an almost unbelievable variety of alternative chemical forms, and also into mechanical energy and heat. Following carbon is a way to track energy flow through an ecosystem.</p>
<p>Respiration CO2 derives from maintainance and growth respiration by vascular plants (&#8221;autotrophic&#8221; respiration) and also by the decay of organic matter in soil and litter layers (&#8221;heterotrophic&#8221; respiration). At the ecosystem level, the net exchange of CO2 with the atmosphere is called<em> Net Ecosystem Exchange</em> (NEE). NEE is just the difference between total ecosystem respiration (RE) and photosynthesis (or Gross Ecosystem Production, GEP) :</p>
<p style="text-align: center;"><img src='http://s.wordpress.com/latex.php?latex=%5Cmathrm%7BNEE%7D%20%3D%20%20%5Cmathrm%7BRE%7D-%5Cmathrm%7BGEP%7D%20&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\mathrm{NEE} =  \mathrm{RE}-\mathrm{GEP} ' title='\mathrm{NEE} =  \mathrm{RE}-\mathrm{GEP} ' class='latex' /></p>
<p style="text-align: center;">
<p style="text-align: left;">At night, GEP <img src='http://s.wordpress.com/latex.php?latex=%3D%200&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='= 0' title='= 0' class='latex' /> and the flux of CO2 from the ecosystem to the atmosphere equals RE. During daylight hours, GEP switches on and NEE is normally negative during the growing season. Of course NEE depends on sunlight, air temperature, soil moisture etc. Fortunately this important property of ecosystems is directly measurable.</p>
<h3>Eddy Covariance</h3>
<p style="text-align: left;"><a href="http://joewheatley.net/wp-content/uploads/2009/09/eddycovariance.jpg"><img class="size-full wp-image-675 alignleft" style="margin: 0px 10px;" title="eddycovariance" src="http://joewheatley.net/wp-content/uploads/2009/09/eddycovariance.jpg" alt="eddycovariance" width="325" height="201" /></a> Under normal conditions, air motion above vegetation is turbulent. This fact is the basis of a statistical technique called <em>eddy covariance</em> which measures the flux of CO2 between ecosystem and atmosphere. A setup similar to the one shown on the left is mounted on a tower rising above the top of the vegetation canopy. The setup consists of a gas analyser (measuring instantaneous CO2 concentration), and an anemometer (capable of measuring the instantaneous vertical component of the wind velocity).</p>
<p style="text-align: left;">To a good approximation, the CO2 flux is just the covariance of the vertical wind speed <img src='http://s.wordpress.com/latex.php?latex=w&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='w' title='w' class='latex' /> with the CO2 concentration <img src='http://s.wordpress.com/latex.php?latex=%5Crho&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\rho' title='\rho' class='latex' />. For example, if <img src='http://s.wordpress.com/latex.php?latex=w&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='w' title='w' class='latex' /> and <img src='http://s.wordpress.com/latex.php?latex=%5Crho&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\rho' title='\rho' class='latex' /> are uncorrelated, the flux is zero. The covariance can be obtained by recording data at high frequency over 30min intervals, say. This gives a time-series of CO2 fluxes at half-hour intervals. The eddy covariance technique gives information on NEE on a spatial scale which is typically <img src='http://s.wordpress.com/latex.php?latex=%5Capprox%201%20km%5E2&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\approx 1 km^2' title='\approx 1 km^2' class='latex' />. Of course, the technique also works for other trace gases or water vapour. There is a good <strong><a href="http://en.wikipedia.org/wiki/Eddy_covariance" target="_blank">wikipedia article</a> </strong>on eddy covariance which provides additional details.</p>
<p style="text-align: left;">According to <strong><a href="http://www.fluxnet.ornl.gov/fluxnet/overview.cfm" target="_blank">Fluxnet</a></strong>, there about 500 flux towers making continuous eddy covariance measurements of NEE worldwide. Given the diversity of Earth&#8217;s ecosystems, this is a small number. Flux tower data is rare and valuable.</p>
<h3>NEE Data</h3>
<p>With this technical explanation out of the way, we get to look at NEE for some real ecosystems. Access to (mainly North American) flux tower data was obtained through the  <a href="http://public.ornl.gov/ameriflux/">ameriflux</a> network. Two different forest ecosystems are compared<strong>. <a href="http://atmos.seas.harvard.edu/lab/hf/index.html" target="_blank">Harvard forest</a></strong> is a 1200Ha temperate broadleaf deciduous forest in Massachussetts. This secondary growth forest has been studied intensively since it was established in 1907.<sup>[1]</sup> A 30m flux tower has measured NEE at Harvard Forest since 1993.<strong><a href="http://daac.ornl.gov/LBA/guides/CD10_CO_Tapajos.html" target="_blank"> km 67 Sanatarem flux tower</a></strong> on the other hand is located in primary tropical rainforest, Tapajos National Forest, Para State, Brazil. Three years of data are available 2000-2003 from this 64m tower.</p>
<p>Half-hourly time-series of CO2 fluxes were generated as shown below using the statistical programming language <strong><em>R.</em></strong></p>
<p style="text-align: center;"><a href="http://joewheatley.net/wp-content/uploads/2009/09/nee.png"><img class="aligncenter size-large wp-image-819" title="nee" src="http://joewheatley.net/wp-content/uploads/2009/09/nee-940x1024.png" alt="nee" width="752" height="819" /></a></p>
<p>The qualitative features of CO2 fluxes are as expected. Namely, both forests lose carbon at night while daytime fluxes tend to be negative, temperate forest shows a strong seasonal signal and there is a much weaker wet/dry seasonal signal in the tropical forest. There are some surprises, however. Peak summer carbon fluxes at Harvard Forest are as large as Santarem tropical forest fluxes <img src='http://s.wordpress.com/latex.php?latex=%5Capprox%20-0.4%20mgCm%5E%7B-2%7D%20s%5E%7B-1%7D&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='\approx -0.4 mgCm^{-2} s^{-1}' title='\approx -0.4 mgCm^{-2} s^{-1}' class='latex' />. Another surprise is that there is stronger carbon absorbtion by the tropical forest during the dry season, which seems to contradict intuition about dry season water stress.<sup>[2]</sup> Perhaps the biggest surprise is the relative performance of the two forests as net carbon sources or sinks.</p>
<h3>Sources or Sinks?</h3>
<p>Cumulative NEE shows whether these forests are sources or sinks of carbon. This is simply obtained by applying <strong><em>R</em></strong>&#8217;s cumsum() function to the half-hourly time-series above. The graph (below) shows that Harvard forest has been a strong and even accelerating sink for CO2 (= 2tC/Ha/y) since 1992, even though it is 100 years old. By contrast, primary forest at the Santarem site was a source of CO2 between 2002 and 2005. Researcher suggest this may be due to the presence of excess dead wood in the area following earlier disturbances e.g. 1998 El Nino drought.<sup>[2]</sup></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: left;">
<p style="text-align: center;"><a href="http://joewheatley.net/wp-content/uploads/2009/09/cumulativenee.png"><img class="aligncenter size-large wp-image-888" title="cumulativenee" src="http://joewheatley.net/wp-content/uploads/2009/09/cumulativenee-1024x898.png" alt="cumulativenee" width="717" height="629" /></a></p>
<p style="text-align: left;">It is remarkable that Harvard Forest is still an agressive carbon sink (0.25KgC/m2/y) after 100 years of growth.</p>
<h3 style="text-align: left;">Conclusions</h3>
<p style="text-align: left;">The above illustrates some of the surprises and complexity of real ecosystem data. When memory effects are large, intuition can be a very poor guide. Models, such as those used in long-term climate research, are necessarily simplifications of reality.</p>
<p style="text-align: left;">This is the <strong><a href="http://joewheatley.net/wp-content/uploads/2009/09/ameriflux.txt" target="_blank">R code</a></strong> used to download, process and plot the flux tower data. In a follow-on post an ecosystem model for Havard Forest NEE will be built in <strong><em>R</em></strong>.</p>
<h4 style="text-align: left;">References</h4>
<p style="text-align: left;">
<p style="text-align: left;">[1] <em>Forests in Time: The Enviromental Consequences of change in New England</em>, by D. Foster and J. Aber, 2004</p>
<p>[2] <em>Carbon in Amazon Forests: Unexpected Seasonal Fluxes and Disturbance-Induced Losses, </em>Saleska et al<em>, </em>Science vol. 302 2003<em><br />
</em></p>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://joewheatley.net/flux-towers-part-i/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vegetation piles on the carbs</title>
		<link>http://joewheatley.net/piling-on-the-carbs/</link>
		<comments>http://joewheatley.net/piling-on-the-carbs/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 19:26:22 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Carbon]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[CO2]]></category>
		<category><![CDATA[Terrestrial Carbon]]></category>

		<guid isPermaLink="false">http://joewheatley.net/?p=569</guid>
		<description><![CDATA[Human activty is putting nearly ten billion tons of additional CO2 into the atmosphere each year. These emissions derive from burning of fossil fuels and changes in land use. Only half of this additional CO2 stays in the atmosphere, however. The rest is absorbed by oceans and by land (vegetation + soils). Climate researchers investigate [...]]]></description>
			<content:encoded><![CDATA[<p>Human activty is putting nearly ten billion tons of additional CO2 into the atmosphere each year. These emissions derive from burning of fossil fuels and changes in land use. Only half of this additional CO2 stays in the atmosphere, however. The rest is absorbed by oceans and by land (vegetation + soils). Climate researchers investigate how these complex carbon reservoirs (atmosphere, ocean and land) operate under future climate change scenarios.</p>
<p>So far vegetation have responded positively to increased CO2, a fact that is sometimes called &#8220;carbon fertilisation&#8221;. The data suggest that terrestrial ecosystems have absorbed more than 90 Gt (Gt = 1 billion metric tons) of additional CO2 since 1959. 90 GtC equivalent is a lot of vegetation. For comparison, all the world&#8217;s tropical rainforests = 200GtC equivalent. <em>Even without any greenhouse effect, </em>anthropogenic CO2 emissions have already had a large impact on terrestrial ecosystems.</p>
<h3>CO2 record</h3>
<p style="text-align: center;">
<p>Atmospheric CO2 has been routinely recorded at Mauna Loa since 1958 and is now recorded at many other locations worldwide. <strong><a href="http://scrippsco2.ucsd.edu/data/in_situ_co2/monthly_mlo.csv" target="_blank">Monthly average data</a></strong> from Mauna Loa are available from the Scripps Institute. The Carbon Dioxide Information and Analysis Center (CDIAC), Oak Ridge National Laboratory, provide historical <strong><a href="http://cdiac.ornl.gov/ftp/ndp030/global.1751_2006.ems" target="_blank">fossil fuel emissions data</a></strong>, and emissions associated with <strong><a href="http://cdiac.ornl.gov/trends/landuse/houghton/houghton.html">landuse change</a></strong>. CDIAC also have atmospheric CO2 data obtained from ice core studies, for example from <strong><a href="http://cdiac.ornl.gov/ftp/trends/co2/lawdome.combined.dat" target="_blank">Law Ice Dome</a></strong> in the Antarctic.</p>
<p>The &#8220;Global Carbon Budget&#8221; from 1959 is summarized by <strong><a href="http://lgmacweb.env.uea.ac.uk/lequere/co2/carbon_budget.htm" target="_self">Le Quéré</a></strong> at the University of East Anglia. The fraction of CO2 emissions which remain in the atmosphere (called the Airborne Fraction) is shown in the top chart of the figure below. The mean value of the Airborne Fraction is 43%. The linear fit suggests that a slightly greater proportion of CO2 is remaining in the atmosphere now than in the past.</p>
<p><a href="http://joewheatley.net/wp-content/uploads/2009/07/uptake.png"><img class="size-large wp-image-593 alignnone" title="uptake" src="http://joewheatley.net/wp-content/uploads/2009/07/uptake-1024x912.png" alt="uptake" width="819" height="730" /></a></p>
<p>Le Qu&eacute;r&eacute; also gives results of a global ocean calculation of annual CO2 absorbed by the oceans, based on observations.  In this estimate, oceans absorb about 29%  of emissions on average. Whatever is left over (27%) must equal the amount absorbed by terrestrial sinks. In the ocean model, there has been a decrease in the ability of the cold Southern oceans to absorb CO2 (centre chart). This means there is a downward trend in the ocean uptake fraction. This explains the upward trend in the Airborne Fraction. The remaining terrestrial fraction (bottom chart) is highly variable, but has no significant trend.</p>
<p>Two more things are worth noting from the above figure.</p>
<p>(1) the terrestrial uptake is similar in magnitude to the ocean uptake even though only 25% of the surface area of the earth is covered by vegetation.</p>
<p>(2) the terrestrial uptake is much more volatile than the ocean uptake. In some years, vegetation was a source of CO2.</p>
<p>Why is the variability of the terrestrial carbon fluxes so large? The answer is that this reflects vulnerability of vegetation to climatic variability, particularly droughts and fires. The negative effects of the 1987/8 and 1998 El Nino events are obvious on the bottom chart.  The 1991 eruption of Mount Pinatubo apparently lead to increased CO2 uptake.[2]</p>
<h3>Accumulation of Carbon by Vegetation</h3>
<p>The net cumulative uptake of CO2 by vegetation since 1959 is shown on the left hand plot below. Again this is derived from one specific model of the ocean uptake.</p>
<p><a href="http://joewheatley.net/wp-content/uploads/2009/07/cumulative.png"><img class="alignnone size-large wp-image-611" title="cumulative" src="http://joewheatley.net/wp-content/uploads/2009/07/cumulative-1024x655.png" alt="cumulative" width="821" height="525" /></a></p>
<p>The right-hand plot shows the relation between terrestrial accumulation and cumulative emissions since 1959. This is accurately linear. In some climate models, future global warming causes terrestrial ecosystems to degrade and eventually become net sources of CO2. If this starts to occur, the right hand plot would begin to flatten out.</p>
<h3>Where is the extra Vegetation?</h3>
<p>For a long time it was believed that the primary terrestrial carbon sink was in growing Northern forests. However more recent work suggests that about 1 Gt of additional CO2 is absorbed per year by mature Tropical Rainforest, as well as 1GtC per year in Northern forests.[3] Of course, deforestation of tropical forests is also the major source of  &#8220;land use change&#8221; emissions.</p>
<p>It is remarkable that so much uncertainty surrounds such a basic issue. The arrival of new <strong><a href="http://www.jaxa.jp/projects/sat/gosat/index_e.html" target="_blank">CO2 sensing satellites</a></strong> may improve this situation in the near future.</p>
<h4>References</h4>
<p>[1]<em>Saturation of the Southern Ocean CO<sub>2</sub> Sink Due to Recent Climate Change, </em>Le Qu&eacute;r&eacute;<em> et al </em>http://www.sciencemag.org/cgi/content/abstract/1136188<em><br />
</em></p>
<p>[2] <em>Anthropogenic and biophysical contributions to increasing atmospheric CO2 growth rate and airborne fraction</em>, M. R. Raupach et al http://www.biogeosciences-discuss.net/5/2867/2008/bgd-5-2867-2008.pdf</p>
<p>[3] <em>Missing carbon mystery: Case solved?</em> <a href="http://www.nature.com/climate/2007/0708/full/climate.2007.35.html" target="_self">Nature Report Climate Change</a> Jane Burgermeister</p>
]]></content:encoded>
			<wfw:commentRss>http://joewheatley.net/piling-on-the-carbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Biospherica</title>
		<link>http://joewheatley.net/hello-world/</link>
		<comments>http://joewheatley.net/hello-world/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 11:25:39 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://joewheatley.net/wordpress/?p=1</guid>
		<description><![CDATA[
Biospherica is a commentary on the condition of the terrestrial biosphere, in particular vegetation. More accurately, it discusses analysis and applications of what are often referred to as &#8220;bio-geophysical data&#8221;. Unfortunately there are many barriers to exploiting  bio-geophysical data effectively. Data are spread over a number of different platforms, and analytical techniques can be quite [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><em></em></p>
<div id="attachment_85" class="wp-caption alignleft" style="width: 178px"><em><em><img class="size-medium wp-image-85" title="p10106631" src="http://joewheatley.net/wp-content/uploads/2009/03/p10106631-168x300.jpg" alt="Equinox Stone, Hag's Hill, Ireland" width="168" height="300" /></em></em><p class="wp-caption-text">Equinox Stone, Hag&#39;s Hill, Ireland</p></div>
<p><em>Biospherica</em> is a commentary on the condition of the terrestrial biosphere, in particular vegetation. More accurately, it discusses analysis and applications of what are often referred to as &#8220;bio-geophysical data&#8221;. Unfortunately there are many barriers to exploiting  bio-geophysical data effectively. Data are spread over a number of different platforms, and analytical techniques can be quite specialised. <em>Biospherica</em> is about breaking down these barriers.  In future these data will play a much greater role in agriculture, trading, conservation policy, carbon markets <em>etc</em> than it does today.</p>
<p style="text-align: left;">An important class of bio-geophysical data is based on reflectance of sunlight from the Earth&#8217;s surface. Solar reflectance is measured by instruments carried on board Earth observation satellites. The spectrum  (i.e. how the reflectance depends on wavelength) at a particular surface location gives information about density of live vegetation at that location. Since the 1990s there has been an explosion in the collection and archiving of such data. In fact the quantity of data collected per unit time on the Earth&#8217;s biosphere greatly exceeds the quantity collected in financial markets, where prices  of 100,000&#8217;s of financial securities are tracked and stored in real-time.</p>
<p style="text-align: left;">Biophysical data are not as organised or accessible as financial data, and their application less transparent. Financial data include everthing from stock trade data, to commodity option prices  or over-the-counter derivatives quotes. To extract meaningful information about the overall state of financial markets from such a large and complex dataset, stock indices such as Standard &amp; Poors appeared long ago. Other indices have become important more recently, such as the VIX volatility index. Of course many reports and tools covering every imaginable aspect of financial markets are readily available.  Analysis of bio-geophysical data, on the other hand, is typically carried out by large public agencies, such as the US Department of Agriculture or the Joint Research Centre of the EU Commission.</p>
<p style="text-align: left;">One important theme of <em>Biospherica</em> will be to explore interesting parallels between the terrestrial biosphere and financial markets. Both are complex, non-linear systems with feedbacks, thresholds and instabilities. It is no accident that the first organised derivatives markets were in agricultural commodities, which helped participants to reduce their risk. Natural climatic variability is a major influence on vegetation and agriculture, whereas economic cycles influence financial markets. Secondly, an estimated 90% of the vegetative cover of the earth has been modified by human activity to a significant extent<sup> [1] </sup>. It could be said that the ecosystems that make up the biosphere are effectively being managed by human beings, just as a financial portfolio is managed by a fund manager.</p>
<p>The first (real) post in <em>Biospherica</em> will continue the financial market analogy with a post entitled <em>Global Agriculture&#8217;s Bull Run</em>.</p>
<p><strong><em></em></strong></p>
<p><strong><em>Hag&#8217;s Hill</em> </strong></p>
<p>I want to end this post on an auspicious note, because it is the first. The image (above) was taken at 07:15 GMT 20 March 2009 in Cairn T at the <em>Hag&#8217;s Hill</em>, Loughcrew, County Meath, Ireland. It shows the Equinox Stone, so-called because it is illuminated for a brief period as the sun rises due east on the spring and autumn Equinoxes. The hilltop mounds at Loughcrew were built around 3400bc by Neolithic farmers.  At Cairn T, a narrow passageway leads to a small chamber containing the Equinox Stone.  The irradiant glow from the leaf-like solar symbol at Loughcrew is a bewitching sight. We don&#8217;t know the precise symbolism that was intended by this light show. However it is easy to believe that it signified the start of the growing season at this northerly latitude (54<sup>o</sup> ). 5,000 years ago it must have appeared a very auspicious event, as it still does today.</p>
<p>[1]<a href="http://ecotope.org/projects/anthromes/">Anthropogenic Biomes of the World, Ellis and Ramankutty</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joewheatley.net/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

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