Overview

This project implements the paper "Extracting Movement-based Topics for Analysis of Space Use" by G. Andrienko, N. Andrienko, and D. Hecker. The project is available at https://the-breakbar.github.io/VIS2/.

Usage

The purpose of this visualization method is to analyze spatio-temporal movement patterns with the method of topic modeling. Using data which consists of points in space and time (such as cars moving through a city), the data is embedded in a voronoi diagram. This is supposed to support the exploration of spatial and temporal patterns of movement, enabling understanding of space use. However, whether this method can uncover such insights, depends on the data and the chosen parameters.

The data to be visualized has to be a .csv file in the form "id","datetime","lat","lon". Two sample datasets are provided, a dataset of car movements in Milan, and a smaller version of the same dataset. For the computation, three configuration variables are exposed:

Based on the paper, for the Milan dataset we recommend a radius of 2000m, 21 topics and 50 iterations (default configuration), which results in a clear result. Computation time can range from 1 to 5 minutes, please be patient.

Project

The source code is available at https://github.com/The-breakbar/VIS2. The project itself is a static web page built with d3.js, webpack and typescript. All computations are done on the client side.

Sources