1.0.0 • Published 4 years ago

mta-subway-stations v1.0.0

Weekly downloads
11
License
MIT
Repository
-
Last release
4 years ago

MTA Subway Stations

The MTA releaes Stations.csv, which includes information about each subway station. This is a port of that data into JavaScript.

Installation

npm install --save mta-subway-stations

Usage

const stations = require('mta-subway-stations');

stations is an array containing an object representation of each station:

{
  "Station ID": "1",
  "Complex ID": "1",
  "GTFS Stop ID": "R01",
  "Division": "BMT",
  "Line": "Astoria",
  "Stop Name": "Astoria - Ditmars Blvd",
  "Borough": "Q",
  "Daytime Routes": "N W",
  "Structure": "Elevated",
  "GTFS Latitude": "40.775036, -73.912034",
  "GTFS Longitude": "-73.912034"
}