Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skyzh/Meteor
🚆 Fine-grained analysis and visualization of Hangzhou Metro for efficient traveling in metro system. Project report, slide and presentation video included.
https://github.com/skyzh/Meteor
cmake data-analysis hangzhou metro qt sqlite visualize
Last synced: 6 days ago
JSON representation
🚆 Fine-grained analysis and visualization of Hangzhou Metro for efficient traveling in metro system. Project report, slide and presentation video included.
- Host: GitHub
- URL: https://github.com/skyzh/Meteor
- Owner: skyzh
- License: gpl-3.0
- Created: 2019-12-03T11:48:14.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-03T04:39:13.000Z (over 4 years ago)
- Last Synced: 2024-10-28T17:12:26.543Z (16 days ago)
- Topics: cmake, data-analysis, hangzhou, metro, qt, sqlite, visualize
- Language: C++
- Homepage:
- Size: 149 KB
- Stars: 21
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-cs - @skyzh, 2019 Fall
README
# Meteor
[![Build Status](https://travis-ci.com/skyzh/Meteor.svg?token=szB6fz2m5vb2KyfAiZ3B&branch=master)](https://travis-ci.com/skyzh/Meteor)
Visualize and analyze Hangzhou Metro data with Qt.
## Building
On macOS, use CMake to build this project. Replace `$QT_ROOT_PATH` with Qt folder. It's usually `~/Qt`.
```bash
cmake -H. -Bbuild -DCMAKE_PREFIX_PATH=$QT_ROOT_PATH/5.12.6/clang_64/lib/cmake -DCMAKE_BUILD_TYPE=RELEASE
cd build && cmake --build .
```Or you may open this project with CLion, configure Qt in CMake settings, and build with `Release` target.
## Running
In `build` folder,
```bash
./Meteor
```Copy `station_line.csv` to `dataset_CS241/adjacency_adjacency/`. Select dataset folder and fields in wizard. The program will automatically check if this file is present in wizard.
Uncheck "Persist Analysis Cache" will make data loading faster in current session, but data will be loaded again if you restart the app.
## Functionalities
### Passenger Traffic
You may view passenger inflow and outflow data in each station.
### Route Planning
Meteor may plan route for you. Select "Meteor Adviser" to show ETA and crowded rate.
### Flow Analysis for Segment Pressure
By predicting where a user should be from entry and exit records in dataset, Meteor can visualize segment pressure. You may use the slider on screen or the one on Touch Bar to navigate time through a day.
## Task Scheduling System
All computational works are organized in tasks. You may implement your own analysis task by inheriting `Task` class. There's a task scheduler handling tasks dependencies and running them in the background.
## Learn More
["The Meteor Project" Report](https://github.com/skyzh/Meteor/files/4005176/The.Meteor.Project.Report.pdf)
["The Meteor Project" Slides](https://github.com/skyzh/Meteor/files/4005177/The.Meteor.Project.Slide.pdf)
SJTU users may download presentation video from [jBox](https://jbox.sjtu.edu.cn/l/R09Dzw)
## License
GPL-3.0