WurzelWertErmittlung is a project designed to analyze and visualize geographic data using Python. This includes generating point clouds, analyzing data within specific radii, and plotting results on a map.
To ensure project dependencies are isolated, create a virtual environment:
python3 -m venv WurzelWert
Activate the virtual environment:
source WurzelWert/bin/activate
With the virtual environment activated, install the necessary Python libraries:
pip install matplotlib shapely numpy
Execute the main script to run the program:
python -m src.main
When you’re finished, deactivate the virtual environment:
deactivate