snail
A Python package to help with analysis of the potential impacts of climate hazards and other perils on infrastructure networks.
https://github.com/nismod/snail
Category: Climate Change
Sub Category: Natural Hazard and Storm
Last synced: about 18 hours ago
JSON representation
Repository metadata
spatial networks impact assessment library 🐌
- Host: GitHub
- URL: https://github.com/nismod/snail
- Owner: nismod
- License: mit
- Created: 2020-09-04T08:58:20.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-10-29T18:54:44.000Z (about 2 months ago)
- Last Synced: 2025-11-13T20:07:49.372Z (about 1 month ago)
- Language: Jupyter Notebook
- Homepage: https://nismod.github.io/snail/
- Size: 5.21 MB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 18
- Releases: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Citation: CITATION.cff
README.md
🤔 What is this?
This is a Python package to help with analysis of the potential impacts of
climate hazards and other perils on infrastructure networks.
Installation
Install using pip:
pip install nismod-snail
This should bring all dependencies with it. If any of these cause difficulties,
try using a conda environment:
conda env create -n snail_env \
python=3.11 geopandas shapely rasterio python-igraph
conda activate snail_env
pip install nismod-snail
If all worked okay, you should be able to run python and import snail:
$ python
>>> import snail
>>> help(snail)
Help on package snail:
NAME
snail - snail - the spatial networks impact assessment library
Using the snail command
Once installed, you can use snail directly from the command line.
Split features on a grid defined by its transform, width and height:
snail split \
--features input.shp \
--transform 1 0 -180 0 -1 90 \
--width 360 \
--height 180 \
--output split.gpkg
Split features on a grid defined by a GeoTIFF, optionally adding the values from each raster band to each split feature as a new attribute:
snail split \
--features lines.geojson \
--raster gridded_data.tif \
--attribute \
--output split_lines_with_raster_values.geojson
Split multiple vector feature files along the grids defined by multiple raster files, attributing all raster values:
snail process -fs features.csv -rs rasters.csv
Where at a minimum, each CSV has a column path with the path to each file.
Transform
A note on transform - these six numbers define the transform from i,j cell index (column/row) coordinates in the rectangular grid to x,y geographic coordinates, in the coordinate reference system of the input and output files. They effectively form the first two rows of a 3x3 matrix:
| x | | a b c | | i |
| y | = | d e f | | j |
| 1 | | 0 0 1 | | 1 |
In cases without shear or rotation, a and e define scaling or grid cell size, while c and f define the offset or grid upper-left corner:
| x_scale 0 x_offset |
| 0 y_scale y_offset |
| 0 0 1 |
See rasterio/affine and GDAL Raster Data Model for more documentation.
Development
Clone this repository using GitHub Desktop or on
the command line:
git clone git@github.com:nismod/snail.git
Change directory into the root of the project:
cd snail
To create and activate a conda environment with snail's dependencies installed:
conda env create -f environment.yml
conda activate snail-dev
Run this to install the source code as a package:
pip install .
If you're working on snail itself, install it as "editable" along with test and
development packages:
pip install -e .[dev]
Run tests using pytest and
pytest-cov to check coverage:
pytest --cov=snail --cov-report=term-missing
Run a formatter (black) to fix code
formatting:
black src/snail
Build the docs:
rm -r docs/build
rm -r docs/source/tutorials
cp -r tutorials docs/source/
pushd docs
sphinx-apidoc -M -o source/api ../src/snail/ --force
make html
popd
Serve the HTML docs locally:
cd docs/build/html
python -m http.server
C++ library
The C++ library in extension/src contains the core routines to find intersections of
lines with raster grids.
Before working on the C++ library, fetch source code for Catch2 unit testing
library (this is included as a git submodule):
git submodule update --init --recursive
Build the library and run tests:
cmake -Bbuild ./extension
cmake --build build/
./build/run_tests
Run code style auto-formatting:
clang-format -i extension/src/*.{cpp,hpp}
Run lints and checks:
clang-tidy --checks 'cppcoreguidelines-*' extension/src/*.{cpp,hpp}
This may need some includes for pybind11 - which will vary depending on your
python installation. For example, with python via miniconda:
clang-tidy --checks 'cppcoreguidelines-*' extension/src/* -- \
-I/home/username/miniconda3/include/python3.11/ \
-I./pybind11/include/
Or with C++ headers installed on a Linux machine:
clang-tidy --checks 'cppcoreguidelines-*' extension/src/* -- \
-std=c++14 \
-I/usr/include/x86_64-linux-gnu/c++/11 \
-I/usr/include/c++/11 \
-I{$PWD}/extension/extern/pybind11/include \
-I/usr/include/python3.10
Integration of C++ and Python using pybind11
The snail.core.intersections module is built using pybind11 with
scikit-build-core (see docs)
extension/src/intersections.cppdefines the module interface using the
PYBIND11_MODULEmacropyproject.tomldefines the build requirements for snail, which includes
pybind11 and scikit-build-core
Acknowledgments
MIT License
Copyright (c) 2020-23 Tom Russell and all snail contributors
This library is developed by researchers in the Oxford Programme for Sustainable
Infrastructure Systems at the University of Oxford,
funded by multiple research projects.
This research received funding from the FCDO Climate Compatible Growth Programme.
The views expressed here do not necessarily reflect the UK government's official
policies.
Citation (CITATION.cff)
cff-version: 1.2.0
title: 'snail: spatial networks impact assessment library'
message: 'If you use this software, please cite it as below.'
type: software
authors:
- family-names: Russell
given-names: Tom
orcid: 'https://orcid.org/0000-0002-0081-400X'
- family-names: Lestang
given-names: Thibault
orcid: 'https://orcid.org/0000-0001-6770-2638'
- family-names: Schlosser
given-names: Ivann
- family-names: Fuldauer
given-names: Lena
- family-names: Pant
given-names: Raghav
- family-names: Horvát
given-names: Szabolcs
identifiers:
- type: doi
value: 10.5281/zenodo.12550509
repository-code: 'https://github.com/nismod/snail'
url: 'https://nismod.github.io/snail/'
repository-artifact: 'https://pypi.org/project/nismod-snail/'
abstract: >-
snail is Python package to help with analysis of the
potential impacts of climate hazards and other perils on
infrastructure networks.
license: MIT
commit: 1c330be33bd92b663e1691c0467f7a664f2799af
version: 0.5.2
date-released: '2024-06-26'
Owner metadata
- Name: National Infrastructure Systems Model
- Login: nismod
- Email:
- Kind: organization
- Description:
- Website: www.itrc.org.uk
- Location: United Kingdom
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/21081508?v=4
- Repositories: 30
- Last ynced at: 2023-02-28T18:04:50.433Z
- Profile URL: https://github.com/nismod
GitHub Events
Total
- Create event: 6
- Issues event: 2
- Release event: 4
- Watch event: 1
- Delete event: 4
- Issue comment event: 2
- Push event: 8
- Pull request event: 2
Last Year
- Issues event: 2
- Watch event: 1
- Issue comment event: 2
- Push event: 2
- Pull request event: 2
- Create event: 2
Committers metadata
Last synced: 2 days ago
Total Commits: 417
Total Committers: 8
Avg Commits per committer: 52.125
Development Distribution Score (DDS): 0.441
Commits in past year: 13
Committers in past year: 1
Avg Commits per committer in past year: 13.0
Development Distribution Score (DDS) in past year: 0.0
| Name | Commits | |
|---|---|---|
| Tom Russell | t****l@o****k | 233 |
| Thibault Lestang | t****g@c****k | 161 |
| lenaisabel | 3****l | 7 |
| Ivann Schlosser | i****9@u****k | 7 |
| Sarah Gall | S****2 | 5 |
| Raghav Pant | r****p@g****m | 2 |
| Szabolcs Horvát | s****t@g****m | 1 |
| Nadia Leonova | n****n@N****l | 1 |
Committer domains:
- ucl.ac.uk: 1
- cs.ox.ac.uk: 1
- ouce.ox.ac.uk: 1
Issue and Pull Request metadata
Last synced: 22 days ago
Total issues: 41
Total pull requests: 34
Average time to close issues: 6 months
Average time to close pull requests: 4 days
Total issue authors: 5
Total pull request authors: 5
Average comments per issue: 0.78
Average comments per pull request: 0.26
Merged pull request: 31
Bot issues: 0
Bot pull requests: 0
Past year issues: 1
Past year pull requests: 2
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 1
Past year pull request authors: 1
Past year average comments per issue: 1.0
Past year average comments per pull request: 1.0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- tomalrussell (32)
- thomas-fred (5)
- tlestang (2)
- ischlo (1)
- dianajjaramillo (1)
Top Pull Request Authors
- tlestang (16)
- tomalrussell (13)
- ischlo (2)
- nnleonova (2)
- szhorvat (1)
Top Issue Labels
- feature (12)
- bug (5)
- big (3)
Top Pull Request Labels
Package metadata
- Total packages: 1
-
Total downloads:
- pypi: 1,877 last-month
- Total dependent packages: 0
- Total dependent repositories: 1
- Total versions: 12
- Total maintainers: 2
pypi.org: nismod-snail
The spatial networks impact assessment library
- Homepage: https://github.com/nismod/snail
- Documentation: https://nismod.github.io/snail/
- Licenses: MIT License Copyright (c) 2020 Tom Russell and snail contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- Latest release: 0.5.4 (published about 1 year ago)
- Last Synced: 2025-12-22T15:06:19.833Z (4 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 1,877 Last month
-
Rankings:
- Downloads: 9.268%
- Dependent packages count: 10.044%
- Average: 18.753%
- Dependent repos count: 21.651%
- Stargazers count: 23.047%
- Forks count: 29.755%
- Maintainers (2)
Dependencies
- actions/checkout v2 composite
- actions/setup-python v2 composite
- actions/checkout v2 composite
- actions/download-artifact v2 composite
- actions/setup-python v2 composite
- actions/upload-artifact v2 composite
- pypa/cibuildwheel v2.2.0 composite
- pypa/gh-action-pypi-publish release/v1 composite
- actions/checkout v4 composite
- actions/configure-pages v3 composite
- actions/deploy-pages v2 composite
- actions/setup-python v4 composite
- actions/upload-pages-artifact v2 composite
- geopandas *
- matplotlib *
- openpyxl *
- pandera *
- pyarrow *
- pyogrio *
- python-igraph *
- rasterio *
- scipy *
- shapely *
Score: 12.950673107679034