steffenmllr / nearest-db-stations

Find the nearest DB Stations given a Latitude and a Longitude

Home Page:https://github.com/steffenmllr/nearest-db-stations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nearest-db-stations

Searches the nearest stations of Deutsche Bahn, using geokdbush. Data taken from the excellent db-stations package.

build status npm version ISC-licensed

Installing

npm install nearest-db-stations

Usage

const nearestStations = require('nearest-db-stations')

const latitude = 52.509647;
const longitude = 13.375944;

const stations = nearestStations(latitude, longitude);

// Output as in db-stations

API

nearestStations(longitude, latitude[, maxDistance, maxResults])

Returns an array of the closest points from a given location in order of increasing distance.

  • longitude: query point longitude.
  • latitude: query point latitude.
  • maxDistance: (optional) maximum distance in meters to search within (Infinity by default).
  • maxResults: (optional) maximum number of points to return (5 by default).

Contributing

If you have a question, found a bug or want to propose a feature, have a look at the issues page.

Data License

The Dataset is published under Creative Commons Attribution 4.0 International by Deutsche Bahn (DB).

About

Find the nearest DB Stations given a Latitude and a Longitude

https://github.com/steffenmllr/nearest-db-stations

License:ISC License


Languages

Language:JavaScript 100.0%