Skip to main content

High-performance geospatial analysis library for Python, powered by Rust

Project description

surtgis

High-performance geospatial analysis library for Python, powered by Rust.

SurtGIS provides 40+ terrain, hydrology, and imagery algorithms with native performance through PyO3 bindings.

Installation

pip install surtgis

Quick Start

import numpy as np
import surtgis

# Create a sample DEM (100x100 grid)
dem = np.random.rand(100, 100) * 100  # Elevation in meters
cell_size = 30.0  # 30m resolution

# Compute terrain derivatives
slope = surtgis.slope(dem, cell_size)
aspect = surtgis.aspect_degrees(dem, cell_size)
hillshade = surtgis.hillshade_compute(dem, cell_size, azimuth=315.0, altitude=45.0)

# Curvature analysis
profile_curv = surtgis.curvature_compute(dem, cell_size, ctype="profile")
plan_curv = surtgis.curvature_compute(dem, cell_size, ctype="plan")

# Advanced Florinsky curvatures (14 types available)
mean_h = surtgis.advanced_curvature(dem, cell_size, ctype="mean_h")
gaussian_k = surtgis.advanced_curvature(dem, cell_size, ctype="gaussian_k")

# Hydrology
twi = surtgis.twi_compute(dem, cell_size)  # Topographic Wetness Index
hand = surtgis.hand_compute(dem, cell_size)  # Height Above Nearest Drainage

print(f"Slope range: {slope.min():.1f} - {slope.max():.1f}")
print(f"TWI range: {twi.min():.2f} - {twi.max():.2f}")

Available Functions

Terrain Analysis (21 functions)

Function Description
slope(dem, cell_size) Slope in degrees or percent
aspect_degrees(dem, cell_size) Aspect in degrees (0-360)
hillshade_compute(dem, cell_size, azimuth, altitude) Analytical hillshade
multidirectional_hillshade(dem, cell_size) Multi-azimuth hillshade
curvature_compute(dem, cell_size, ctype) Profile, plan, or general curvature
advanced_curvature(dem, cell_size, ctype) 14 Florinsky curvatures
tpi_compute(dem, cell_size, radius) Topographic Position Index
tri_compute(dem, cell_size) Terrain Ruggedness Index
dev_compute(dem, cell_size, radius) Deviation from Mean Elevation
vrm_compute(dem, cell_size, radius) Vector Ruggedness Measure
geomorphons_compute(dem, cell_size, flatness, radius) Landform classification
mrvbf_compute(dem, cell_size) Multi-resolution Valley Bottom Flatness
northness_compute(dem, cell_size) Cosine of aspect
eastness_compute(dem, cell_size) Sine of aspect
shape_index_compute(dem, cell_size) Shape index
curvedness_compute(dem, cell_size) Curvedness
sky_view_factor_compute(dem, cell_size) Sky View Factor
viewshed_compute(dem, cell_size, observer_row, observer_col) Line-of-sight visibility
openness_positive(dem, cell_size) Positive openness
openness_negative(dem, cell_size) Negative openness
uncertainty_slope(dem, cell_size, dem_rmse) Slope uncertainty from DEM error

Hydrology (9 functions)

Function Description
fill_depressions(dem, cell_size) Planchon-Darboux sink filling
priority_flood_fill(dem, cell_size) Priority-Flood (Barnes 2014)
breach_fill(dem, cell_size) Breach depressions (Lindsay 2016)
flow_direction_d8(dem, cell_size) D8 flow direction
flow_accumulation_d8(fdir, cell_size) D8 flow accumulation
flow_accumulation_mfd_compute(dem, cell_size) Multi-flow direction accumulation
twi_compute(dem, cell_size) Topographic Wetness Index
hand_compute(dem, cell_size) Height Above Nearest Drainage
stream_network_compute(dem, cell_size, threshold) Stream network extraction

Imagery (4 functions)

Function Description
ndvi_compute(nir, red) Normalized Difference Vegetation Index
ndwi_compute(green, nir) Normalized Difference Water Index
savi_compute(nir, red, l_factor) Soil-Adjusted Vegetation Index
normalized_diff(a, b) Generic normalized difference

Morphology (4 functions)

Function Description
morph_erode(data, radius) Morphological erosion
morph_dilate(data, radius) Morphological dilation
morph_opening(data, radius) Morphological opening
morph_closing(data, radius) Morphological closing

Statistics (3 functions)

Function Description
focal_mean(data, radius) Focal mean
focal_std(data, radius) Focal standard deviation
focal_range(data, radius) Focal range (max - min)

Advanced Curvature Types

The advanced_curvature function supports 14 curvature types from Florinsky (2025):

  • mean_h - Mean curvature H
  • gaussian_k - Gaussian curvature K
  • unsphericity_m - Unsphericity M
  • difference_e - Difference curvature E
  • minimal_kmin - Minimal principal curvature
  • maximal_kmax - Maximal principal curvature
  • horizontal_kh - Horizontal (plan) curvature
  • vertical_kv - Vertical (profile) curvature
  • horizontal_excess_khe - Horizontal excess curvature
  • vertical_excess_kve - Vertical excess curvature
  • accumulation_ka - Accumulation curvature
  • ring_kr - Ring curvature
  • rotor - Rotor (flow-line torsion)
  • laplacian - Laplacian

Performance

SurtGIS is 5-10x faster than pure Python implementations thanks to Rust's zero-cost abstractions and automatic parallelization via Rayon.

License

MIT OR Apache-2.0

Project details


Download files

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

Source Distribution

surtgis-0.16.1.tar.gz (659.8 kB view details)

Uploaded Source

Built Distributions

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

surtgis-0.16.1-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

surtgis-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

surtgis-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

surtgis-0.16.1-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

surtgis-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

surtgis-0.16.1-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

surtgis-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

surtgis-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

surtgis-0.16.1-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

surtgis-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

surtgis-0.16.1-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

surtgis-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

surtgis-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

surtgis-0.16.1-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

surtgis-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

surtgis-0.16.1-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

surtgis-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

surtgis-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

surtgis-0.16.1-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

surtgis-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

surtgis-0.16.1-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

surtgis-0.16.1-cp39-cp39-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

surtgis-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

surtgis-0.16.1-cp39-cp39-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

surtgis-0.16.1-cp39-cp39-macosx_10_12_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file surtgis-0.16.1.tar.gz.

File metadata

  • Download URL: surtgis-0.16.1.tar.gz
  • Upload date:
  • Size: 659.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for surtgis-0.16.1.tar.gz
Algorithm Hash digest
SHA256 2935ffcbecca6c5c120de3c2f08e4c3fb11f6daae8c660713b88a20c400f684f
MD5 692fb6a1bc1c446481f3d07a04473171
BLAKE2b-256 163854ad919dc1131d42971ac56e7046bdd6ffc8355a40370e227e44fbbc2769

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1.tar.gz:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.7 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 surtgis-0.16.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9bd2973722ba5b5ac80c6a3d253e01898fd25f6db6dd60417decb653876c003b
MD5 2bd0526373fcb0027b2677bd91b6ce6c
BLAKE2b-256 d598957ef05f9cd8869b6d2b9f0003188c6a8f4707ded85cd63a246f804d354a

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp313-cp313-win_amd64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c38a1e2fe3b880bdeead8b9a89059f6b5b1ea5b5a6064222ef22016115ca87c7
MD5 c7398be6ca9ccac30fd603c854529ff2
BLAKE2b-256 2334f187c04d8604994606d6ccb5c3664280002c2285d9f4abc78387a2dae5b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fa5ed7c3236a8b908093a84d34645a96af4c7306b5d0e49b848e0407be50114
MD5 caba07c2082d9addfb14ec2fedf5e13c
BLAKE2b-256 eab8bdc3c06cc5f4a245cf863b50f4e16db67a68d784eeadb97484cb4687ddfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb9262a9323ea07926c538b3b1b58446d8b92e94a4cb1ddb190a7af507d4fe03
MD5 a2b56af4f1305fcfd821eea404b46fcb
BLAKE2b-256 65d6c3d5c49bf83b5d5f501a574d53902bc638c096e2d01437d2595f25b54053

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a4517ef95c9cb189909414f0ce72c1baf2584bf34342cf5123a3868ee1b11b0
MD5 d74ec0567cd64858ffa107cdeb5c38d6
BLAKE2b-256 0bc6ae5d3cebcd37c844b5700a478f13a0983db920d36500168a8e4442d8aa0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.7 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 surtgis-0.16.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 de677e3438b173591b5a46544594303bf0f5ca932b534eefa2ed2d44a7ade0b3
MD5 fd599c90ff1f9eb2ed24f6ba97692f42
BLAKE2b-256 fb66c998fa1f7e4d83055a62e9560a4c885e3838f48253139b05509158bd57f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp312-cp312-win_amd64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43af97e9d4beec5fba8896554e56fd0f0f9dca1e3304f86994c1f4c0a71571e0
MD5 fd2afd26ab76c8ee65846cdb84fd5d5d
BLAKE2b-256 0a262fa576bb42c8ef4452b6ea5e719a3fee2b2a5c621d407082f801f3c10b3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bceb532d1334fae84141599a71849c19ea6f87ff87cbf9330ad1fb950908c19
MD5 ceb80768df592ec1cca86552e5801c91
BLAKE2b-256 d20c2932bcd0ec5a41d34f1e961c2e416923d938fc5a700784a0704fdb65a543

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb2715e6d8f8dd9e6cbc939aa79171db5ba05e9918895e94c71b48f9233a127f
MD5 ab1b796600978a42347cfaad654c8634
BLAKE2b-256 c3656b695178c598df0a2bc045c8103985ff6f9e5d38b81beaddf2b73a8121a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 171c7d15386a6a1db54dcc5802fa261183cab381a115d051c51a1a5f7b9b482b
MD5 0ab87d7839e849244a42aca98ec9bc10
BLAKE2b-256 00d39b5e2df306891df7cd93208a2b1aa85e6e27ceaac57853ce48cfed29a50e

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.7 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 surtgis-0.16.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb51ab7082895e721937cbb59f39a77389b29b89dfdfeba9c91a4ed6f4ceebc8
MD5 6b3897abbe8cbfb9e6b608bdfa426a79
BLAKE2b-256 4a30bd0564466d8e26199f9eb0fb7cad78452450883fdecd1c4ed50fb345bbb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp311-cp311-win_amd64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da2d97603278c2eff0a109ae4e2d0a48308ac85a195fa617a89290febdd1e023
MD5 9c8d811c16849f52a0407d86ae8b8693
BLAKE2b-256 e3bb95c5729bf8d527edd56fa72678f326392958bc48d906b6747973ceabdfe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c3af6321008515215d92ce075ba2c6320c78f0cf2d4298533ccbbdf38b998d8
MD5 f066e7cc758b2daa203e24aac425d52b
BLAKE2b-256 f8233f20ffd81c46be02d86f7a484d15c4954efd6a257e073f921b009c151861

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97a0e19cbb6a2ba94c5e19f1d3389715dd43ea46b7fd9ea513a1b773c45b1c1d
MD5 fbe96d22744eae6ccffef418156808e2
BLAKE2b-256 105123b467c2f63fa21b551c75039e90a9bd2120303d02fd0e1d4fef6253d86a

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee7ec8986fc7f617110148a45afc9bc1afe9c193855d22e674b435965ab8c566
MD5 c43a1827df4a96cfca9b64b820977aa1
BLAKE2b-256 8278fa2cbe13f1deb321a12e421378c22bacd70799263af900bd7613d073a652

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.7 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 surtgis-0.16.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a1ee22a29e5b78c5c83ab02514ff70a1d40499674907915db84c558f5bcdfc70
MD5 782ad77f3ad6c34ec1c969cb9a0d7612
BLAKE2b-256 0865f52b10e97b7f4c2a139fe994b3d97ea31c6467e2a78408b6ae70f18c11ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp310-cp310-win_amd64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e4ce6cfa99382944907be82d125680011bf64a9752e8677902713192ef496ab
MD5 9fe0f279bdce3011dafbc7f4b611d77b
BLAKE2b-256 6e28e498a06c8dccadea99b47f8f00badb3fcfd2f0aac56627b19dd210eb5265

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1103c4da15d61e84e4daae29e70284008c1f2584909ca844870428625f65226b
MD5 f272e554021501f05f2456c851c34ada
BLAKE2b-256 22a4ede65d25ee6491089bd96f505b535de2184f21ea3ea958e7d08e255dd194

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca3651320c89f07de5f101988445cfe9a48285677578483fb739ba708cb77cd0
MD5 66c6ccc0b1ecb09c09263068a14ad435
BLAKE2b-256 45d911a54a048195ef278c6322d33557693f30bb4d1558a81d32871ad9bc9f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a8a80d2842fe2c97bd8b67d424d4865aedf288710d11a993cf4b108f2d05b3d
MD5 ffc031760ec45d9341bb0c10e294bc68
BLAKE2b-256 d0c614089ed5cdf8369eb153a95653c39a7b38a8d1f96764ed51ef067d6d9620

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for surtgis-0.16.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7eba98053e32a19fda5de5185471d4ce9706a6b53d24ff2dc5484bb37c2dccb5
MD5 d45b650c28b9506a8990370189c68e70
BLAKE2b-256 9170280b53b55a474e73208e1b71c8cc17a128a12dadf55c47672aa0e0b14a59

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp39-cp39-win_amd64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4045a2e9b43170db104da399c9173d6189d849c563a7aa809642a598c1822ea7
MD5 18b84a34573c7822b155cff1aabc6261
BLAKE2b-256 950d3ebf8f128d6438bc2d65212191a4537757c4b3d62868e7df7bf2ca182580

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8655bb79834d5fe6155dc02266d3a749649ed3f6cbb7fa5c60274fad34403ee
MD5 dff2777c974cfbb60e83dd4402baf541
BLAKE2b-256 bc8b594582c625ee22ea350d3753bf772bacb018d9645806764edc72e4afb852

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30daf9167afb628b715f2e5368b79610c23a91727cc1ebfb5fd505c8aa5e407e
MD5 5b97941a4f4dd275749fab98d55768ef
BLAKE2b-256 1dfe940003db2ac6edd3a1e1bf11c2152ebe1a287f0272958f5f7d10b56e810e

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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

File details

Details for the file surtgis-0.16.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82bf754261eafad94c80bec9985af6557ec75c58cade8936137f3cf8f58eb27a
MD5 3cc90ed62d7faf770c7b9f1089f97daa
BLAKE2b-256 162599a1b2a2deda0246956060ec05f9052163c8863e89c4fbae4b16dd9122bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.1-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: python-release.yml on franciscoparrao/surtgis

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