View Single Post
  #3   Report Post  
Old June 5th 05, 05:09 PM posted to uk.sci.weather
Brian Wakem Brian Wakem is offline
external usenet poster
 
First recorded activity by Weather-Banter: Aug 2003
Posts: 685
Default Januaries that were significantly warmer than the February

Gavin Staples wrote:

Januaries that were significantly warmer than the February
Here's a list of Februaries CETs that were significantly lower than
the previous Januaries CETs i.e greater than 2C

The first value is the January CET, the second value is the February
CET

1994 5.3 3.2
1986 3.6 -1.1
1983 6.7 1.7

snip data


I find this quite remarkable and I wish I had
the means to produce info like this.




It isn't particularly difficult. I have all the CET values stored in mysql
database table and can produce the exact same dataset with a simple query.

SELECT year,jan,feb FROM mean WHERE jan feb+2 ORDER BY year DESC;


--
Brian Wakem