<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments on: Whither the weather? Linux CLI solutions	</title>
	<atom:link href="https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/feed/" rel="self" type="application/rss+xml" />
	<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/</link>
	<description></description>
	<lastBuildDate>Fri, 15 Feb 2019 21:42:52 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.8</generator>
	<item>
		<title>
		By: lordroid		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-713025</link>

		<dc:creator><![CDATA[lordroid]]></dc:creator>
		<pubDate>Fri, 15 Feb 2019 21:42:52 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-713025</guid>

					<description><![CDATA[hi BIG POST SO NICE]]></description>
			<content:encoded><![CDATA[<p>hi BIG POST SO NICE</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: taba		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-588544</link>

		<dc:creator><![CDATA[taba]]></dc:creator>
		<pubDate>Tue, 22 May 2018 00:22:35 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-588544</guid>

					<description><![CDATA[BIG POST SO NICE]]></description>
			<content:encoded><![CDATA[<p>BIG POST SO NICE</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ?????? ????		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-588543</link>

		<dc:creator><![CDATA[?????? ????]]></dc:creator>
		<pubDate>Tue, 22 May 2018 00:21:54 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-588543</guid>

					<description><![CDATA[BIG POST]]></description>
			<content:encoded><![CDATA[<p>BIG POST</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: hotrider!!		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-524336</link>

		<dc:creator><![CDATA[hotrider!!]]></dc:creator>
		<pubDate>Mon, 21 May 2012 20:48:58 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-524336</guid>

					<description><![CDATA[After struggling getting the right Metar data and weather station info configured for weather-util ( I know nothing about weather ) and after seeing the data on http://weather.noaa.gov/pub/data/observations/metar/decoded/ is plain text I decided to write an extremely simple script to give me the basic functionality I need.

First go to weather.noaa.gov find the closest station to your location and the four letter &quot;id&quot;. Go through the http://weather.noaa.gov/pub/data/observations/metar/decoded/ index and find your four letter id??.TXT this file provides the up to date weather info. Then I wrote this script-


# Make a executable text file named weather with script and save in /usr/bin (substitute your four letter id everywhere I used mine KRIV.TXT)


#!/bin/bash
readfile=/tmp/KRIV.TXT
function downWinfo {
wget -O /tmp/KRIV.TXT weather.noaa.gov/pub/data/observations/metar/decoded/KRIV.TXT
}
downWinfo &amp;&gt; /dev/null
echo &quot;Local Time: `date`&quot;
cat $readfile
exit 0
 
Now just type weather in a terminal and it will display current weather information.
]]></description>
			<content:encoded><![CDATA[<p>After struggling getting the right Metar data and weather station info configured for weather-util ( I know nothing about weather ) and after seeing the data on <a href="http://weather.noaa.gov/pub/data/observations/metar/decoded/" rel="nofollow ugc">http://weather.noaa.gov/pub/data/observations/metar/decoded/</a> is plain text I decided to write an extremely simple script to give me the basic functionality I need.</p>
<p>First go to weather.noaa.gov find the closest station to your location and the four letter &#8220;id&#8221;. Go through the <a href="http://weather.noaa.gov/pub/data/observations/metar/decoded/" rel="nofollow ugc">http://weather.noaa.gov/pub/data/observations/metar/decoded/</a> index and find your four letter id??.TXT this file provides the up to date weather info. Then I wrote this script-</p>
<p># Make a executable text file named weather with script and save in /usr/bin (substitute your four letter id everywhere I used mine KRIV.TXT)</p>
<p>#!/bin/bash<br />
readfile=/tmp/KRIV.TXT<br />
function downWinfo {<br />
wget -O /tmp/KRIV.TXT weather.noaa.gov/pub/data/observations/metar/decoded/KRIV.TXT<br />
}<br />
downWinfo &#038;> /dev/null<br />
echo &#8220;Local Time: `date`&#8221;<br />
cat $readfile<br />
exit 0</p>
<p>Now just type weather in a terminal and it will display current weather information.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: John Jones		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-524344</link>

		<dc:creator><![CDATA[John Jones]]></dc:creator>
		<pubDate>Mon, 01 Nov 2010 18:07:16 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-524344</guid>

					<description><![CDATA[I wanted to &quot;split&quot; my  weather forecast script into four Quadrants matching my Terminal Size (80 x 24)

The weather data is handled by conkyForecast, a python script by kaivalagi found at http://ubuntuforums.org/showthread.php?t=869328
(Conky NOT required to use it!)

Script is at http://pastebin.ca/1978836
Screenie is at http://i771.photobucket.com/albums/xx360/E522260/Screenshot-trans.png

Changing terminal resolution doesn&#039;t change the output. I&#039;d need help with that detail.

Enjoy!
Peace.]]></description>
			<content:encoded><![CDATA[<p>I wanted to &#8220;split&#8221; my  weather forecast script into four Quadrants matching my Terminal Size (80 x 24)</p>
<p>The weather data is handled by conkyForecast, a python script by kaivalagi found at <a href="http://ubuntuforums.org/showthread.php?t=869328" rel="nofollow ugc">http://ubuntuforums.org/showthread.php?t=869328</a><br />
(Conky NOT required to use it!)</p>
<p>Script is at <a href="http://pastebin.ca/1978836" rel="nofollow ugc">http://pastebin.ca/1978836</a><br />
Screenie is at <a href="http://i771.photobucket.com/albums/xx360/E522260/Screenshot-trans.png" rel="nofollow ugc">http://i771.photobucket.com/albums/xx360/E522260/Screenshot-trans.png</a></p>
<p>Changing terminal resolution doesn&#8217;t change the output. I&#8217;d need help with that detail.</p>
<p>Enjoy!<br />
Peace.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Laden		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-524343</link>

		<dc:creator><![CDATA[Greg Laden]]></dc:creator>
		<pubDate>Thu, 07 Oct 2010 20:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-524343</guid>

					<description><![CDATA[Nemo, I do, actually.  (Do more.) See: http://tinyurl.com/24psyze

I had some little problems with maximus, funny behavior, but it did essentially work.  

Tomorrow, I&#039;ll be posting on accessing my Google Calendar with the command line.  You&#039;ll love it. ]]></description>
			<content:encoded><![CDATA[<p>Nemo, I do, actually.  (Do more.) See: <a href="http://tinyurl.com/24psyze" rel="nofollow ugc">http://tinyurl.com/24psyze</a></p>
<p>I had some little problems with maximus, funny behavior, but it did essentially work.  </p>
<p>Tomorrow, I&#8217;ll be posting on accessing my Google Calendar with the command line.  You&#8217;ll love it. </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nemo		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-524342</link>

		<dc:creator><![CDATA[Nemo]]></dc:creator>
		<pubDate>Thu, 07 Oct 2010 20:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-524342</guid>

					<description><![CDATA[&lt;blockquote&gt;... I&#039;ve got my laptop maximally configured to provide real estate to any app that opens on it.&lt;/blockquote&gt;

You could do more. On my desktop, I have everything on a single Gnome panel (vs. the usual two), and that one is set to auto-hide. On my netbook, I use a netbook-oriented distro that includes the Maximus window manager, which eliminates the panels as well as auto-maximizing.

I also have two fewer toolbars in my Firefox. But I still lose almost a quarter of the vertical screen space, until I hit F11.]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8230; I&#8217;ve got my laptop maximally configured to provide real estate to any app that opens on it.</p></blockquote>
<p>You could do more. On my desktop, I have everything on a single Gnome panel (vs. the usual two), and that one is set to auto-hide. On my netbook, I use a netbook-oriented distro that includes the Maximus window manager, which eliminates the panels as well as auto-maximizing.</p>
<p>I also have two fewer toolbars in my Firefox. But I still lose almost a quarter of the vertical screen space, until I hit F11.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Laden		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-524341</link>

		<dc:creator><![CDATA[Greg Laden]]></dc:creator>
		<pubDate>Thu, 07 Oct 2010 19:07:31 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-524341</guid>

					<description><![CDATA[Plus, that site has the mouseover comments, which may be the info you are REALLY looking for.  Will lynx get at them?  I assume they are hidden in the javascript or something.]]></description>
			<content:encoded><![CDATA[<p>Plus, that site has the mouseover comments, which may be the info you are REALLY looking for.  Will lynx get at them?  I assume they are hidden in the javascript or something.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Laden		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-524340</link>

		<dc:creator><![CDATA[Greg Laden]]></dc:creator>
		<pubDate>Thu, 07 Oct 2010 19:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-524340</guid>

					<description><![CDATA[I was thinking the tags might be useful.  For example, I wrote a script that would mine a science domain for species names, recognizing them as having two or three words surrounded by em codes.  When pointed at a site like Animal Diversity Web, it did very well, virtually no errors, since emphasis typeface is almost never used there unless for a species name.

In your case, a particular unique div may include all the stuff you are looking for.  ]]></description>
			<content:encoded><![CDATA[<p>I was thinking the tags might be useful.  For example, I wrote a script that would mine a science domain for species names, recognizing them as having two or three words surrounded by em codes.  When pointed at a site like Animal Diversity Web, it did very well, virtually no errors, since emphasis typeface is almost never used there unless for a species name.</p>
<p>In your case, a particular unique div may include all the stuff you are looking for.  </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: James McCann		</title>
		<link>https://gregladen.com/blog/2010/10/07/whither-the-weather-linux-cli/#comment-524339</link>

		<dc:creator><![CDATA[James McCann]]></dc:creator>
		<pubDate>Thu, 07 Oct 2010 18:57:06 +0000</pubDate>
		<guid isPermaLink="false">http://scienceblogs.com/gregladen/2010/10/07/whither-the-weather-linux-cli/#comment-524339</guid>

					<description><![CDATA[lynx renders the text with --dump, which is what I want.  Does wget have a text rendering feature?  I don&#039;t think so but I could be wrong.  If the page were XML I&#039;d think about Pyxie, but I&#039;d prefer not to deal w/ parsing the tags.

I think the MM5 data these maps are based on is publicly available, but that would be non-trivial although not hard.  It is a fun idea, but I already have tons of personal coding projects to work on.
]]></description>
			<content:encoded><![CDATA[<p>lynx renders the text with &#8211;dump, which is what I want.  Does wget have a text rendering feature?  I don&#8217;t think so but I could be wrong.  If the page were XML I&#8217;d think about Pyxie, but I&#8217;d prefer not to deal w/ parsing the tags.</p>
<p>I think the MM5 data these maps are based on is publicly available, but that would be non-trivial although not hard.  It is a fun idea, but I already have tons of personal coding projects to work on.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
