项目作者: tachyons

项目描述 :
Ruby wrapper for Bangalore Metropolitan Transport Corporation BMTC Intelligent Transport System (ITS) API
高级语言: Ruby
项目地址: git://github.com/tachyons/bmtc.git
创建时间: 2016-05-28T17:24:49Z
项目社区:https://github.com/tachyons/bmtc

开源协议:MIT License

下载


Bmtc

Build Status

Bangalore Metropolitan Transport Corporation BMTC recently released its Intelligent Transport System (ITS) , But as of now there is no public api available . This is an reverse engineering approach to solve the issue

API Reference : https://github.com/tachyons/bmtc_api

Installation

Add this line to your application’s Gemfile:

  1. gem 'bmtc'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install bmtc

Usage

Get live bus status between stations

  1. Bmtc::Bus.buses("Agara Junction","Shanthinagara")

Get all stops in a route

  1. Bmtc::Route.stops_by_route_id(route_id)

Bus time table

  1. Bmtc::Route.time_table("340-A")

Search for bustop

  1. Bmtc::BusStop.search <location>
  2. Bmtc::BusStop.search "hsr"

Nearest bustop

  1. Bmtc::BusStop.nearest_stop <latitude>,<longitude>

Buses in a stop

  1. Bmtc::BusStop.buses_in_stop <bus_stop_id>

Get ttmc list

  1. Bmtc::TTMC.all

Get route map

  1. BMTC::route_map <route_id>
  2. BMTC::route_map "171"

Get Trip fare

  1. BMTC.trip_fare(source: "HSR CPWD Quarters",destination:"Shanthinagara TTMC",service_type: :ordinary,no_adults: 1)

Service types can be either

  • ordinary
  • vajra
  • vayu_vajra
  • atal_sarige
  • nice_service
  • bengaluru_darshini

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/tachyons/bmtc. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.