+-- {: .standout} This is a [[Blog articles in progress|blog article in progress]], written by [[John Baez]]. To see discussions of the article as it is being written, visit the [Azimuth Forum](http://forum.azimuthproject.org/discussion/1377/blog-el-nino-project-part-3/?Focus=11165#Comment_11165). If you want to write your own article, please read the directions on [How to blog](http://www.azimuthproject.org/azimuth/show/How+to#blog). =-- This paper claims there's a 3/4 chance that the next El Niño will arrive by the end of 2014: • Josef Ludescher, Avi Gozolchiani, Mikhail I. Bogachev, Armin Bunde, Shlomo Havlin, and Hans Joachim Schellnhuber, [Very early warning of next El Niño](http://www.climatelinc.eu/fileadmin/UG_ADVANCED/Publications/BIU_-_Avi__Halvin__et_al-Very_early_warning_of_next_El_Nino.pdf), <a href = "http://www.pnas.org/content/early/2014/02/07/1323058111"><i>Proceedings of the National Academy of Sciences</i></a>, February 2014. (Click title for free version, journal name for official version.) Since it was published in a reputable journal, it created a big stir. But that's not the main reason we at the Azimuth Project want to analyze and improve this paper! The main reason is that it uses a <i>climate network</i>. Very roughly, the idea is this. We draw a big network of dots representing different places in the Pacific Ocean. We connect two dots with an edge if the sea surface temperatures at those two places are strongly correlated. The paper claims that when a El Niño is getting ready to happen, we get a <i>lot</i> of edges this way. In other words, temperatures in a big region of the Pacific Ocean tend to go up and down in synch! Whether this idea is right or wrong, it's interesting—and it's not very hard for programmers to dive in and study it. Two Azimuth members have done just that: <a href = "http://www.azimuthproject.org/azimuth/show/David+Tanzer">David Tanzer</a>, a software developer who works for financial firms in New York, and <a href = "http://www.azimuthproject.org/azimuth/show/Graham+Jones">Graham Jones</a>, a self-employed programmer who also works on genomics and Bayesian statistics. These guys have really brought new life to the Azimuth Code Project in the last few weeks, and it's exciting! Soon I'll start talking about the programs they've written, and how you can help. But today let me summarize the paper by Ludescher <i>et al</i>. The methodology is also explained here: • Josef Ludescher, Avi Gozolchiani, Mikhail I. Bogachev, Armin Bunde, Shlomo Havlin, and Hans Joachim Schellnhuber, <a href = "http://www.pnas.org/content/early/2013/06/26/1309353110.full.pdf+html">Improved El Niño forecasting by cooperativity detection</a>, <i>Proceedings of the National Academy of Sciences</i>, 30 May 2013. <h3> The basic idea </h3> The basic idea is to use a climate network. There are lots of variants on this idea, but here's a simple one. We start with a bunch of points representing different places on the Earth. We draw an edge between two points if the weather at those two place is strongly correlated... in some way that we get to decide. This gives us a bunch of points and edges between points, or in other words, an <b>undirected graph</b>. That's our climate network! Then we calculate stuff about this network. There are lots of ways to fill in the details. For example, for any pair of points $i$ and $j$ we could compute the <a href = "https://en.wikipedia.org/wiki/Cross-correlation">cross-correlation</a> of temperature histories at these points. We could use say that $i$ and $j$ are connected by an edge if the cross-correlation is bigger than some value. The papers by Ludescher <i>et al</i> try to predict El Niños by studying correlations between daily temperature data for "14 grid points in the El Niño basin and 193 grid points outside this domain", as shown here: <div align = "center"> <a href = "http://math.ucr.edu/home/baez/ecological/el_nino/ludescher_el_nino_cooperativity_1.jpg"> <img width = "450" src = "http://math.ucr.edu/home/baez/ecological/el_nino/ludescher_el_nino_cooperativity_1a.jpg" alt = ""/> </div> The red dots are the points in the El Niño basin. Starting from this temperature data, they build a climate network that changes with time. And starting from that, they calculate a number. When this number is bigger than a certain fixed value, they claim an El Niño is coming. How do they decide if an El Niño actually arrives? One way is to use the 'Ninñlo 3.4 index'. This the area-averaged sea surface temperature anomaly in the yellow region here: <div align = "center"> <a href = "http://www.esrl.noaa.gov/psd/forecasts/sstlim/for1gl.html"> <img width = "450" src = "http://math.ucr.edu/home/baez/ecological/el_nino/nino_3.4_region.gif" alt = ""> </a> </div> <b>Anomaly</b> means the temperature minus its average over time: how much <i>hotter than usual</i> it is. Here is what they get: <div align = "center"> <a href = "http://math.ucr.edu/home/baez/ecological/el_nino/ludescher_el_nino_cooperativity_2.jpg"> <img width = "450" src = "http://math.ucr.edu/home/baez/ecological/el_nino/ludescher_el_nino_cooperativity_2a.jpg" alt = ""/> </a> </div> The red line is the Ninñlo 3.4 index. When this gets above... <h3> The details </h3> For any $f(t)$, denote the moving average over the past year by: $$\langle f(t) \rangle = \frac{1}{365} \sum_{d = 0}^{364} f(t - d) $$ Let $i$ be a node in the El Niño basin, and $j$ be a node outside of it. Let $t$ range over every tenth day in the time span from 1950 to 2011. Let $T_k(t)$ be the daily atmospheric temperature anomalies (actual temperature value minus climatological average for each calendar day). Define the time-delayed cross-covariance function by: $$ C_{i,j}^{t}(-\tau) = \langle T_i(t) T_j(t - \tau) \rangle - \langle T_i(t) \rangle \langle T_j(t - \tau) \rangle $$ $$ C_{i,j}^{t}(\tau) = \langle T_i(t - \tau) T_j(t) \rangle - \langle T_i(t - \tau) \rangle \langle T_j(t) \rangle $$ They consider time lags $\tau$ between 0 and 200 d, where "a reliable estime of the backround noise level can be guaranteed." Divide the cross-covariances by the standard deviations of $T_i$ and $T_j$ to obtain the cross-correlations. Only temperature data from the past are considered when estimating the cross-correlation function at day $t$. Next, for nodes $i$ and $j$, and for each time point $t$, the maximum, the mean and the standard deviation around the mean are determined for $C_{i,j}^t$, as $\tau$ varies across its range. Define the <b>link strength</b> $S_{i j}(t)$ as the difference between the maximum and the mean value, divided by the standard deviation. They say: > Accordingly, $S_{i j}(t)$ describes the link strength at day t relative to the underlying background and thus quantifies the dynamical teleconnections between nodes $i$ and $j$. <h3> Niño 3.4 </h3> <a href = "">Niño 3.4</a> is the area-averaged sea surface temperature anomaly in the region 5°S-5°N and 170°-120°W. You can get Niño3.4 data here: * <a href = "http://www.esrl.noaa.gov/psd/gcos_wgsp/Timeseries/Nino34/">Niño 3.4 data</a>, NOAA. Niño 3.4 is just one of several official regions in the Pacific: <div align = "center"> <a href = "http://www.bom.gov.au/climate/enso/indices/about.shtml"> <img width = "450" src = "http://math.ucr.edu/home/baez/ecological/el_nino/nino_regions.gif" alt = ""> </a> </div> * Niño 1: 80°W-90°W and 5°S-10°S. * Niño 2: 80°W-90°W and 0°S-5°S * Niño 3: 90°W-150°W and 5°S-5°N. * Niño 3.4: 120°W-170°W and 5°S-5°N. * Niño 4: 160°E-150°W and 5°S-5°N. For more details, read this: * Kevin E. Trenberth, <a href = "http://www.cgd.ucar.edu/staff/trenbert/trenberth.papers/defnBAMS.pdf">The definition of El Niño, <i>Bulletin of the American Meteorological Society</i> <b>78</b> (1997), 2771–2777. category: blog, climate