Skrohk / Data-vizualization-bicycles

The cycling policy of recent years has been greatly improved and the health context has greatly influenced transport. The main goal of this project is to observe the evolution of the bicycles, cycling infrastructures and remaining problems in Paris.

Home Page:https://bike-the-way.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Data visualization about bicycles in Paris

A preview of this project is available here.

Bike the way project

Context

This project has been developped by two students of the engineering school Centrale Lyon interested in sustainable development and soft mobility (Lucas Ruston and Gaëtan Gelineau). It has been developed during the Centrale Lyon's data visualization course.

The cycling policy of recent years has been greatly improved and the health context has greatly influenced transport. Therefore, the goal of this project is to observe the evolution of the bicycles, cycling infrastructures and remaining problems in Paris. This project use multiple data sources : Open Data from Paris city, data from the "Baromètre cyclable des villes", data from the Vélib station, ect... In order to see an exhaustive list of all data used, refer to the sources section.

Project architecture

The project have been made with Vue 3, Leaflet and the D3 library. D3 graphics can be seen in the src/graph folder, the Map component (located in src/Graph.vue) contains all the data plotting on the map and the map itself.

The ruston_gelineau_rendu_data_visualisation (1).pdf contain paper models of the project for the data visualization course in Centrale Lyon.

Project setup

npm install

Compiles and hot-reloads for development

export NODE_OPTIONS=--openssl-legacy-provider
npm run serve

Compiles and minifies for production

npm run build

Lints and fixes files

npm run lint

Sources used for this project

  • The counter location dataset from Paris Open Data website : here
  • The counter dataset from Paris Open Data website : here
  • The dataset from the FUB about the opinion provided by cyclists : here
  • The vélib location dataset : here
  • Length of bicycle lanes from Paris Open Data website here
  • Accidents involving bicycles here

Data formatting

The datasets used in this projet are located in the public/data folder, along with some scripts used to parse and format them. To avoid loading all the data at once in the website (which would result in really slow loading time), this web app is loading each dataset separately when needed (for instance when clicking on a specific counter, the graph data for that counter is loaded)

As explained above, most of this data was obtained from open data websites, and we used a scraping script (public/data/scrapper.js) to fetch all the counters datasets and format them.

Some formatting and filtering was also done in the script public/data/computeStatistics.js and we computed the districts score with public/data/districtScores.js

The use of d3 geoContains method, combined with geojson datasets, allowed us to dynamically determine in which district of Paris a given point is located. We used this to compute data for each district's cycling score.

About

The cycling policy of recent years has been greatly improved and the health context has greatly influenced transport. The main goal of this project is to observe the evolution of the bicycles, cycling infrastructures and remaining problems in Paris.

https://bike-the-way.netlify.app/


Languages

Language:Vue 45.6%Language:JavaScript 27.8%Language:TypeScript 25.3%Language:HTML 1.2%Language:CSS 0.1%