Visualization and analysis of geometry and trajectory data from JuPedSim in 3d in a web browser.
This project is hosted on Github.
As the program is still under development and is extended continuously, we advice you to use the latest sources from our GitHub repository. Using a command line client the following command should work:
git clone --recursive https://github.com/sainho93/jpsvis-online-ts/
JPSvis Online is written in Python (Python3) for server and TypeScript for frontend.
To get going, we recommend setting up a Python virtual environment via [virtualenv](https://pypi.org/project /virtualenv/):
python -m venv $name_of_virtual_environment
source $name_of_virtual_environment/bin/activate
Then install both Python and JS dependencies:
pip3 install -r requirements.txt
yarn
Now the JPSvis Online is ready to use
To open the JPSvis Online in a web browser, Build the client-side JavaScript bundle at first:
yarn webpack
Then run the server:
python ./src/server/server.py
Visit http://localhost:8080/ to run
Feel free to dive in! Open an issue or submit PRs.
JPSvis Online follows the Contributor Covenant Code of Conduct.