4.1.0 • Published 1 year ago

db-stations-autocomplete v4.1.0

Weekly downloads
6
License
ISC
Repository
github
Last release
1 year ago

db-stations-autocomplete

db-stations-autocomplete provides a stations search for Deutsche Bahn. Pulls its data from db-stations@4 (There's also db-hafas-stations-autocomplete, which pulls its data from db-hafas-stations).

npm version ISC-licensed minimum Node.js version support me via GitHub Sponsors chat with me on Twitter

Installing

npm install db-stations-autocomplete

Usage

autocomplete(query, results = 3, fuzzy = false, completion = true)
import {autocomplete} from 'db-stations-autocomplete'

autocomplete('Münch', 3)

This returns stations in a reduced form of the Friendly Public Transport Format. To get all details, pass use db-stations.

[ {
	id: '8000261', // München Hbf
	relevance: 0.8794466403162056,
	score: 11.763480191996974,
	weight: 2393.2
}, {
	id: '8004128', // München Donnersbergerbrücke
	relevance: 0.8794466403162056,
	score: 9.235186720706798,
	weight: 1158
}, {
	id: '8004132', // München Karlsplatz
	relevance: 0.8794466403162056,
	score: 9.144716179768407,
	weight: 1124.3
} ]

If you set fuzzy to true, words with a Levenshtein distance <= 3 will be taken into account. This is a lot slower though (Apple M1, Node v19.1):

testperformance
non-fuzzy – berlin charlottenburg704 ops/sec
fuzzy – berlin charlottenbrug (note the typo)204 ops/sec

Setting completion to false speeds things up:

testperformance
completion – Münc Hbf477 ops/sec
no completion – Münc Hbf2115 ops/sec

Contributing

If you have a question or need support using db-stations-autocomplete, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, use the issues page.

3.0.2

1 year ago

4.1.0

1 year ago

4.0.0

1 year ago

3.0.1

3 years ago

3.0.0

4 years ago

2.2.0

5 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago