<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>#climatedata &#187; Recent Topics</title>
		<link>http://climatedata.blprnt.com/</link>
		<description>Data Visualization &amp; Climate Reality</description>
		<language>en-US</language>
		<pubDate>Thu, 29 Jul 2010 22:58:00 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://climatedata.blprnt.com/search.php</link>
		</textInput>
		<atom:link href="http://climatedata.blprnt.com/rss/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>Arenamontanus on "Matlab"</title>
			<link>http://climatedata.blprnt.com/topic/matlab#post-44</link>
			<pubDate>Sun, 13 Dec 2009 22:12:18 +0000</pubDate>
			<dc:creator>Arenamontanus</dc:creator>
			<guid isPermaLink="false">44@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;I wrote a little script to read the data into Matlab for further processing. Nothing particularly clever, mainly a bit of file management and string processing to extract data and convert it into arrays. Some basic visualisations can be done.&#60;br /&#62;
 Right now it just deals with each station separately, but the next step involves merging the data in various ways. &#60;/p&#62;
&#60;p&#62;Not sure if it works in Octave.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
% Matlab code to load Land surface climate station records&#60;br /&#62;
% Assumes the data is unzipped into a subdirectory named Data.&#60;br /&#62;
% Iterates through the subfolders, loading the data station by station&#60;br /&#62;
%&#60;br /&#62;
% Anders Sandberg&#60;br /&#62;
subdirs=dir('Data');&#60;br /&#62;
files={};&#60;/p&#62;
&#60;p&#62;llong=[];&#60;br /&#62;
llat=[];&#60;br /&#62;
hheight=[];&#60;/p&#62;
&#60;p&#62;for i=1:length(subdirs)&#60;br /&#62;
    if (subdirs(i).name(1)~='.')&#60;br /&#62;
        datafiles=dir(strcat('Data/',char(subdirs(i).name)));&#60;br /&#62;
        for j=1:length(datafiles)&#60;br /&#62;
            if (datafiles(j).name(1)~='.')&#60;br /&#62;
                filename = strcat('Data/',char(subdirs(i).name),'/',char(datafiles(j).name));&#60;/p&#62;
&#60;p&#62;                fid=fopen(filename,'r');&#60;br /&#62;
                %tline = fgetl(fid);&#60;br /&#62;
                %sscanf(tline,'%d'),&#60;/p&#62;
&#60;p&#62;                while (1)&#60;br /&#62;
                    tline = fgetl(fid);&#60;br /&#62;
                    if (strcmp(tline,'Obs:')) break; end&#60;br /&#62;
                    C=textscan(tline,'%s%s', 1,'Delimiter','=');&#60;br /&#62;
                    if (strcmp(C{1},'Number')) id=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Name')) name=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Country')) country=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Lat')) lat=C{2}; lat=str2num(lat{1}); end&#60;br /&#62;
                    if (strcmp(C{1},'Long')) long=C{2}; long=str2num(long{1}); end&#60;br /&#62;
                    if (strcmp(C{1},'Height')) height=C{2}; height=str2num(height{1}); end&#60;br /&#62;
                    if (strcmp(C{1},'Start year')) startyear=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'End year')) stopyear=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'First Good year')) goodyear=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Source ID')) sourceid=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Source file')) sourcefile=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Normals source')) normalsource=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Normals source start year')) normalstart=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Normals source end year')) normalend=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Normals')) normals=C{2}; nromals=str2num(normals{1}); end&#60;br /&#62;
                    if (strcmp(C{1},'Standard deviations source')) stdsource=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Standard deviations source start year')) stdstart=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Standard deviations source end year')) stdend=C{2}; end&#60;br /&#62;
                    if (strcmp(C{1},'Standard deviations')) stds=C{2}; stds=str2num(stds{1}); end&#60;br /&#62;
                end&#60;/p&#62;
&#60;p&#62;                data=textscan(fid,'%d%f%f%f%f%f%f%f%f%f%f%f%f');&#60;/p&#62;
&#60;p&#62;                % Vector of years for this station&#60;br /&#62;
                year=double(data{1});&#60;br /&#62;
                % Matrix of temp data&#60;br /&#62;
                bdata=[data{2} data{3} data{4} data{5} data{6} data{7} data{8} data{9} data{10} data{11} data{12} data{13}];&#60;br /&#62;
                % Vector of temp data&#60;br /&#62;
                sdata=bdata'; sdata=sdata(:);&#60;br /&#62;
                % Vectors of months and years&#60;br /&#62;
                smonth=repmat(1:12,1,length(year));&#60;br /&#62;
                syear=[]; for k=1:length(year); syear=[syear ones(1,12)*year(k)]; end&#60;/p&#62;
&#60;p&#62;                N=length(sdata);&#60;/p&#62;
&#60;p&#62;                % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%VISUALISATIONS&#60;br /&#62;
                % Comment/uncomment as needed&#60;/p&#62;
&#60;p&#62;                % Remove nonexistent data&#60;br /&#62;
                sdata(find(sdata&#38;lt;-98))=NaN;&#60;/p&#62;
&#60;p&#62;                % plot full data serially&#60;br /&#62;
                %plot(syear+(smonth-1)/12, sdata)&#60;/p&#62;
&#60;p&#62;                % plot year cycle&#60;br /&#62;
                %plot(sdata(1:(N-3)),sdata(4:N))&#60;/p&#62;
&#60;p&#62;%              % Plot colored year cycle&#60;br /&#62;
%                 clf&#60;br /&#62;
%                 hold on&#60;br /&#62;
%                 for ii=1:(N-4)&#60;br /&#62;
%                     co=ii*[1 1 1]/N;&#60;br /&#62;
%                     plot([sdata(ii) sdata(ii+1)],[sdata(ii+3) sdata(ii+4)],'LineWidth',2,'Color',co);&#60;br /&#62;
%                 end&#60;br /&#62;
%                 set(gca,'Color',[153 136 85]/255)&#60;br /&#62;
%                 xlabel('T(t)')&#60;br /&#62;
%                 ylabel('T(t+3)')&#60;br /&#62;
%                 V=axis;&#60;br /&#62;
%                 title(strcat(char(name),' / ',char(country)),'FontSize',20)&#60;br /&#62;
%                &#60;/p&#62;
&#60;p&#62;                % make map&#60;br /&#62;
                %if (height&#38;lt;-100) height=0; end; % remove missing heights&#60;br /&#62;
                %plot3(long,lat,height,'.')&#60;br /&#62;
                %text(long,lat,height,strcat(name,' ',country));&#60;/p&#62;
&#60;p&#62;                % plot monthly deviation from mean temperature&#60;br /&#62;
                %mm=mean(sdata(find(~isnan(sdata))));&#60;br /&#62;
                %plot(syear+(smonth-1)/12, sdata-mm);&#60;/p&#62;
&#60;p&#62;                % Plot a polar diagram of temperatures&#60;br /&#62;
                clf&#60;br /&#62;
                hold on&#60;br /&#62;
                singleplot=0; % single color or multicolor&#60;br /&#62;
                mi=-50;&#60;br /&#62;
                ma=50;&#60;br /&#62;
                % Draw background lines&#60;br /&#62;
                theta=2*pi*(0:100)/100;&#60;br /&#62;
                for r=-30:10:30&#60;br /&#62;
                    R=0.1+0.9*(r - mi)/(ma-mi);&#60;br /&#62;
                    if (R&#38;gt;0)&#60;br /&#62;
                        plot(R.*cos(theta),R.*sin(theta),'k','Color',[0.7 0.7 0.7])&#60;br /&#62;
                        text(R+.025,0+.025,num2str(r),'FontSize',8)&#60;br /&#62;
                    end&#60;br /&#62;
                end&#60;br /&#62;
                monthname=['Jan';'Feb';'Mar';'Apr';'May';'Jun';'Jul';'Aug';'Sep';'Oct';'Nov';'Dec'];&#60;br /&#62;
                for mo=1:12&#60;br /&#62;
                    tm=-2*pi*(mo-1)/12;&#60;br /&#62;
                    plot([0 Rm*cos(tm)],[0 Rm*sin(tm)],'k','Color',[0.7 0.7 0.7]);&#60;br /&#62;
                    text(1.05*Rm*cos(tm),1.05*Rm*sin(tm),monthname(mo,:),'HorizontalAlignment','center');&#60;br /&#62;
                end&#60;br /&#62;
                theta=-(2*pi*(smonth-1)/12)';&#60;br /&#62;
                R=0.1+0.9*(sdata - mi)/(ma-mi);&#60;br /&#62;
                Rm=1;&#60;br /&#62;
                if (singleplot==1)&#60;br /&#62;
                    plot(R.*cos(theta),R.*sin(theta))&#60;br /&#62;
                else&#60;br /&#62;
                    for ii=1:(N-1)&#60;br /&#62;
                        co=ii*[1 1 1]/N;&#60;br /&#62;
                        plot([R(ii)*cos(theta(ii)) R(ii+1)*cos(theta(ii+1))],[R(ii)*sin(theta(ii)) R(ii+1)*sin(theta(ii+1))],'Color',co,'LineWidth',2);&#60;br /&#62;
                    end&#60;br /&#62;
                end&#60;br /&#62;
                axis([-1.1 1.1 -1.1 1.1])&#60;br /&#62;
                axis square&#60;br /&#62;
                axis off&#60;br /&#62;
                title(strcat(char(name),' / ',char(country)),'FontSize',20)&#60;/p&#62;
&#60;p&#62;                % Make unreliable mean year plot&#60;br /&#62;
                % bdata(find(bdata&#38;lt;-98))=NaN;&#60;br /&#62;
                % plot(year, mean(bdata'))&#60;/p&#62;
&#60;p&#62;                drawnow&#60;br /&#62;
                pause&#60;/p&#62;
&#60;p&#62;                %%%%%%%%%%%%%%%%%%%%%%%%%&#60;br /&#62;
                % Collect data across stations&#60;br /&#62;
                llong=[llong long];&#60;br /&#62;
                llat=[llat lat];&#60;br /&#62;
                hheight=[hheight height];&#60;/p&#62;
&#60;p&#62;                fclose(fid);&#60;br /&#62;
            end&#60;br /&#62;
        end&#60;br /&#62;
    end&#60;br /&#62;
end&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mgilbir on "Seasonal variations per areas"</title>
			<link>http://climatedata.blprnt.com/topic/seasonal-variations-per-areas#post-42</link>
			<pubDate>Sun, 13 Dec 2009 13:36:30 +0000</pubDate>
			<dc:creator>mgilbir</dc:creator>
			<guid isPermaLink="false">42@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;I just gave a shot at the dataset and came up with my first Processing visualisation.&#60;/p&#62;
&#60;p&#62;&#60;object width=&#34;500&#34; height=&#34;375&#34;&#62;&#60;/p&#62;
&#60;param name=&#34;allowfullscreen&#34; value=&#34;true&#34; /&#62;
&#60;param name=&#34;allowscriptaccess&#34; value=&#34;always&#34; /&#62;
&#60;param name=&#34;movie&#34; value=&#34;http://vimeo.com/moogaloop.swf?clip_id=8150082&#38;amp;server=vimeo.com&#38;amp;show_title=0&#38;amp;show_byline=0&#38;amp;show_portrait=0&#38;amp;color=00adef&#38;amp;fullscreen=1&#34; /&#62;&#38;lt;embed src=&#34;http://vimeo.com/moogaloop.swf?clip_id=8150082&#38;amp;server=vimeo.com&#38;amp;show_title=0&#38;amp;show_byline=0&#38;amp;show_portrait=0&#38;amp;color=00adef&#38;amp;fullscreen=1&#34; type=&#34;application/x-shockwave-flash&#34; allowfullscreen=&#34;true&#34; allowscriptaccess=&#34;always&#34; width=&#34;500&#34; height=&#34;375&#34;&#38;gt;&#38;lt;/embed&#38;gt;&#60;/object&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://vimeo.com/8150082&#34;&#62;Global average temperature evolution 1701 - 2009&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It aims to represents how the temperature has evolved over time in different regions of the Earth:&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;North represents the data recorded by stations between the Arctic Circle and the Tropic of Cancer.
&#60;/li&#62;
&#60;li&#62;Tropic represents the data recorded by stations between the Tropic of Cancer and the Tropic of Capricorn.
&#60;/li&#62;
&#60;li&#62;South represents the data recorded by stations between the Tropic of Capricorn and the Antarctic Circle.
&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;I am preparing a blog post with some further analysis of the data. All feedback is very much appreciated :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gka on "Geospatial distribution of weather stations"</title>
			<link>http://climatedata.blprnt.com/topic/geospatial-distribution-of-weather-stations#post-46</link>
			<pubDate>Mon, 14 Dec 2009 02:02:53 +0000</pubDate>
			<dc:creator>gka</dc:creator>
			<guid isPermaLink="false">46@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;I made a little animation showing the geospatial distribution of weather stations over time. The temperature range is from -70°C (dark blue) over 0° (white), 10°C (yellow), 32°C (red) to 40°C (dark red). The video goes through 3 loops showing the mean temperature (MT), the summer mean temperature (SMT) and the winter mean temperature (WMT).&#60;/p&#62;
&#60;p&#62;See the video: &#60;a href=&#34;http://vimeo.com/8160362&#34; rel=&#34;nofollow&#34;&#62;http://vimeo.com/8160362&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The second charts shows the percentage of weather stations in certain latitude regions over time:&#60;/p&#62;
&#60;p&#62;&#60;img src=&#34;http://vis4.net/blog/wp-content/uploads/2009/12/weather_chart.png&#34; alt=&#34;&#34; /&#62;&#60;/p&#62;
&#60;p&#62;Data source: &#60;a href=&#34;http://www.metoffice.gov.uk/climatechange/science/monitoring/subsets.html&#34; rel=&#34;nofollow&#34;&#62;http://www.metoffice.gov.uk/climatechange/science/monitoring/subsets.html&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Flinklabs on "Climate Change Visualisation"</title>
			<link>http://climatedata.blprnt.com/topic/climate-change-visualisation#post-25</link>
			<pubDate>Fri, 11 Dec 2009 06:53:17 +0000</pubDate>
			<dc:creator>Flinklabs</dc:creator>
			<guid isPermaLink="false">25@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;We've just put together a 3D globe style visualisation of the data. More details including source code, an image and a video are available at &#60;a href=&#34;http://flinklabs.com/projects/climatedata/&#34; rel=&#34;nofollow&#34;&#62;http://flinklabs.com/projects/climatedata/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>eggsyntax on "Links to datavis tools"</title>
			<link>http://climatedata.blprnt.com/topic/links-to-datavis-tools#post-31</link>
			<pubDate>Fri, 11 Dec 2009 18:28:14 +0000</pubDate>
			<dc:creator>eggsyntax</dc:creator>
			<guid isPermaLink="false">31@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;For anyone getting started in datavis, the plethora of tools can be intimidating. Here are three collections I've found very useful in choosing:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://flowingdata.com/2008/10/20/40-essential-tools-and-resources-to-visualize-data/&#34; rel=&#34;nofollow&#34;&#62;http://flowingdata.com/2008/10/20/40-essential-tools-and-resources-to-visualize-data/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.wikiviz.org/wiki/Tools&#34; rel=&#34;nofollow&#34;&#62;http://www.wikiviz.org/wiki/Tools&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.readwriteweb.com/archives/the_best_tools_for_visualization.php&#34; rel=&#34;nofollow&#34;&#62;http://www.readwriteweb.com/archives/the_best_tools_for_visualization.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Good luck!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blprnt on "Here is the data"</title>
			<link>http://climatedata.blprnt.com/topic/here-is-the-data#post-2</link>
			<pubDate>Wed, 09 Dec 2009 06:10:55 +0000</pubDate>
			<dc:creator>blprnt</dc:creator>
			<guid isPermaLink="false">2@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;Here is the data released today by the Met Office:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.metoffice.gov.uk/climatechange/science/monitoring/subsets.html&#34; rel=&#34;nofollow&#34;&#62;http://www.metoffice.gov.uk/climatechange/science/monitoring/subsets.html&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blprnt on "Image posting now enabled"</title>
			<link>http://climatedata.blprnt.com/topic/image-posting-now-enabled#post-36</link>
			<pubDate>Sat, 12 Dec 2009 02:09:37 +0000</pubDate>
			<dc:creator>blprnt</dc:creator>
			<guid isPermaLink="false">36@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;We have joined the 21st century - image posting is now enabled in the forum. Feel free to edit your posts as needed. I'll see if I can get vimeo embed allowed, as well... *EDIT - Vimeo embeds are now enabled, too!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.flickr.com/photos/blprnt/4176309538/&#34; title=&#34;Met Office Climate Data - Month by Month (January) by blprnt_van, on Flickr&#34;&#62;&#60;img src=&#34;http://farm5.static.flickr.com/4037/4176309538_96cb0f59f3.jpg&#34; alt=&#34;Met Office Climate Data - Month by Month (January)&#34; /&#62;&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blprnt on "#climatedata Flickr Pool"</title>
			<link>http://climatedata.blprnt.com/topic/climatedata-flickr-pool#post-33</link>
			<pubDate>Fri, 11 Dec 2009 21:00:44 +0000</pubDate>
			<dc:creator>blprnt</dc:creator>
			<guid isPermaLink="false">33@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;I've created a Flickr Pool:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.flickr.com/groups/1270263@N24/&#34; rel=&#34;nofollow&#34;&#62;http://www.flickr.com/groups/1270263@N24/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Please add any images and videos to this pool! I'll be making a widget for the main page to show the recent images from this pool.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blprnt on "Interactive visualization from EagerEyes.org"</title>
			<link>http://climatedata.blprnt.com/topic/interactive-visualization-from-eagereyesorg#post-32</link>
			<pubDate>Fri, 11 Dec 2009 20:54:30 +0000</pubDate>
			<dc:creator>blprnt</dc:creator>
			<guid isPermaLink="false">32@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;Robert Kosara has posted a nice interactive visualization of the Met Office data:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://eagereyes.org/data/interactively-explore-climate-data#comment-2065&#34; rel=&#34;nofollow&#34;&#62;http://eagereyes.org/data/interactively-explore-climate-data#comment-2065&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>eggsyntax on "Flex/Flare"</title>
			<link>http://climatedata.blprnt.com/topic/flexflare#post-30</link>
			<pubDate>Fri, 11 Dec 2009 18:25:15 +0000</pubDate>
			<dc:creator>eggsyntax</dc:creator>
			<guid isPermaLink="false">30@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;I've been enjoying doing climate data visualizations using the combination of Adobe's Flex development environment and the Flare visualization API. Flare has equivalents in other languages as well (Prefuse for Java, Protovis for Javascript), but I find Flex to be a pleasure to work with.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>eggsyntax on "Another dataset"</title>
			<link>http://climatedata.blprnt.com/topic/another-dataset#post-29</link>
			<pubDate>Fri, 11 Dec 2009 18:22:35 +0000</pubDate>
			<dc:creator>eggsyntax</dc:creator>
			<guid isPermaLink="false">29@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I work with the Climate Reference Network ( &#60;a href=&#34;http://www.ncdc.noaa.gov/crn/&#34; rel=&#34;nofollow&#34;&#62;http://www.ncdc.noaa.gov/crn/&#60;/a&#62; ), which provides data similar to that released by the Met Office, but on a national scale for the U.S. We attempt to provide extremely high-quality data (using triplicate measurement for temperature and precipitation, for example, and extensive quality control). Data can be explored at &#60;a href=&#34;http://www.ncdc.noaa.gov/crn/observations.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.ncdc.noaa.gov/crn/observations.htm&#60;/a&#62; , and full datasets can be downloaded at &#60;a href=&#34;ftp://ftp.ncdc.noaa.gov/pub/data/uscrn/products/&#34; rel=&#34;nofollow&#34;&#62;ftp://ftp.ncdc.noaa.gov/pub/data/uscrn/products/&#60;/a&#62; . Just wanted to let y'all know that it's out there as another resource, and I'd be curious to hear about it if anyone does any visualization work with our data.&#60;/p&#62;
&#60;p&#62;-Egg Davis
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rockitbaby on "Get to know the data"</title>
			<link>http://climatedata.blprnt.com/topic/get-to-know-the-data#post-19</link>
			<pubDate>Thu, 10 Dec 2009 19:35:38 +0000</pubDate>
			<dc:creator>rockitbaby</dc:creator>
			<guid isPermaLink="false">19@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;Thats what I did today. I wrote this visualization to get to know the data, not to show anything special.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://vimeo.com/8102161&#34; rel=&#34;nofollow&#34;&#62;http://vimeo.com/8102161&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Source:&#60;br /&#62;
&#60;a href=&#34;http://rockitbaby.de/static/climatedata_01.zip&#34; rel=&#34;nofollow&#34;&#62;http://rockitbaby.de/static/climatedata_01.zip&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Based on the MySQL-dump, thanks a lot.&#60;/p&#62;
&#60;p&#62;Feel free to play around and send me feedback.&#60;br /&#62;
Michael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blprnt on "Data Exploration - Monthly Sets"</title>
			<link>http://climatedata.blprnt.com/topic/data-exploration-monthly-sets#post-26</link>
			<pubDate>Fri, 11 Dec 2009 08:21:49 +0000</pubDate>
			<dc:creator>blprnt</dc:creator>
			<guid isPermaLink="false">26@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://www.flickr.com/photos/blprnt/4176309538/&#34; title=&#34;Met Office Climate Data - Month by Month (January) by blprnt_van, on Flickr&#34;&#62;&#60;img src=&#34;http://farm5.static.flickr.com/4037/4176309538_96cb0f59f3.jpg&#34; alt=&#34;Met Office Climate Data - Month by Month (January)&#34; /&#62;&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I spent a few hours with the data this evening. Mainly the purpose of these images is to get an idea of the scope of the data. I thought it would be helpful to break the records down into monthly sets. Also I sorted the stations by latitude, which groups like measurements together.&#60;/p&#62;
&#60;p&#62;I want to do some more exports like this focusing on certain geographical areas (N. Africa, for instance) to see if I can identify some trends...&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.flickr.com/photos/blprnt/sets/72157622978635070/&#34; rel=&#34;nofollow&#34;&#62;http://www.flickr.com/photos/blprnt/sets/72157622978635070/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>blprnt on "Processing Libraries - feature requests?"</title>
			<link>http://climatedata.blprnt.com/topic/processing-libraries-feature-requests#post-5</link>
			<pubDate>Wed, 09 Dec 2009 18:59:04 +0000</pubDate>
			<dc:creator>blprnt</dc:creator>
			<guid isPermaLink="false">5@http://climatedata.blprnt.com/</guid>
			<description>&#60;p&#62;Hi All,&#60;/p&#62;
&#60;p&#62;I'm going to work at putting together some simple Processing (&#60;a href=&#34;http://processing.org&#34; rel=&#34;nofollow&#34;&#62;http://processing.org&#60;/a&#62;) libraries. These libraries will read the Met Office data from some source (ideally a central online source that would allow the data to be updated with new sources as needed).&#60;/p&#62;
&#60;p&#62;I'm placing this thread here as a stub and will update it with details as I get a chance to work with the data a bit and get a fee for what the Processing libraries should be able to do.&#60;/p&#62;
&#60;p&#62;-Jer
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
