Automatic generation of ship traffic situations from a set of predefined situations
Project description
Traffic Generator
The tool generates a structured set of encounters for verifying automatic collision and grounding avoidance systems. Based on input parameters such as desired situation, relative speed, relative bearing etc, the tool will generate a set of traffic situations. The traffic situations may be written to files and/or inspected using plots.
A paper is written describing the background for the tool and how it works [paper]
For package documentation, see https://dnv-opensource.github.io/ship-traffic-generator/
Installation
To install Ship Traffic Generator, run this command in your terminal:
pip install trafficgen
This is the preferred method to install Traffic Generator, as it will always install the most recent stable release.
You can check your installation by running:
uv run trafficgen --help
Usage
For simplest usage, clone this repo, then run pip install -e . (you may want to do this in a local environment, such as a venv, see an example with uv below).
Then run: trafficgen gen-situation. You can add the option -v for visualization.
For further explanations, see the documentation pages of the Ship Traffic Generator.
Development Setup
Install UV
This project uses uv as package manager.
If you haven't already, install uv, preferably using it's "Standalone installer" method:
..on Windows:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
..on MacOS and Linux:
curl -LsSf https://astral.sh/uv/install.sh | sh
(see docs.astral.sh/uv for all / alternative installation methods.)
Once installed, you can update uv to its latest version, anytime, by running:
uv self update
Install Python
The traffic generator requires Python 3.11 or later.
If you don't already have a compatible version installed on your machine, you way install Python through uv:
uv python install
This will install the latest stable version of Python into the uv Python directory, i.e. as a uv-managed version of Python.
Note: you can also do this after you clone the repo, see below.
Alternatively, and if you want a standalone version of Python on your machine, you can install Python either via winget:
winget install --id Python.Python
or you can download and install Python from the python.org website.
Clone the repository
Clone the traffig generator repository into your local development directory:
git clone https://github.com/dnv-opensource/ship-traffic-generator path/to/your/dir/ship-traffic-generator
Change into the project directory after cloning:
cd ship-traffic-generator
Install dependencies
Run uv sync -U to create a virtual environment and install all project dependencies into it:
uv sync -U
Note: Using
--no-devwill omit installing development dependencies.
Note: You can also define the python environment at the same time, by running for example
uv sync -U -p 3.12to install Python 3.12.
Note:
uvwill create a new virtual environment called.venvin the project root directory when runninguv syncthe first time. Optionally, you can create your own virtual environment using e.g.uv venv, before runninguv sync.
(Optional) Activate the virtual environment
When using uv, there is in almost all cases no longer a need to manually activate the virtual environment.
uv will find the .venv virtual environment in the working directory or any parent directory, and activate it on the fly whenever you run a command via uv inside your project folder structure:
uv run <command>
However, you still can manually activate the virtual environment if needed.
When developing in an IDE, for instance, this can in some cases be necessary depending on your IDE settings.
To manually activate the virtual environment, run one of the "known" legacy commands:
..on Windows:
.venv\Scripts\activate.bat
Note: If you use the cmd terminal in VS Code, it will show this activated venv as (trafficgen) at the start of every line command.
..on Linux:
source .venv/bin/activate
Install the package
uv pip install -e .
Test the install
In your virtual environment, or prepend uv run:
pytest .
Documentation
For pre-generated package documentation, see https://dnv-opensource.github.io/ship-traffic-generator/
To generate documentation from the source code, use:
uv run docs/make.bat html
The html documentation will then be available in docs/build/html/index.html
Contributing
-
Any development should be associated to GitHub "issues" and done on new branches, which are tagged with the issue number. Branch off from
dev(and also create PRs towardsdev). Themainbranch is used for releases.- Example branch names:
enh/1-improve-speed,bug/43-fix-cli-bug-about-something, etc.
- Example branch names:
-
Whenever you make changes to files, please keep formatting the same (e.g. whitespaces etc.), and follow the conventions used in the file (and this project). The Pull Request checks/actions on GitHub will run ruff format/check, pyright and mypy. To prepare, you may wanna run these before committing your changes, to ensure you are adhering to the formatting rules. E.g.:
uv run ruff format uv run ruff check uv run pyright uv run mypy
-
Run the pytest to ensure you did not break any functionality, and ensure you have added new tests for new features:
uv run pytest .
-
When you create a Pull Request in GitHub:
- Make sure your PR is set to merge into the
devbranch. - Use closing keywords in your PR description, and link the relevant issue.
- In the PR description, add a description of the changes, any tests you've done, and describe how reviewers can test your changes.
- Add your contributions to the
CHANGELOG.md - Resolve any issues that are found by the PR checks (ruff, pyright, mypy)
- Assign some folks as Reviewers
- Assign yourself as "Assignee", and follow up on reviews. You are responsible for resolving any issues that are found, and doing the final merge, after you get an approval from Reviewers.
- If you are still working on the branch, make it a "Draft" PR - you can add/reach out to Reviewers if you want early feedback, or wait until the PR is ready before assigning Reviewers.
- If a new release should be created, notify Tom Arne Pedersen.
- Make sure your PR is set to merge into the
Testing PRs
-
Check out the PR branch
-
Update dependencies, re-install latest package, and run tests (ensure all pass):
.venv\Scripts\activate.bat uv self update uv sync -U uv pip install -e . uv run pytest .
-
Run any additional tests you want / care about / related to PR topic (in your virtual env or prepend
uv run) e.g.:trafficgen gen-situation -o test_output
and make edits to config or change this command to test new functionalities.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file trafficgen-0.8.4.tar.gz.
File metadata
- Download URL: trafficgen-0.8.4.tar.gz
- Upload date:
- Size: 100.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
952ad4c35770cc6b271bc1687bec567b0ee669dc2c60475638d386701f83e251
|
|
| MD5 |
06fbb2af100d36d0a25c94f7dd25f20a
|
|
| BLAKE2b-256 |
629c011d5446848392f77546507c72a1210f6025210370db945eba1009a3c6aa
|
Provenance
The following attestation bundles were made for trafficgen-0.8.4.tar.gz:
Publisher:
publish_release.yml on dnv-opensource/ship-traffic-generator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
trafficgen-0.8.4.tar.gz -
Subject digest:
952ad4c35770cc6b271bc1687bec567b0ee669dc2c60475638d386701f83e251 - Sigstore transparency entry: 726874420
- Sigstore integration time:
-
Permalink:
dnv-opensource/ship-traffic-generator@8e5a5e839ff6c6ad85f035f5ce1c9964c69d1199 -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/dnv-opensource
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish_release.yml@8e5a5e839ff6c6ad85f035f5ce1c9964c69d1199 -
Trigger Event:
push
-
Statement type:
File details
Details for the file trafficgen-0.8.4-py3-none-any.whl.
File metadata
- Download URL: trafficgen-0.8.4-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c83ffe238b473280a966e9637aae31eb6a98f07279789c8ffec1b1a9766d4452
|
|
| MD5 |
47dc20d9a36243aff713ce3e552af2e7
|
|
| BLAKE2b-256 |
0f3f8878b216e5bced3e376ec47bdf430f388e701c237fa0c4079dcfcc6597be
|
Provenance
The following attestation bundles were made for trafficgen-0.8.4-py3-none-any.whl:
Publisher:
publish_release.yml on dnv-opensource/ship-traffic-generator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
trafficgen-0.8.4-py3-none-any.whl -
Subject digest:
c83ffe238b473280a966e9637aae31eb6a98f07279789c8ffec1b1a9766d4452 - Sigstore transparency entry: 726874437
- Sigstore integration time:
-
Permalink:
dnv-opensource/ship-traffic-generator@8e5a5e839ff6c6ad85f035f5ce1c9964c69d1199 -
Branch / Tag:
refs/tags/v0.8.4 - Owner: https://github.com/dnv-opensource
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish_release.yml@8e5a5e839ff6c6ad85f035f5ce1c9964c69d1199 -
Trigger Event:
push
-
Statement type: