Coder Social home page Coder Social logo

paulmaly / weather-man Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bhdouglass/weather-man

0.0 2.0 0.0 179 KB

A JavaScript weather library with multiple weather povider options

License: GNU General Public License v3.0

JavaScript 94.38% HTML 5.62%

weather-man's Introduction

WeatherMan

A JavaScript weather library with multiple weather povider options. Currently it supports the following weather providers: Yahoo, OpenWeatherMap, YR.no, Dark Sky (formerly Forecast.io), Weather Underground, Weather Unlocked, MAAS (Mars) and AQICN.org (for air quality data). Use it in NodeJS, the browser, the command line or even with your Pebble app!

Install

  • For JavaScript usage: npm install --save weather-man
  • For CLI usage: npm install -g weather-man

Usage

NodeJS

var WeatherMan = require('weather-man');

var wm = new WeatherMan(WeatherMan, 'apikey');
wm.getCurrent(latitude, longitude).then(function(result) {
    //If the result is for weather
    console.log(result.getTemperature(WeatherMan.CELCIUS));
    console.log(result.getWindChill(WeatherMan.FAHRENHEIT));
    console.log(result.getHeatIndex(WeatherMan.KELVIN));
    console.log(result.getWindSpeed(WeatherMan.MILES)); //Or WeatherMan.KILOMETERS or WeatherMan.METERS
    console.log(result.getHumidity());
    console.log(result.getCondition());
    console.log(result.getSunrise());
    console.log(result.getSunset());

    //If the result is for air quality
    console.log('AQI: ' + result.getAQI());
    console.log('Location: ' + result.getLocation());
    console.log('AQI String: ' + result.getAQIString());
    console.log('AQI Color: ' + result.getAQIColor());
});

Browser & PebbleKit

Grab a copy of example/weather-man.js and include it in your project, then follow the NodeJS example.

CLI

weatherman --provider=darksky --lat=123 --lng=456 --units=f --apikey=apikey

License

Copyright (C) 2016 Brian Douglass

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3, as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

weather-man's People

Contributors

bhdouglass avatar paulmaly avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.