airport-timezone

1.1.1 • Public • Published

airport-timezone

A list of all the airports and their timezone information including gmt/dst offsets

Data sourced from https://github.com/opentraveldata/opentraveldata/blob/master/opentraveldata/optd_por_public.csv

If the data in this repo is out of date then clone it and run npm run update. Please consider creating a pull request with any updates.

Usage

Find timezone information for JFK:

var airportTimezone = require('airport-timezone');
var jfk = airportTimezone.filter(function(airport){
  return airport.code === 'JFK';
})[0];

Returns:

{
  code: 'JFK',
  timezone: 'America/New_York',
  offset: { gmt: -5, dst: -4 }
}

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i airport-timezone

    Weekly Downloads

    2,116

    Version

    1.1.1

    License

    MIT

    Unpacked Size

    2.94 MB

    Total Files

    5

    Last publish

    Collaborators

    • dereke