Skip to content

move-lab/lab-whatthestreet

Repository files navigation

The Mobility Space Report: What the Street!?

PROD
Build Status
prod Deployment

Part 2: Front & Backend

screen shot 2017-06-27 at 19 11 42

What the Street!? was derived out of the question “How do new and old mobility concepts change our cities?”. It was raised by Michael Szell and Stephan Bogner during their residency at moovel lab. With support of the lab team they set out to wrangle data of cities around the world to develop and design this unique Mobility Space Report.

What the Street!? was made out of open-source software and resources. Thanks to the OpenStreetMap contributors and many other pieces we put together the puzzle of urban mobility space seen above.

Implemented project URL: https://whatthestreet.moovellab.com/

Read more about the technical details behind The Mobility Space Report: What the Street!? on our blog: http:https://lab.moovel.com/blog/about-what-the-street

Demo Video

Codebase

The complete codebase consist of two independent parts:

  1. Data Wrangling
  2. Front & Backend

This is part 2. You can find part 1 here: https://github.com/moovel/lab-what-the-street-datawrangling

Table of Contents

General architecture

What the Street!? runs with:

  • A node.js app (using express.js) that serves the front-end (this repo), the front-end based on react.js using next.js
  • A mongodb server which contains the data needed for the node.js app
  • An external script to generate the video "gifs" of uncoiling the streets (not needed to run the app - they are generated before end)

You need node.js and mongodb installed on the machine in order to run the project.

Note about code quality

The code has been forked during the project development from another codebase, and as we have been iterating fast to meet the deadline, there is not much style consistency between code ported from previous codebase and new code. For example: redux state management using some simple files containing all logic, but also in splitted files, variable naming, etc. However, this shouldn't impact the understanding of the codebase.

That said, this project wouldn't run well if the codebase wasn't correctly optimized. We took care of using best practices of front-end development to deliver a smooth interface, such as using PureComponent, requestAnimationFrame, prefetching, immutable data structures, server side rendering, avoiding costly dom operations during animation, etc.

Deployment guide

Loading data into the mongodb database

Mongodb is not auth configured (no password / username)

To import the data into the mongodb, you should:

mongorestore
   --nsInclude 'stuttgart_coiled.*'
   --nsFrom 'stuttgart_coiled.$collection$'
   --nsTo 'stuttgart_coiled_2.$collection$'
   --gzip
   --archive=stuttgart_coiled.gz
  • Double check the data is imported by running
mongo
show dbs

You should see something like:

stuttgart_coiled_2      0.202GB

Node.js front-end app deployment

npm install
npm run build (takes a while)
npm run start (will listen on the PORT variable or on 80 if not set)

Env variable

You can customize those env variable to change the default:

MONGODB_URL (mongodb:https://localhost:27017)
MONGODB_USER (optional) works only if password is also set
MONGODB_PASSWORD (optional) works only if user is also set
MONGODB_SSL (optional) enables SSL for documentDB connection
PORT (default: 80 , port the http server is listening to)

"GIF" recorder

We implemented a script that uses phantomjs to record mp4 files of the uncoiling animations - you can find it here: https://github.com/moovel/lab-what-the-street/blob/master/recorder/main.sh (used on Mac OS X, did not test on linux)

Dependencies:

  • phantomjs
  • ffmpeg

To run it, use:

./main.sh $CITY $MOBILITY_TYPE $STREET_ID
ex: ./main.sh berlin car 3

It will output the video file in the recorder/data/${city} folder.

The core of the script is https://github.com/moovel/lab-what-the-street/blob/master/recorder/record.js, the principle of recording an animation with phantom are:

It turned out that we were able to generate 20 cities in parallel on the same machine, so we didn't need to automate the uploading to s3, but here is some script that can help to do so.

Team

Concept and Coding

Direction

Benedikt Groß

Website Front & Backend Engineering

Thibault Durand

Website Implementation Assistant

Tobias Lauer

Visual Design

Anagrama

Extended Team

City Data Wrangling Assistant

Johannes Wachs

Data Sources

OpenStreetMap, a free alternative to services like Google Maps. Please contribute, if you notice poor data quality.

https://donate.openstreetmap.org/

Releases

No releases published

Packages

No packages published

Languages