bird-locations

2.0.3 • Public • Published

bird-list

Database of locations for ebird

How to use

npm install --save bird-locations
var locations = require('bird-locations');
 
locations.getByCode('US').then((data) => {
    // Metadata for a bird
    console.log(data);
 
    /*
        {
            countryCode: 'US',
            localAbbrev: 'US',
            name: 'United States',
            nameLong: 'United States of America',
            nameShort: '',
        }
    */
}).catch((error) => {
    console.log(error);
})

API

getAll()

Return all locations

    locations.getAll()

getByCode(code)

Return data for a location

    locations.getByCode(code)

getNiceName(result)

Take the result from getByCode and returns a string

    locations.getNiceName(result)

React Modules

Location search

A wrapper to react-select type-a-head for ebird locations.

var LocationsSearch = require('bird-locations/lib/search');
/**
    Location {
        code: ebird code for location
        label: Nice name of location
    }
*/
<LocationsSearch value={this.state.location} onChange={this.updateLocation} />

Readme

Keywords

none

Package Sidebar

Install

npm i bird-locations

Weekly Downloads

0

Version

2.0.3

License

UNLICENSED

Last publish

Collaborators

  • gregthebusker