Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mateodelnorte/ozone
https://github.com/mateodelnorte/ozone
javascript noaa node ozone weather
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/mateodelnorte/ozone
- Owner: mateodelnorte
- Created: 2013-04-16T05:43:31.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T20:11:37.000Z (about 1 year ago)
- Last Synced: 2024-12-17T08:52:39.374Z (about 1 month ago)
- Topics: javascript, noaa, node, ozone, weather
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/mateodelnorte/ozone.svg?branch=master)](https://travis-ci.org/mateodelnorte/ozone)
ozone
=====ozone is a simple wrapper around the NOAA national weather service's publicly exposed ozone levels. It parses the values from http://airquality.weather.gov/probe_aq_data.php and returns them in json form.
How to use it:
Require forecast.io
```
var Ozone = require('ozone');
var ozone = new Ozone();
```Make a call to the API using the get method.
```
ozone.get(latitude, longitude, function (err, res, data) {
if (err) throw err;
log('res: ' + util.inspect(res));
log('data: ' + util.inspect(data));
});
```
Data is returned in an object with a data property, which is an array of objects each containing time, an eight hour average, and a one hour average. All ozone levels are marked in parts per billion.
```
{ data:
[ { ozoneEndingTime: 1367429412000,
oneHourAverage: '55',
eightHourAverage: '44' },
{ ozoneEndingTime: 1367433012000,
oneHourAverage: '59',
eightHourAverage: '47' },
{ ozoneEndingTime: 1367436612000,
oneHourAverage: '64',
eightHourAverage: '51' },
{ ozoneEndingTime: 1367440212000,
oneHourAverage: '68',
eightHourAverage: '55' },
{ ozoneEndingTime: 1367443812000,
oneHourAverage: '72',
eightHourAverage: '59' },
{ ozoneEndingTime: 1367447412000,
oneHourAverage: '76',
eightHourAverage: '62' },
{ ozoneEndingTime: 1367451012000,
oneHourAverage: '77',
eightHourAverage: '66' },
{ ozoneEndingTime: 1367454612000,
oneHourAverage: '68',
eightHourAverage: '68' },
{ ozoneEndingTime: 1367458212000,
oneHourAverage: '57',
eightHourAverage: '68' },
{ ozoneEndingTime: 1367461812000,
oneHourAverage:
...
```