Thanks for that, it also showed me the way to pull XML variables.  It seemed a 
bit slow but it could just be my work connection today.  I wonder if there is a 
way of getting the central London weather instead of the airport stats?

I also am checking out the Regex stuff on the houseoffusion.com website.

Thanks to all,

Saturday


---------- Original Message ----------------------------------
From: Sean Corfield <[EMAIL PROTECTED]>
Reply-To: [email protected]
Date:  Wed, 5 Jan 2005 06:00:14 -0800

>On Wed,  5 Jan 2005 06:45:06 -0500, Stuart Kidd <[EMAIL PROTECTED]> wrote:
>> I've been searching around for a weather tag to pull London (UK) weather but 
>> seem to just find streams of US tags instead.  Does anyone know of a good UK 
>> one?
>> 
>> It would good to know what the forecast for the day is (centigrade) and what 
>> the actual temperature is now (centigrade).
>
>CFMX? Use the global weather web service.
>
><cfset ws = 
>createObject("webservice","http://live.capescience.com/wsdl/GlobalWeather.wsdl";)
>/>
><cfset stations = "LHR,LGW,DUB" />
><cfloop list="#stations#" index="station">
><cfset report = ws.getWeatherReport(station) />
>       <cfoutput>#station#</cfoutput>: <cfdump var="#report#" expand="false" />
>       Ambient temperature: <cfdump var="#report.temperature.ambient#" />
>       Precipitation: <cfdump var="#report.precipitation#" />
>       Extremes: <cfdump var="#report.extremes#" />
>       Visibility: <cfdump var="#report.visibility.distance#" />
>       Wind: <cfdump var="#report.wind.prevailing_speed#" />
></cfloop>
>-- 
>Sean A Corfield -- http://www.corfield.org/
>Team Fusebox -- http://www.fusebox.org/
>Breeze Me! -- http://www.corfield.org/breezeme
>Got Gmail? -- I have 5 invites to give away!
>
>"If you're not annoying somebody, you're not really alive."
>-- Margaret Atwood
>
>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Get the mailserver that powers this list at 
http://www.houseoffusion.com/banners/view.cfm?bannerid=17

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189365
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to