Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

london_transport

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

london_transport

  • 2.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

London Transport

A TFL API consumer to turn the TFL API into useful, easy to parse data

Installation

Add gem 'london_transport' to your gem file bundle install

Set the TFL app key and id with:

LondonTransport.app_key = 'your-app-key'
LondonTransport.app_id = 'your-app-id'

Usage

Find the nearest tube stations from a long/lat value:

transport = LondonTransport::Tube.new(longitude: -0.1440493, latitude: 51.5152117)

transport.stations will then return an array of the nearest 3 tube stations containing a hash with their their distances (in metres) and lines, to the point specified, within 500m.

[
    {
      "Oxford Circus Underground Station" => {
        distance: => 147.70533261648208,
        modes: ["tube"],
        lines: ["bakerloo", "central", "victoria"]
    },
    {
      "Bond Street Underground Station" => {
        distance: 403.48258984823457,
        modes: ["tube"],
        lines: ["central", "jubilee"]
      }
    }
]

To set the size of the radius, just add radius to the initialisation attributes (radius is in metres): transport = LondonTransport::Tube.new(longitude: -0.1440493, latitude: 51.5152117, radius: 600)

To return more than 3 stations, simply add the number you want as an argument on the stations method: transport.stations(20)

FAQs

Package last updated on 20 Aug 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc