| Who | When |
Messages | |
|
|
|
| Boris Mann
|
15
|
 |
|
09-03-2003 02:00 PM ET (US)
|
|
On Wednesday, September 3, 2003, at 01:33 PM, QT - Tony Collen wrote: > Dang, this quicktopic stuff is all messed up for me, so I'll > resend the message I wrote but the list didn't seem to get:
Should just be able to hit "reply" and it just works.
> openWeather is me!
I almost suspected as much when I hit somewhere by mistake and it gave me a pretty Cocoon error page :p
> I still get tons and tons of weather rss searches, I just wish I > had all the time to devote to it. I need a week off work and > school or something.
Put me down in the same request for time off.
> I'm contemplating setting up a weather-rss mailing list in > mailman, would you guys be interested in a real list by any > chance?
For now, this Quicktopic seems to meet the needs -- especially with only three people. I sent an email to Chris Heathcote, inviting him to subscribe.
If there is to be a mailing list, there needs to be a common purpose -- like developing WeatherML or something.
And actually, a blog with multiple posting permission might serve just as well...
|
| Tony Collen
|
16
|
 |
|
09-03-2003 02:05 PM ET (US)
|
|
I hit 'reply' but not 'reply all', which might have messed it up. Strange. A blog or even a wiki would be good, but I guess I got a handle on the QT so it's all good for now.
|
| Tony Collen
|
17
|
 |
|
09-25-2003 12:03 AM ET (US)
|
|
Wow. I just had a totally awesome idea, and I think I can pull it off.
I had thought about the problem of decoding raw METAR data. I found WeatherEase Toolkit, which is written in Java, and up until about 15 minutes ago I thought it was the best way to decode METAR.
In one of my classes, we've been talking about grammars, and how they relate to parsing a program. It's all interesting, but we weren't really applying it much in the class.. it would be better off as a project for a class on compilers and interpreters.
Fast forward to tonight. I was randomly poking around the site for Chaperon, a parser which "converts structured text to XML." You define a grammar, and Chaperon will produce XML output based on that. I didn't think about it in the context of how it's used.
Suddenly I put 2 and 2 together, and whammo, I figured it out. I'll write a grammar that describes a METAR report, and let Chaperon parse it. The METAR format is well defined, the problem is the order that report elements come in. Hoefully Chaperon can fix this.
So what do you guys think.. shall I forge ahead into this new territory of grammars, or should I try to shoehorn something like the WeatherEase Toolkit into openWeather?
Tony
|
| Bob Bunge
|
18
|
 |
|
11-12-2003 04:45 PM ET (US)
|
|
Interesting thread. Here at NWS we are starting to experiment with RSS feeds: http://weather.gov/alerts/We are also producing data in another xml format, CAP (Common Alerting Protocol), which is more tailored towards the hazard messages we are working with. If you have comments, filling out the survey/feedback form is the best way to ensure your comment is in the official record and will be taken into account when it's time to decide if the rss feeds should become an official product or not. Bob
|
| Tony Collen
|
19
|
 |
|
11-12-2003 04:52 PM ET (US)
|
|
Awesome!
Bob, I must compliment you and the NWS on the work you've done. It's nice to see a data format that is descriptive and useful, finally.
|
| Boris Mann
|
20
|
 |
|
11-12-2003 04:57 PM ET (US)
|
|
On Nov 12, 2003, at 4:45 PM, QT - Bob Bunge wrote: > Interesting thread. > > Here at NWS we are starting to experiment with RSS feeds: > > http://weather.gov/alerts/Thanks for the information, Bob. This looks like some really useful stuff. It would be more useful to have the entire announcement included in the RSS feed, rather than just the "header" information. I'll note it in the feedback form. > We are also producing data in another xml format, CAP (Common > Alerting Protocol), which is more tailored towards the hazard > messages we are working with. I see this actually has the full information, which may be the easiest way to work with it if people want the more detailed info. Are you aware of an XML format for describing standard, i.e. non-alert, weather forecasts? -- Boris Mann http://www.bmannconsulting.com
|
| Bob Bunge
|
21
|
 |
|
11-12-2003 05:33 PM ET (US)
|
|
>I see this actually has the full information, which may be >the easiest way to work with it if people want the more >detailed info. Yes... this allows some additional parsing for some fields as well as additional information (like the geocode tag - the county FIPS code in our case - usefull if you are doing GIS stuff). >Are you aware of an XML format for describing standard, >i.e. >non-alert, weather forecasts? Not really... just some very informal ones here and there... some discussed in this thread. Was surfing today looking (again) when I stumbled across this thread. The Weather community has had some very weather specific formats in place for many years (like METAR) that work great if you are an expert in those formats. Several attempts within the community to jump start some xml standards have apparently not seen much progress. That's one reason why we focused on these already existing formats - it made this a low hanging fruit project to help show how xml and weather data can work together. However, for me, the key is to keep it simple. An all encompassing xml schema for "weather" will be so complex (IMHO) as to be unusable. That's why, in my own mind, I tend to break it up into several areas; forecasts, alerts, current obs, hydro/water, climate, historical, etc. Also, keep your eye on this: http://weather.gov/ndfd/NWS forecasts are now being produced for 5x5km grids (not large "zones" that are somewhat based on counties) every three hours instead of every 12 hours. This digital data is mostly raw numbers from which you can build a worded forecast from using a program. Cheers, Bob >Boris Mann > http://www.bmannconsulting.com
|
| Tony Collen
|
22
|
 |
|
02-12-2004 05:08 PM ET (US)
|
|
Hey guys, Not sure if there's still interest, but I've picked up openWeather a little bit more lately. I've got a program parsing the data at http://weather.noaa.gov/pub/data/forecasts/city/ into XML, and I will have forecasts put up on the openweather site within the next couple days I would imagine. Here's the sample "raw" xml format I am using. As you can see, it's pretty well marked up. Any input on the intermediate format (which will also be provided) is welcome. I apologize if this does not come through correctly: <?xml version="1.0" ?> <fc> <header> <city>Anchorage</city> <state>AK</state> <issued> <time>Wednesday morning</time> <date>Feb 4</date> <year>2004</year> </issued> </header> <outlooks> <outlook> <period>Wednesday</period> <forecast>Cloudy, high 22, 0% chance of precipitation.</forecast> </outlook> <outlook> <period>Wednesday night</period> <forecast>Low 29, 0% chance of precipitation.</forecast> </outlook> <outlook> <period>Thursday</period> <forecast>Cloudy, high 23, 0% chance of precipitation.</forecast> </outlook> <outlook> <period>Thursday night</period> <forecast>Low 32.</forecast> </outlook> <outlook> <period>Friday</period> <forecast>High 18.</forecast></outlook> </outlooks> </fc>
|
| Boris Mann
|
23
|
 |
|
02-12-2004 05:31 PM ET (US)
|
|
Tony: On Feb 12, 2004, at 2:08 PM, QT - Tony Collen wrote: > Not sure if there's still interest, but I've picked up > openWeather a little bit more lately. I've got a program > parsing the data at > http://weather.noaa.gov/pub/data/forecasts/city/ into XML, and I > will have forecasts put up on the openweather site within the > next couple days I would imagine. Nice work. > Here's the sample "raw" xml format I am using. As you can see, > it's pretty well marked up. Any input on the intermediate format > (which will also be provided) is welcome. I apologize if this > does not come through correctly: I actually think it should be MORE marked up. Also, the DTD would be more useful than sample output... Comments on potential additional markup in-line: > <?xml version="1.0" ?> > <fc> > <header> > <city>Anchorage</city> > <state>AK</state> > <issued> > <time>Wednesday morning</time> > <date>Feb 4</date> > <year>2004</year> Is there an existing date format that can be used? Like, dc:date ? Transformations should be done earlier rather than later, IMHO. Don't know why it has to be wrapped in "header"...why not: <location> U </location> <issued> U </issued> > <forecast>Cloudy, high 22, 0% chance of > precipitation.</forecast> <forecast> <description>cloudy</description> <-- normalize case <high>22</high> <-- what about units? e.g. <high units="celsius"> <low>18</low> <precipitation>0</precipitation> </forecast>STRIPMIME_JOINLINES
|
| Boris Mann
|
24
|
 |
|
02-13-2004 01:35 AM ET (US)
|
|
|
| Kyle Fiducia
|
25
|
 |
|
04-03-2004 02:41 PM ET (US)
|
|
|
| Bob Bunge
|
26
|
 |
|
06-15-2004 10:05 PM ET (US)
|
|
|
| Matt Fury
|
27
|
 |
|
06-18-2004 09:38 AM ET (US)
|
|
Will NWS be charging a fee once this beta is up or will it be open to anyone who wants to use it?
|
| Bob Bunge
|
28
|
 |
|
06-19-2004 11:25 AM ET (US)
|
|
NWS data is in the public domain.
|
| Tony Collen
|
29
|
 |
|
06-28-2004 11:19 AM ET (US)
|
|
|
| Tony Collen
|
30
|
 |
|
11-27-2004 01:58 AM ET (US)
|
|
I know this topic has been inactive for a while, but I'm actually having freetime and I'm (re-)starting my openWeather project. I currently have a blog setup at http://blog.openweather.com/ which will be the main source of news and info regarding the project. I also have a Wiki in the works. If anyone who's on this list is still interested in weather, XML and RSS, please feel free to subscribe to the RSS feed over at the blog, or get in touch with me if you want to contribute to the project. Code, blog posting, wiki content, anything. Tony
|