Skip to main content

Structurally Guided Sampling

Project description

sgsPy - Structurally Guided Sampling

Downloads

sgsPy is a toolbox package of stratification and sampling methods for use on ALS metrics, designed to be fast and efficient on very large raster images.

Installation

sgsPy can be downloaded on either Windows or Linux from the Python Package Index (PyPI) with the following command:

pip install sgspy

Overview

sgsPy is based on the widely-used sgsR package, intended originally to help develop representative ground sample networks using auxiliary information like ALS data. sgsPy takes much of the existing functionality of the R package and improves upon its performance, allowing Python users to integrate structurally guided sampling approaches to their workflows.

While the original intention for the package was to be used with ALS metrics, any form of raster data can be used in lieu of ALS metrics.

If you encounter any bugs, unclear documentation, or have any feature ideas then please contribute by posting an issue. https://github.com/jbmeyer2001/sgsPy/issues

The currently implemented functionality includes:

Quickstart guide

files

Some helpful files to get started with can be found in the https://github.com/jbmeyer2001/sgsPy/tree/main/tests/files folder. Specifically mraster.tif, inventory_polygons.shp along with its associated .dbf, .prj, and .shx files, access.shp along with its associated .dbf, .prj, and .shx files, existing.shp along with its associated .dbf, .prj, and .shx files.

raster and vector data

The two classes used by the stratification, sampling, and calculating methods are the sgspy.SpatialRaster [SpatialRaster documentation] and sgspy.SpatialVector [SpatialVector documentation]. The beginning of any process using the sgspy package will involve creating an instance of one or more of these classes. This can be done by providing a file path. It can also be done by converting an object from a popular geospatial package.

import sgspy

#creating SpatialRaster and SpatialVector using file paths
rast = sgspy.SpatialRaster("mraster.tif")
vect = sgspy.SpatialVector("access.shp")

#plotting
rast.plot(band=0)
rast.plot(band="pzabove2")

#accessing underlying data as a numpy array
zq90_arr = rast.band("zq90")
first_band_arr = rast.band(0)

#to/from GDAL raster dataset
ds = gdal.Open("mraster.tif")
rast = sgspy.SpatialRaster.from_gdal(ds)
new_ds = rast.to_gdal()

#to/from rasterio dataset
ds = rasterio.open("mraster.tif")
rast = sgspy.SpatialRaster.from_rasterio(ds)
new_ds = rast.to_rasterio()

#to/from geopandas
gdf = gpd.read_file("inventory_polygons.shp")
vect = sgspy.SpatialVector.from_geopandas(gdf)
new_gdf = gpd.to_geopandas(vect)

example

More extensive examples on how to use each method is available in the user documentation. The following shows how one might use three of the different methods available in sgspy to create a new sampling network.

import sgspy

# create SpatialRaster object from desired tif file
rast = sgspy.SpatialRaster("mraster.tif")

# use principal component analysis for dimensionality reduction (to two components or raster layers)
pca = sgspy.calculate.pca(rast, num_comp=2)

# stratifiy the two components into 5 equally sized quantiles, and map the two layers into a single mapped output
srast = sgspy.stratify.quantiles(pca, quantiles={"comp_1":5, "comp2":5}, map=True)

# use stratified random sampling to sample each (of the 25 total) mapped strata proportional to it's number of pixels in the raster band
# additionaly, plot the output and write it to samples.shp
samples = sgspy.sample.strat(srast, band="map_strat", num_samples=200, num_strata=25, allocation="prop", plot=True, filename="samples.shp")

Funding

The development of the sgsPy package was funded by the Ontario Future Forests (KTTD 2B-2024) grant.

Developer information

This section includes installation steps for both Windows and Linux, in addition to notes on running the code. See the Developer Documentation for information on the underlying C++ implementations.

Linux installation:

  1. Ensure you have Python with pip installed, and git.
  2. clone the repository with the following command:
git clone https://github.com/jbmeyer2001/sgsPy.git
  1. create and activate a python virtual environment (highly recommended)
python -m venv .venv
source ./.venv/bin/activate
  1. install dependency requirements. If you do not already have these, the dependency installation will fail.
  • build-essential (if you don't already have a C++ compiler)
  • pkg-config
  • auto-conf
  • libtool
  • bison
  • flex
  • patchelf
sudo apt install build-essential
sudo apt install pkg-config
sudo apt install auto-conf
sudo apt install libtool
sudo apt install bison
sudo apt install flex
sudo apt install patchelf
  1. Run the following command to install and build project C++ dependencies.
bash scripts/install.sh
  1. Run the following command to build the project
bash scripts/build.sh
  1. If you intend to run the tests (using pytest), both pytest and geopandas are required and can be installed as follows:
pip install pytest
pip install geopandas

Windows installation:

NOTE: The commands given are for a Windows Powershell command prompt.

  1. ensure you have Python with pip, git, and a C++ compiler.

  2. If you do not already have a C++ compiler, one can installed by installing the Microsoft Visual Studio IDE with C++ build tools.

  3. clone the repository with the following command.

git clone https://github.com/jbmeyer2001/sgsPy.git
  1. create and activate a Python virtual environment (highly recommended).
python -m venv .venv
./.venv/Scripts/activate
  1. Run the following command to install and build project C++ dependencies. remaining dependencies
./scripts/install
  1. Run the following command to build the project
./scripts/build
  1. If you intend to run the tests (using pytest), both pytest and geopandas are required and can be installed as follow:
pip install pytest
pip install geopandas

How to run sgsPy:

Tests may be ran by running the following command from within the folder containing this file. Both pytest and geopandas must be installed to run the tests.

pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sgspy-1.0.11-cp314-cp314-win_amd64.whl (28.0 MB view details)

Uploaded CPython 3.14Windows x86-64

sgspy-1.0.11-cp314-cp314-manylinux_2_28_x86_64.whl (36.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

sgspy-1.0.11-cp313-cp313-win_amd64.whl (27.2 MB view details)

Uploaded CPython 3.13Windows x86-64

sgspy-1.0.11-cp313-cp313-manylinux_2_28_x86_64.whl (36.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

sgspy-1.0.11-cp312-cp312-win_amd64.whl (27.2 MB view details)

Uploaded CPython 3.12Windows x86-64

sgspy-1.0.11-cp312-cp312-manylinux_2_28_x86_64.whl (36.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

sgspy-1.0.11-cp311-cp311-win_amd64.whl (27.2 MB view details)

Uploaded CPython 3.11Windows x86-64

sgspy-1.0.11-cp311-cp311-manylinux_2_28_x86_64.whl (36.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

sgspy-1.0.11-cp310-cp310-win_amd64.whl (27.2 MB view details)

Uploaded CPython 3.10Windows x86-64

sgspy-1.0.11-cp310-cp310-manylinux_2_28_x86_64.whl (36.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

File details

Details for the file sgspy-1.0.11-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sgspy-1.0.11-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 28.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sgspy-1.0.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 52705d49d8662fc88bef43ea2d3da44525dd35f582cee5549c48d5cf16f3c33c
MD5 26d4496944cb4a9443fbd45504a6b95b
BLAKE2b-256 273bd20e9a6c660f0526753abadf0c6e1344220193f70abbe6f2bb727dbfc9e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp314-cp314-win_amd64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sgspy-1.0.11-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sgspy-1.0.11-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c9a4cea4eb137993f329abbb906a41134125d6a862cc258e68f3a992a555ffa
MD5 6e03755f5429ca5451a420f1c0d81b00
BLAKE2b-256 a81cf6aa96b408573acb895e4f9fcbdd4b56405776ca40e5ca35336c2935047d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sgspy-1.0.11-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sgspy-1.0.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 27.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sgspy-1.0.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6d1239fc1e160e8044766c6c97b84c59416086a80e117b2ff2411e66c88ac936
MD5 dc116a0fa74b93c40ae9382a9a45b810
BLAKE2b-256 bf7cfd74a588424e1b5f622b2d8ffaec39290a870b000789219f932197482480

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp313-cp313-win_amd64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sgspy-1.0.11-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sgspy-1.0.11-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b24f9525d3fa503260dd76dae6ce6616d14369c47c14f1112fb221aafcb0a6ba
MD5 326ec6204bd6a0f00b067460759b18fe
BLAKE2b-256 db1dc46af1d633f0a7f252945b5000dde9a46544815b740a337a16c258491710

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sgspy-1.0.11-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sgspy-1.0.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 27.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sgspy-1.0.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6c1f4b73359a55e6133c679cc6233a99669ac5760c75cf1f76ba27852ad19d73
MD5 0d0ace2e047ddd06e0ef3051d515aee9
BLAKE2b-256 b4861d19f723124c1ee430e6d5062ee392769698d3e09d5f107b4a71c63db09b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp312-cp312-win_amd64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sgspy-1.0.11-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sgspy-1.0.11-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6b352967d9c0435aea1de5051e5e258bcf0b8fc019c119334574b922c841829
MD5 c14733586e83a5860951d55e7b44e515
BLAKE2b-256 5a26234745429da751ebb9cd2297111138ad0462b947270168fb7fbb1122691e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sgspy-1.0.11-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sgspy-1.0.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 27.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sgspy-1.0.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 42bead2cc46d778e17cb6fe7307f29d6ac2fd5635b316d0977039e74ec69f55a
MD5 f61d941dbd601989f9645cab4940eb0b
BLAKE2b-256 10ed40a1f80b4a4363d8f0d6aa0f05e89291eacd4d4d1237781969ffa32f6fc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp311-cp311-win_amd64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sgspy-1.0.11-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sgspy-1.0.11-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83da56fb54ffbb94f4f2a63ba99af0e0fa0ec930b5cdebb4cd58c9cc91c20124
MD5 86db6e0cca6e6a8b1c1a1cc2b2bad0cc
BLAKE2b-256 99dc9ffa186787ffdf35c5368d8cf6b70774ca172039e602d75cd31aecf5d4ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sgspy-1.0.11-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sgspy-1.0.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 27.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sgspy-1.0.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f6c9cb0849fcfa03c497c8fa6f030d28f9f6d86ff49da90bdc24c1a06b9b01fa
MD5 05bac9d5f70208f1b44e050b5386d8ed
BLAKE2b-256 acd0ab929655b8217f9abeea7f2eee08b266ac0db71af93931e99f366901d4e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp310-cp310-win_amd64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sgspy-1.0.11-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sgspy-1.0.11-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 016a5750d25f694d064cc28e93b3fb16030bdfc1886c40f80e478887e482fb63
MD5 b231931dcf23ea1b71dca76c5d8dd148
BLAKE2b-256 9f8777aa06753ed308dfb0327f6f530d54f4883cff9dc2dcf648288de6f68d6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sgspy-1.0.11-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: deploy.yml on jbmeyer2001/sgsPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page