Edited (version 78)
Challenge statement
(French below)
With the Climate Ticker project, Climate Alliance Switzerland and Digital Alliance want to evaluate the climate policies of Swiss cantons and municipalities. This will enable citizens concerned about the climate to put forward specific demands. For this we need data, and data on mobility is hard to find. Can you help us?
Goal: Develop an API to quantify the mobility situation of a municipality or canton, with the following data:
- Kilometers of roads with cycle tracks of acceptable quality, as a % of total road kilometrers, per municipality. Acceptable quality means a dedicated space for cyclists, not just a painted line in the middle of the road.
- Total subsidies to public transport companies, per year and per municipality + per canton
- Public transport trend per municipality + per canton: change in the total number of public transport passengers compared to the previous year
- Road traffic trend per municipality: change in average daily traffic compared to the previous year, on all cantonal roads passing through the municipality
- Motorway traffic trend by canton: change in average daily traffic compared with the previous year, on each motorway junction within the canton
Organisation: Klima-Allianz Schweiz
Avec le projet Climate Ticker, l'Alliance Climatique Suisse et l'Alliance digitale veulent évaluer les politiques climatiques des cantons et communes suisses. Cela permettra ensuite aux citoyen-ne-s concerné-e-s par le climat de mettre en avant des revendications précises. Pour cela nous avons besoin de données, et celles sur la mobilité sont difficiles à trouver. Pouvez-vous nous aider ?
But: "Disposer d'un API permettant de quantifier la situation de la mobilité d'une commune ou d'un canton, avec les données suivantes:
- Kilomètres de routes avec des pistes cyclables de qualité acceptable, en % du kilomètres de routes total, par commune. Par “qualité acceptable”, on entend un espace dédié pour les cyclistes, pas seulement un trait peint au milieu de la route."
- Total des subventions versées aux compagnies de transport public, par année et par commune + par canton
- Tendance des transports publics par commune + par canton : variation du nombre de passagers total en transport public par rapport à l’année précédente
- Tendance du trafic routier par commune : variation du trafic moyen journalier par rapport à l’année précédente, sur toutes les routes cantonales traversant la commune
- Tendance du trafic autoroutier par canton : variation du trafic moyen journalier par rapport à l’année précédente, sur chaque jonction d’autoroute sur le territoire du canton
Organisation: Alliance Climatique Suisse
govtech-cycling
Setup
conda create -n govtech python=3.9
conda activate govtech
conda install -c conda-forge pyrosm
conda install -c conda-forge numpy=1.23.5
conda install -c conda-forge ipykernel
conda install -c conda-forge shapely==1.8.5
notes
- 2 minutes to get boundaries for Thurgau
- 8 minutes for get nodes/edges for Thurgau
Event finish
Project
Add script to extract nodes and edges data. (@ebezzam)
Project
data extracted through pyrosm: https://drive.switch.ch/index.php/s/WvCu1n9y6rDxVt5
https://opendata.swiss/fr/dataset/swissboundaries3d-kantonsgrenzen cantonal boundries
Add notebook. (@ebezzam)
https://www.bfs.admin.ch/bfs/fr/home/statistiques/statistique-regions/fonds-cartes/geometries-base.assetdetail.24106754.html municipality boundaries
Project
Repository updated
To understand some global issues around traffic data homogenization beyond the work of BFS Strassenverkehrszahlung, have a look at (this is not an endorsement) the GTFS community.
Here you can find all the roads in Switzerland in a convenient shapefile that you can open with GeoPandas: swissTLMregio
Initial commit (@ebezzam)
Joined the team
article that has some mentions on subsidies: https://www.sciencedirect.com/science/article/pii/S0967070X16301469#s0020
"Canton-wide, fares cover 35 per cent of operating costs for..."
Joined the team
Start
Info on cycle tracks is available for some cantons, for instance Geneva https://ge.ch/sitg/fiche/6613 and some municipalities, for instance Nyon https://map.cartolacote.ch/s/nTrn. Google maps gives info on bike lanes (choose the layer bottom left), but is not always uptodate.
there- is as well Comptage de la circulation routière - réseau principal (Office fédéral des routes OFROU) https://s.geo.admin.ch/9dc2a60895
Hi, there are a lot data from ARE https://s.geo.admin.ch/9dc2a1f2ff just browse the ARE cataloge (https://help.geo.admin.ch/?ids=32&lang=fr) ra data link can be found using the (i) button https://help.geo.admin.ch/?ids=37&lang=fr i
Joined the team
The data is awesome and I'm downloading it now!