Tutorials and demos for themachinethatgoesping
- You need your own testdata (Currently Kongsberg .all/.wcd files or Simrad EK80, more formats will be added in the future)
- If you don't have any, send me a message ([email protected])
- We will add information on getting testdata in the future
- Use the notebooks in the folder "demo". These are currently the only ones that will be kept up to date with other changes in ping
- See also https://themachinethatgoesping.readthedocs.io/en/latest/first_steps/run_tutorials.html
- Windows, Linux or Mac: Development is done on Linux, so this is the most tested
# Install (using miniforge & poetry)
- Install miniforge (or equivalent e.g. miniconda https://conda-forge.org/miniforge/)
- Create a new environment, with suitable python version and package manager package poetry:
$ conda create -n ping python=3.12
$ conda activate ping
$ pip install poetry
- clone this repository
git clone https://github.com/themachinethatgoesping/tutorials.git
cd tutorials
- Navigate to the directory where the poetry.lock file is located and run:
# This will install the exact version specified in the provided poetry.lock file
poetry install
- If there are problems with installing poetry, when creating the environment, try instead:
conda create -n ping python=3.12
conda activate ping
pip install poetry
poetry install
Open jupyterlab in the demo folder
jupyter lab .
- Drop me an email and we can have a chat: [email protected]