Skip to content

Commit

Permalink
add missing companies
Browse files Browse the repository at this point in the history
  • Loading branch information
eskerda committed Nov 25, 2023
1 parent aef4e79 commit 4034fb4
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 13 deletions.
3 changes: 2 additions & 1 deletion pybikes/data/controlnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"country": "AR",
"name": "En la Bici",
"latitude": -32.8895,
"longitude": -68.8433
"longitude": -68.8433,
"company": ["Municipalidad de la Ciudad de Mendoza"]
},
"feed_url": "https://enbici.ciudaddemendoza.gob.ar/bici2/mobile/EstacionesUsuarioWeb"
}
Expand Down
34 changes: 24 additions & 10 deletions pybikes/data/gbfs.json
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,8 @@
"country":"NO",
"name":"Bysykkel",
"longitude":10.752245,
"city":"Oslo"
"city":"Oslo",
"company": ["Urban Sharing AS"]
},
"feed_url": "https://gbfs.urbansharing.com/oslobysykkel.no/gbfs.json"
},
Expand All @@ -597,7 +598,8 @@
"country":"NO",
"name":"Bysykkel",
"longitude":5.322054,
"city":"Bergen"
"city":"Bergen",
"company": ["Urban Sharing AS"]
},
"feed_url": "https://gbfs.urbansharing.com/bergenbysykkel.no/gbfs.json"
},
Expand All @@ -608,7 +610,8 @@
"country":"NO",
"name":"Bysykkel",
"longitude":10.3936781,
"city":"Trondheim"
"city":"Trondheim",
"company": ["Urban Sharing AS"]
},
"feed_url": "https://gbfs.urbansharing.com/trondheimbysykkel.no/gbfs.json"
},
Expand Down Expand Up @@ -722,7 +725,8 @@
"name": "Verona Bike",
"country": "IT",
"latitude": 45.438611,
"longitude": 10.992778
"longitude": 10.992778,
"company": ["IGP S.p.A.", "Urban Sharing AS"]
},
"feed_url": "https://gbfs.urbansharing.com/bikeverona.it/gbfs.json"
},
Expand Down Expand Up @@ -823,7 +827,8 @@
"city": "Belfort",
"name": "Optymo",
"longitude": 6.849444,
"country": "FR"
"country": "FR",
"company": ["SMTC 90"]
},
"feed_url": "https://belfort-gbfs.klervi.net/gbfs/gbfs.json"
},
Expand All @@ -835,7 +840,8 @@
"city": "A Coruña",
"latitude": 43.3623,
"longitude": -8.4115,
"country": "ES"
"country": "ES",
"company": ["PBSC Urban Solutions"]
},
"feed_url": "https://acoruna.publicbikesystem.net/customer/gbfs/v2/gbfs.json"
},
Expand All @@ -846,7 +852,8 @@
"city": "Aachen",
"name": "Velocity",
"longitude": 6.083611,
"country": "DE"
"country": "DE",
"company": ["Velocity Region Aachen GmbH"]
},
"feed_url": "https://nitro.openvelo.org/aachen/velocity/v2/gbfs.json"
},
Expand All @@ -857,7 +864,8 @@
"city": "Québec",
"name": "àVélo",
"longitude": -71.2168,
"country": "CA"
"country": "CA",
"company": ["PBSC Urban Solutions"]
},
"feed_url": "https://quebec.publicbikesystem.net/customer/gbfs/v2/gbfs.json"
},
Expand All @@ -868,7 +876,8 @@
"city": "Saguenay",
"name": "Accès Vélo",
"longitude": -71.083333,
"country": "CA"
"country": "CA",
"company": ["PBSC Urban Solutions"]
},
"feed_url": "https://saguenay.publicbikesystem.net/customer/gbfs/v2/gbfs.json",
"force_https": "true"
Expand All @@ -880,7 +889,12 @@
"city": "Cd de M\u00e9xico",
"name": "EcoBici",
"longitude": -99.133208,
"country": "MX"
"country": "MX",
"company": [
"5M2 S.A. DE C.V.",
"BKT BICIPÚBLICA S.A. DE C.V.",
"Lyft Inc."
]
},
"feed_url": "https://gbfs.mex.lyftbikes.com/gbfs/gbfs.json"
},
Expand Down
1 change: 1 addition & 0 deletions pybikes/data/velib.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"name": "OPEN LICENCE 2.0",
"url": "etalab.gouv.fr/wp-content/uploads/2018/11/open-licence.pdf"
},
"company": ["Smovengo"],
"ebikes": true
},
"feed_url": "https://velib-metropole-opendata.smoove.pro/opendata/Velib_Metropole/gbfs.json"
Expand Down
4 changes: 2 additions & 2 deletions pybikes/deutschebahn.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ class Callabike(DB):
# All networks within use the same data feed
unifeed = True

meta = {
meta = dict({
'name': 'Call-A-Bike',
}
}, ** DB.meta)

provider = 'CallABike'

Expand Down

0 comments on commit 4034fb4

Please sign in to comment.