forked from noi-techpark/odh-mentor-otp
-
Notifications
You must be signed in to change notification settings - Fork 3
/
router-config.json
45 lines (45 loc) · 1007 Bytes
/
router-config.json
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
41
42
43
44
45
{
"updaters": [
{
"type": "stop-time-updater",
"sourceType": "gtfs-http",
"frequencySec": 60,
"feedId": "${GTFS_FEED_ID}",
"url": "${GTFS_RT_URL}"
},
{
"type": "bike-rental",
"frequencySec": 120,
"sourceType": "gbfs",
"network": "BZ",
"url": "${GBFS_HOST}/bz/${GBFS_VERSION}/"
},
{
"type": "bike-rental",
"frequencySec": 120,
"sourceType": "gbfs",
"network": "ME",
"url": "${GBFS_HOST}/me/${GBFS_VERSION}/"
},
{
"type": "bike-rental",
"frequencySec": 120,
"sourceType": "gbfs",
"network": "PAPIN",
"url": "${GBFS_HOST}/papin/${GBFS_VERSION}/"
},
{
"type": "car-rental-updater",
"sourceType": "car2go",
"frequencySec": 30,
"vehiclesUrl": "${CARSHARING_HOST}/carsharing/vehicles.json",
"regionsUrl": "${CARSHARING_HOST}/carsharing/regions.json"
},
{
"type": "car-park",
"sourceType": "park-and-ride",
"frequencySec": 60,
"url": "${PARKING_HOST}/parking/park-ride.json"
}
]
}