No commit activity in last 3 years
No release in over 3 years
search Kanazawa Loop Bus location
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

 Project Readme

KanazawaLoopBus

石川県金沢市の金沢周遊バスの位置を取得できます.
データは次のサイトから取得しています. http://vbusloc.hokutetsu.co.jp/bus/?rno=1&lang=jp
サイトの構造が変化するとデータが取得できなくなるので注意してください.

Installation

Add this line to your application's Gemfile:

gem 'kanazawa_loop_bus'

And then execute:

$ bundle

Or install it yourself as:

$ gem install kanazawa_loop_bus

Usage

service = KanazawaLoopBus::BusLocationService.new

service.fetch_time # データを取得した時間
service.buses[0].name # バスの名前(鏡花号,秋声号,犀星号).

# バスのおおよその位置を取得
service.buses[0].previous_stop.name # 前のバス停の名前
service.buses[0].next_stop.name # 次のバス停の名前

service.buses[0].next_stop.next.name # 次のバス停のさらに次のバス停の名前
service.buses[0].previous_stop.prev.name # 前のバス停のさらに前のバス停の名前

# データの再取得
service.refetch!

TODO

  • バス停の緯度経度を取得できるようにする

NOTE

  • ruby 2.0.0-p0で動作確認済み

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request