0.01
No commit activity in last 3 years
No release in over 3 years
A Ruby library for consuming NOAA National Weather Service severe weather alerts.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 2.9.0
~> 2.2.2
~> 1.8.7

Runtime

~> 0.8.2
 Project Readme

Disclaimer

This library is not maintained. It may not work as expected.

noaa-alerts

A library for consuming and formatting NOAA National Weather Service alerts.

Installation

Add this line to your application's Gemfile:

gem 'noaa-alerts'

And then execute:

$ bundle

Or install it yourself as:

$ gem install noaa-alerts

Usage

Instantiate Noaa::Client with a two letter US state abbreviation. The result is an array of Noaa::Alert objects relevant attributes (description, event, severity, locations, etc).

require 'noaa-alerts'
noaa = Noaa::Client.new('ny')
alert = noaa.alerts[0]

puts alert.locations.join(', ')    # => 'Rockland, Westchester'
puts alert.description             # => 'THE NATIONAL WEATHER SERVICE IN UPTON NY HAS ISSUED A\n* SEVERE THUNDERSTORM WARNING FOR...'
puts alert.event                   # => 'Special Weather Statement'
...

Requirements

Ruby 1.9

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request