module MetofficeDatapoint

Public: Provides a simple wrapper to the UK's Met Office DataPoint API.

To use this gem, you'll need to register and obtain your own API Key.
See http://www.metoffice.gov.uk/datapoint/support/getting-started

Constants

VERSION

Public: Version number, following Semantic Versioning 2.0.0. See semver.org/.

Public Class Methods

new(options={}) click to toggle source

Public: Alias for MetofficeDatapoint::Client.new

Examples

MetofficeDatapoint.new(api_key: 'your_api_key')

Returns MetofficeDatapoint::Client.

# File lib/metoffice_datapoint.rb, line 23
def new(options={})
  MetofficeDatapoint::Client.new(options)
end