Link | weatherbug_getalerts |
Author | Jason Huck |
Category | Utility |
Version | 8.x |
License | http://opensource.org/licenses/artistic-license.php |
Posted | 08 May 2006 |
Updated | 08 May 2006 |
More by this author... |
Returns alert conditions for given zip code via the WeatherBug API. Requires a valid WeatherBug API key.
weatherbug_getalerts( -key=$key, -zip=$zip )->first;
Click the "Download" button below to retrieve a copy of this tag, including the complete documentation and sample usage shown on this page. Place the downloaded ".inc" file in your LassoStartup folder, restart Lasso, and you can begin using this tag immediately.
define_tag( 'getalerts', -namespace='weatherbug_', -required='key', -required='zip', -priority='replace', -description='Returns alert conditions for given zip code.' ); local('url' = 'http://' + #key + '.api.wxbug.net/getalerts.aspx'); local('getparams') = array( 'acode' = #key, 'zipcode' = #zip ); local('response') = include_url( #url, -getparams=#getparams ); #response->replace(' xmlns:aws="http://www.aws.com/aws"','')&replace('aws:',''); local('xmldata') = xml(#response); local('out' = array); if(string(#xmldata->extract('//alerts/text()')->first) == 'No Alerts at this time.'); #out->insert('No Alerts at this time.'); else; local('alerttypes') = #xmldata->extract('//alert/type/text()'); local('alerttitles') = #xmldata->extract('//alert/title/text()'); iterate(#alerttypes, local('i')); local('map' = map); #map->insert(#i = #alerttitles->get(loop_count)); #out->insert(#map); /iterate; /if; return(@#out); /define_tag;
No comments
©LassoSoft Inc 2015 | Web Development by Treefrog Inc | Privacy | Legal terms and Shipping | Contact LassoSoft