offsnore / wundernode

Node API for Weather Underground
MIT License
28 stars 11 forks source link

add rawtide method #15

Closed devpascoe closed 6 years ago

devpascoe commented 10 years ago

Can you please add this method to wundernode.js ??

that.rawtide = function (query, callback) {
    var path = "/rawtide/q/" + query + format;
    get(callback, null, path);
};

and

that.tide = function (query, callback) {
    var path = "/tide/q/" + query + format;
    get(callback, null, path);
};

Thanks :)

offsnore commented 6 years ago

Fixed in 24350f1. Thanks for the request, sorry for never resolving!