<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Ensemble Prediction</title>
	<atom:link href="http://joewheatley.net/ensemble-prediction/feed/" rel="self" type="application/rss+xml" />
	<link>http://joewheatley.net/ensemble-prediction/</link>
	<description>Earth Vegetation</description>
	<lastBuildDate>Wed, 28 Dec 2011 13:05:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: Mike</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-492</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 30 Nov 2011 16:23:21 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-492</guid>
		<description>Thanks.  Thats what it looked like to me but as a new user (of R, GRIB2) I wasn&#039;t sure somehow I was modifying the names or doing something wrong.  At some point, I guess NECP changed the naming convention of the field to include the ensemble number as part of variable name.  Thanks again.</description>
		<content:encoded><![CDATA[<p>Thanks.  Thats what it looked like to me but as a new user (of R, GRIB2) I wasn&#8217;t sure somehow I was modifying the names or doing something wrong.  At some point, I guess NECP changed the naming convention of the field to include the ensemble number as part of variable name.  Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joe</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-491</link>
		<dc:creator>joe</dc:creator>
		<pubDate>Tue, 29 Nov 2011 22:52:41 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-491</guid>
		<description>The line should be changed to read:

t2m.en[[i]] &lt;- get.var.ncdf(t2m,paste(&quot;TMP__&quot;,i,&quot;_2maboveground&quot;,sep=&quot;&quot;))

I tested the script with that change and it runs correctly.</description>
		<content:encoded><![CDATA[<p>The line should be changed to read:</p>
<p>t2m.en[[i]] <- get.var.ncdf(t2m,paste(&#8220;TMP__&#8221;,i,&#8221;_2maboveground&#8221;,sep=&#8221;"))</p>
<p>I tested the script with that change and it runs correctly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-490</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 29 Nov 2011 16:36:23 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-490</guid>
		<description>Thank you very much for the reply.  However, I don&#039;t understand; Are you saying my map is inverted?  How do i uninvert it?

Why does the following line from your code return a &quot;variable not found&quot; error?

t2m.en[[i]] &lt;- get.var.ncdf(t2m,&quot;TMP_2maboveground&quot;)

When I look at the variable names for the t2m variable (i.e. print(t2m) ) it suggest (I think) that somewhere in the process the variable name has been modified in the follwoing way:

  from TMP_2maboveground to TMP__1_2maboveground
  from TMP_2maboveground to TMP__2_2maboveground
  from TMP_2maboveground to TMP__3_2maboveground
  ...
  from TMP_2maboveground to TMP__20_2maboveground

Will look at the raster doccumetnation but any assistance you could proveivde for this new user would be very much appreciated.</description>
		<content:encoded><![CDATA[<p>Thank you very much for the reply.  However, I don&#8217;t understand; Are you saying my map is inverted?  How do i uninvert it?</p>
<p>Why does the following line from your code return a &#8220;variable not found&#8221; error?</p>
<p>t2m.en[[i]] &lt;- get.var.ncdf(t2m,&quot;TMP_2maboveground&quot;)</p>
<p>When I look at the variable names for the t2m variable (i.e. print(t2m) ) it suggest (I think) that somewhere in the process the variable name has been modified in the follwoing way:</p>
<p>  from TMP_2maboveground to TMP__1_2maboveground<br />
  from TMP_2maboveground to TMP__2_2maboveground<br />
  from TMP_2maboveground to TMP__3_2maboveground<br />
  &#8230;<br />
  from TMP_2maboveground to TMP__20_2maboveground</p>
<p>Will look at the raster doccumetnation but any assistance you could proveivde for this new user would be very much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joe</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-484</link>
		<dc:creator>joe</dc:creator>
		<pubDate>Wed, 23 Nov 2011 23:55:27 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-484</guid>
		<description>Mike,

as a sanity check, try making a map of the ensemble mean. it should be obvious what the problem is e.g. the map is inverted.

by the way, i recommend R&#039;s raster package. it gives a nice concise way of handling weather ensembles.</description>
		<content:encoded><![CDATA[<p>Mike,</p>
<p>as a sanity check, try making a map of the ensemble mean. it should be obvious what the problem is e.g. the map is inverted.</p>
<p>by the way, i recommend R&#8217;s raster package. it gives a nice concise way of handling weather ensembles.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-483</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 23 Nov 2011 21:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-483</guid>
		<description>This is killing me!  Is there any reason why the the TMP_2maboveground variable name would be prefixed by ...

TMP__1_2maboveground
TMP__2_2maboveground
TMP__3_2maboveground
...
...
TMP__19_2maboveground

for each of the ensebme runs?

I tested my wgrib2 statement mannually in the command window and it seems to produced the same prefixed variable names listed above which prevent the following line from working:

t2m.en[[i]] &lt;- get.var.ncdf(t2m,&quot;TMP_2maboveground&quot;)

I tried adding and modifying the above line to the followig to dynamicaly create the variable name:

nm=paste(&quot;TMP__&quot;,i,&quot;_2maboveground&quot;,sep=&quot;&quot;);
t2m.en[[i]] &lt;- get.var.ncdf(t2m,nm)

While this does seem to produce the charts the results dont seem reasonable the histograms produce results that show temps in the -30 range (Kelvin?) 

I&#039;m so close but cant seem to crack it, and I have become obsessed with figguring this out.  Any assistance would be greatly appreciated.</description>
		<content:encoded><![CDATA[<p>This is killing me!  Is there any reason why the the TMP_2maboveground variable name would be prefixed by &#8230;</p>
<p>TMP__1_2maboveground<br />
TMP__2_2maboveground<br />
TMP__3_2maboveground<br />
&#8230;<br />
&#8230;<br />
TMP__19_2maboveground</p>
<p>for each of the ensebme runs?</p>
<p>I tested my wgrib2 statement mannually in the command window and it seems to produced the same prefixed variable names listed above which prevent the following line from working:</p>
<p>t2m.en[[i]] &lt;- get.var.ncdf(t2m,&quot;TMP_2maboveground&quot;)</p>
<p>I tried adding and modifying the above line to the followig to dynamicaly create the variable name:</p>
<p>nm=paste(&quot;TMP__&quot;,i,&quot;_2maboveground&quot;,sep=&quot;&quot;);<br />
t2m.en[[i]] &lt;- get.var.ncdf(t2m,nm)</p>
<p>While this does seem to produce the charts the results dont seem reasonable the histograms produce results that show temps in the -30 range (Kelvin?) </p>
<p>I&#039;m so close but cant seem to crack it, and I have become obsessed with figguring this out.  Any assistance would be greatly appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-482</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 22 Nov 2011 20:50:09 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-482</guid>
		<description>I am a very new user to R and the weather files so, my appolgies if this is a dumb question.  After some work I got wgrib2 and grep installed and workig but run to a error when pulling the 2m temps.  It seems that the following line ...

   t2m.en[[i]] &lt;- get.var.ncdf(t2m,&quot;TMP_2maboveground&quot;)

...should be changed to:

   t2m.en[[i]] &lt;- get.var.ncdf(t2m,&quot;TMP__1_2maboveground&quot;)

Is this correct?</description>
		<content:encoded><![CDATA[<p>I am a very new user to R and the weather files so, my appolgies if this is a dumb question.  After some work I got wgrib2 and grep installed and workig but run to a error when pulling the 2m temps.  It seems that the following line &#8230;</p>
<p>   t2m.en[[i]] &lt;- get.var.ncdf(t2m,&quot;TMP_2maboveground&quot;)</p>
<p>&#8230;should be changed to:</p>
<p>   t2m.en[[i]] &lt;- get.var.ncdf(t2m,&quot;TMP__1_2maboveground&quot;)</p>
<p>Is this correct?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-190</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Sun, 26 Sep 2010 15:17:15 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-190</guid>
		<description>Thanks .  I could not get to that site with my browser but got in via FileZilla.  I managed to get your script to run.  I  had to download GNU grep, FWTools (up to version 4.2.7 now) and the RColorBrewer package as well.  

One item to point out as well,  I had to add a specific reference to the &quot;RColorBrewer&quot; package as well, which your version did not include.  

Thanks for making this available.  There is some R based processing I&#039;ve been thinking of doing with the GFS ensemble for some time.  This gets me started.  

Jan</description>
		<content:encoded><![CDATA[<p>Thanks .  I could not get to that site with my browser but got in via FileZilla.  I managed to get your script to run.  I  had to download GNU grep, FWTools (up to version 4.2.7 now) and the RColorBrewer package as well.  </p>
<p>One item to point out as well,  I had to add a specific reference to the &#8220;RColorBrewer&#8221; package as well, which your version did not include.  </p>
<p>Thanks for making this available.  There is some R based processing I&#8217;ve been thinking of doing with the GFS ensemble for some time.  This gets me started.  </p>
<p>Jan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joe</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-189</link>
		<dc:creator>joe</dc:creator>
		<pubDate>Sat, 25 Sep 2010 17:59:37 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-189</guid>
		<description>Hi Jan

I used wgrib2 executables available here:

ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib2/Windows_XP/</description>
		<content:encoded><![CDATA[<p>Hi Jan</p>
<p>I used wgrib2 executables available here:</p>
<p><a href="ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib2/Windows_XP/" rel="nofollow">ftp://ftp.cpc.ncep.noaa.gov/wd51we/wgrib2/Windows_XP/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-188</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Sat, 25 Sep 2010 11:45:48 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-188</guid>
		<description>A related windows question: for the line: 

shell(paste(&quot;wgrib2 -s &quot;,t,&quot; &#124; grep \&quot;TMP:2 m\&quot; &#124; wgrib2 -i &quot;,t,&quot; -netcdf &quot;,tmp,sep=&quot;&quot;),intern=T)

how did you get wgrib2 to run in windows?   I can find where I might download a windows ready version.</description>
		<content:encoded><![CDATA[<p>A related windows question: for the line: </p>
<p>shell(paste(&#8220;wgrib2 -s &#8220;,t,&#8221; | grep \&#8221;TMP:2 m\&#8221; | wgrib2 -i &#8220;,t,&#8221; -netcdf &#8220;,tmp,sep=&#8221;"),intern=T)</p>
<p>how did you get wgrib2 to run in windows?   I can find where I might download a windows ready version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joe</title>
		<link>http://joewheatley.net/ensemble-prediction/comment-page-1/#comment-187</link>
		<dc:creator>joe</dc:creator>
		<pubDate>Fri, 24 Sep 2010 10:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://joewheatley.net/?p=1770#comment-187</guid>
		<description>Hi Juan

Yes. The graphs were produced running R (2.10 I think) on windows.</description>
		<content:encoded><![CDATA[<p>Hi Juan</p>
<p>Yes. The graphs were produced running R (2.10 I think) on windows.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

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

