nowcast-aqi

0.0.3 • Public • Published

nowcast-aqi

Build Status

Nowcast AQI calculator

Usage

let nowcast = require('nowcast-aqi')

// nowcast PM
let last12Hours = [13, 16, 10, 21, 74, 64, 53, 82, 90, 75, 80, 50]
nowcast.pm(last12Hours)  // '17.413919413919412'

// nowcast ozone
let last8Hours = [0.14, 0.16, 0.15, 0.14, 0.11, 0.12, 0.12, 0.11]
nowcast.ozone(last8Hours)  // '0.14145147795319638'

// nowcast PM Asian (see proposal at http://aqicn.org/faq/2015-03-15/air-quality-nowcast-a-beginners-guide/)
let last3Hours = [89, 77, 10]
nowcast.pmAsian(last3hours)  // '86.91493659521939'

// nowcast custom hours and weight factor
let last5Hours = [66, 50, 62, 100, 98]
nowcast.custom(last5hours)  // '64.58064516129032'

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.3
    3
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.3
    3
  • 0.0.2
    1
  • 0.0.1
    1

Package Sidebar

Install

npm i nowcast-aqi

Weekly Downloads

4

Version

0.0.3

License

GPL-3.0

Last publish

Collaborators

  • chatch