forked from kurotanshi/vue-ubike-information
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
40 lines (33 loc) · 1.31 KB
/
scripts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const vm = Vue.createApp({
data () {
return {
ubikeStops: []
}
},
methods: {
timeFormat(t){
var date = [], time = [];
date.push(t.substr(0, 4));
date.push(t.substr(4, 2));
date.push(t.substr(6, 2));
time.push(t.substr(8, 2));
time.push(t.substr(10, 2));
time.push(t.substr(12, 2));
return date.join("/") + ' ' + time.join(":");
}
},
created() {
// 欄位說明請參照:
// http://data.taipei/opendata/datalist/datasetMeta?oid=8ef1626a-892a-4218-8344-f7ac46e1aa48
// sno:站點代號、 sna:場站名稱(中文)、 tot:場站總停車格、
// sbi:場站目前車輛數量、 sarea:場站區域(中文)、 mday:資料更新時間、
// lat:緯度、 lng:經度、 ar:地(中文)、 sareaen:場站區域(英文)、
// snaen:場站名稱(英文)、 aren:地址(英文)、 bemp:空位數量、 act:全站禁用狀態
fetch('https://tcgbusfs.blob.core.windows.net/blobyoubike/YouBikeTP.gz')
.then(res => res.json())
.then(res => {
// 將 json 轉陣列後存入 this.ubikeStops
this.ubikeStops = Object.keys(res.retVal).map(key => res.retVal[key]);
});
}
}).mount('#app');