Socket
Socket
Sign inDemoInstall

@stockholm-transit/locations

Package Overview
Dependencies
9
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @stockholm-transit/locations

API for Storstockholms Lokaltrafiks' locations


Version published
Maintainers
1
Install size
11.3 kB
Created

Readme

Source

🇸🇪 Storstockholms Lokaltrafiks (SL) Location lookup API 🚆

  • With this API, you can get information about a place by submitting parts of the place name. You can choose to search only for stop areas or stops, addresses and locations.
  • Trafiklab documentation is available here.

Usage

import * as locations from '@stockholm-transit/locations';
import { LocationParameters } from '@stockholm-transit/locations';

locations.init({ apiKey: process.env.STOCKHOLM_LOCATIONS_API_KEY });

const params: LocationParameters = { q: 'Stockholm', maxResults: 10 };
locations.query(params).then((data) => res.send(data.ResponseData));

Functions

init

(config: StockholmBaseConfig) => void

query

(params: LocationParameters) => Promise<LocationResponse | undefined>

Types

StockholmBaseConfig

ParameterTypeRequiredDescription
apiKeystringtrueTrafiklab API key.
  • Read how to generate Trafiklab API keys here.

LocationParameters

ParameterTypeRequiredDescriptionDefault
qstringtrueThe search string. (Max. 20 characters).
stationsOnlybooleanfalseIf true only stops are returned.true
maxResultsnumberfalseMaximum number of results from 0-50.10
typeLocationParameterTypefalseType filter for places."ALL"

LocationParameterType

  • "S": Search for stations only.
  • "P": Search for only POI (points of interest).
  • "A": Search only for addresses.
  • "SP": Search for stations and POI.
  • "SA": Search only for stations and Addresses.
  • "AP": Search only for addresses and POI.
  • "ALL": Search for addresses, stations and POI.

Building

Run npx nx build @stockholm-transit/locations to build the library.

Running unit tests

Run npx nx test @stockholm-transit/locations to execute the unit tests via Jest.

Keywords

FAQs

Last updated on 28 Jul 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc