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

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189360
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=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to