v1.0 Jan-Mar 2022 - Initial version
v1.1 Jul 2024 - Usability and file outputs improvements
A Python (3.x and above) redevelopment of the original VB code.
For information about the project visit http://pop247.geodata.soton.ac.uk/
src/
- sources files
sb247_modelRun.txt
- Pseudocode descriptions of the algorithms implemented
sb247_python.md
- Documentation of the Python structure and code
main.py
- A sample main Python entry program
sb247.py
- The main SB247 Class, the container for all functionality and data
projectParams.py
- Stores all Project parameters
modelRun.py
- Run the model including the main algorithms
locationIndex.py
- Structures and methods to rapidly identify data within a bounding area
gridCreate.py
- Create gridded data from model run outputs
unit_tests.py
- Perform a series of validations (requires sample Data)
e.g. run:
python main.py
Unit tests:
python unit_tests.py
docker/
- Dockerfile to build a suitable Python container
e.g. run:
docker run -it --rm --name sb2472py_docker -v "$PWD":/opt -w /opt sb247-docker:latest ./main.py
Unit tests (requires sample Data):
docker run -it --rm --name sb2472py_docker -v "$PWD":/opt -w /opt sb247-docker:latest python ./unit_tests.py
Package home at PyPI: https://pypi.org/project/SurfaceBuilder247/
pip install SurfaceBuilder247
In Main.py
:
from SurfaceBuilder247 import SB247