Back to project page bike-friend.
The source code is released under:
GNU General Public License
If you think the Android project bike-friend listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.lemoulinstudio.bikefriend.ubike; /*from w w w .j a va 2 s . c o m*/ import com.lemoulinstudio.bikefriend.InternetStationProvider; /** * * @author Vincent Cantin */ public class TaipeiStationProvider extends InternetStationProvider<YouBikeStation> { public TaipeiStationProvider() { //super("http://opendata.dot.taipei.gov.tw/opendata/gwjs_cityhall.json", // new YouBikeStationJsonParserV1()); super("http://its.taipei.gov.tw/atis_index/aspx/Youbike.aspx?Mode=1", new YouBikeStationCSVParserV1()); } }