A project for various analysis tools.
Project description
Analysis Scripts
General project to hold a variety of analysis tools for filtering, plotting, etc.
Environment Setup
Make sure that you have at least python3.10 installed. The two supported workflows are pip and uv. For uv instructions, go to uv Workflow.
[!NOTE] ROS and ASPN-ROS can't be
pip installed. If using ROS-related scripts, seeanalysis-ros/README.mdfor instructions on setting up the ROS and ASPN-ROS environment.
Standard pip Workflow
Begin by creating and entering a clean venv. We can create the venv in the
.venv folder by running the following command in the project root directory:
python3 -m venv .venv --prompt analysis-scripts
Next, enter the venv. The steps to do this vary depending on your shell:
bash/zsh: source .venv/bin/activate
fish: source .venv/bin/activate.fish
powershell .venv/bin/activate.ps1
Your shell should now be inside the venv. It is recommended that you upgrade your pip to the latest:
pip install --upgrade pip
Now we're ready to install the dependencies. In the project root directory, run:
pip install -v -r requirements.txt --extra-index-url=$UV_INDEX
Note: this command may take a while to run. It is downloading example data, which may take a lot of bandwidth.
If successful, you are ready to move on to Testing Your Installation. If not, please see Errata for troubleshooting help.
uv Workflow
Install uv which is available directly in homebrew on macOS and a variety of package managers on Linux distributions. Alternatively, you may use the upstream install instructions.
Once uv is installed, we will sync the project in the project root directory:
uv sync
The above command creates a new venv in the local .venv folder and installs all of the necessary packages into it. If all went well, you should now be able to enter the venv. The steps to do this vary depending on your shell:
bash/zsh: source .venv/bin/activate
fish: source .venv/bin/activate.fish
powershell .venv/bin/activate.ps1
Testing Your Installation
Your shell should now be inside a venv that is ready to use the analysis scripts. You can confirm that this is the case by opening a python interpreter and checking that importing various components of this project.
$ python3
>>> import navtk
>>> import aspn23
>>> import aspn23_lcm
If that works, you are ready to run most of the tools/scripts contained in this project.
Contributing
To begin development, refer to Environment Setup for how to setup development tooling and enter the configured venv. Once that is done, you can proceed to develop your new functionality in a feature branch. When your feature is complete and ready for us to review, there are a few code quality checks you should perform before opening a merge request.
Checking Contributions
New contributions to this repo should pass the following checks:
ruff check --fix
ruff format
Or, to run all the above commands at once, run:
./run_all_checks.sh
You can view a detailed code coverage report from the index.html in the htmlcov directory.
uv Tooling Explanation
uv allows us to manage this repository as a monorepo. We have a few base folders which act as our modules, and one folder that defines applications which use those modules.
Whenever you type uv sync it recurses into every analysis-* folder and finds the pyproject.toml in there. It then installs the dependencies subkey in that file, and places them in the top level uv.lock. Generating the requirements.txt and requirements-dev.txt is then done as a
separate step, by running:
uv sync
uv export --frozen --no-dev --all-packages --no-hashes > requirements.txt
uv export --frozen --all-packages --no-hashes > requirements-dev.txt
Note that files that are installed via a local path are installed as editable installs and are automatically updated whenever a file in that package is updated.
Project details
Release history Release notifications | RSS feed
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 analysis_scripts-0.1.0.tar.gz.
File metadata
- Download URL: analysis_scripts-0.1.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
048a22e4cf7b9e2a23163f6a48a285e2eb46c5acb90c9346d4148b1c8fcce3bc
|
|
| MD5 |
5f81ca21c4aaed12c87277f0b0c13293
|
|
| BLAKE2b-256 |
1e03ffa7221d8e596a3b61937dfd71232db92ee8380b2c8f58f4dbb5d768503c
|
File details
Details for the file analysis_scripts-0.1.0-py3-none-any.whl.
File metadata
- Download URL: analysis_scripts-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bca829d86b63cdef5ab0f3530f5d595aaabda510d9b7d57d04b80b192a527e0
|
|
| MD5 |
5b1cea0342b4a2595e451f8f49713c27
|
|
| BLAKE2b-256 |
39a68dde960b121f925ede1e652b73dad954b7dc3f3d0debb6e1926016a0dd06
|