woeid
v2.0.3
Published
Compute Yahoo! Where On Earth IDs for all countries
Downloads
445
Maintainers
Readme
woeid
Compute Yahoo! Where On Earth IDs for all countries.
Installation
npm install --save woeid
Usage
getWoeid
const woeid = require('woeid');
woeid.getWoeid('FRA');
// {
// 'country': 'France',
// 'woeid': 23424819,
// 'iso-3166-alpha3': 'FRA',
// 'iso-3166-alpha2': 'FR'
// }
woeid.getWoeid('FR');
// {
// 'country': 'France',
// 'woeid': 23424819,
// 'iso-3166-alpha3': 'FRA',
// 'iso-3166-alpha2': 'FR'
// }
getCountry
const woeid = require('woeid');
woeid.getCountry(23424819);
// {
// 'country': 'France',
// 'woeid': 23424819,
// 'iso-3166-alpha3': 'FRA',
// 'iso-3166-alpha2': 'FR'
// }