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.4.tar.gz (676.7 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.4-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

surtgis-0.16.4-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.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

surtgis-0.16.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

surtgis-0.16.4-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.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

surtgis-0.16.4-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.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

surtgis-0.16.4-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.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

surtgis-0.16.4-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.4.tar.gz.

File metadata

  • Download URL: surtgis-0.16.4.tar.gz
  • Upload date:
  • Size: 676.7 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.4.tar.gz
Algorithm Hash digest
SHA256 6659e0ff163f04006c63314a0e3d23108e9818a8c339d7613e2cf9b12d38988e
MD5 9ee244089613e13547abebeffa5a9256
BLAKE2b-256 0d900da763739768dc2b658947ce377e098c0e61147e692c11ea10c3d8366ea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4.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.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4933d93c4fd44638ff174c984d7f807f6b92e8953f8c88e062df89058b397f94
MD5 d72a7547ce29b4b197401c194792c32a
BLAKE2b-256 03015e002ae6aa4fb2b69c8321acc07707f804d1d42b2ed05d03514a1ab3156d

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1591d816199bb39f5b685fd7065afb770313202c6823c17924d45cc315dab3b
MD5 74016b5c712dd0ef662cb60e2079d4c6
BLAKE2b-256 e492aa505f70d652e5a4d865f4c8c4cb981730ab1ca5b200ebfcce1e7b0b3683

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1a7a397687c56bbfa7b5792db594e9d2ee4805dc8eaba967cc833608609fc8c
MD5 b10671bb87420608c2abf901eb29fb30
BLAKE2b-256 81442db85a230560237c4543eda63710b2b9daa35beea9c61ea19b73c5d5d53c

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b15afca1c45880ee41e124c4e3bd62780ab96a978b06611e32f619304cbe6e3e
MD5 66efa3aaf92d8252f8625d85f702fe20
BLAKE2b-256 e71785e2529c646d6ce33d3a71d58acd8b543bb6d3fc1b27053247193220491c

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75c4807455f85ad3f1b76c07925212aa4122a4c1d570a9dac6e380dae1dc5c66
MD5 644b2651f6119e5e013c24b45d49b46a
BLAKE2b-256 ef8e0ff85112d9718a386ba0a651255a4b14fc1743929147eb46408a819fe45b

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6d439f1e1cba3dd1608187e731aa10a602a14a9d301ceefaa65ba2aaa0eff288
MD5 ffe9e78bb90f67b784298c9beb4180fd
BLAKE2b-256 7d533294632f6a03a62798abc7eec1823c863ea1463cec7b6d51d62f7ace805e

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82330b5c22da76b727f46fdaaf736b0898c717874ea63492ba19daf5f959da26
MD5 3f72954143c0d7518973c9bdd96362da
BLAKE2b-256 3497b79e67a122db6de2327c7899b85e44257620e0519cdb1efe6f143d35d7f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1ccef6e07ee76a7f4f2533451f2c41c78fa3d5be0048b002a83ec0566d5165a
MD5 1c341a192926d994a75af60db9458983
BLAKE2b-256 4d111318671d133141ee5ac8ce95d99abdd85e4d4f855ba410b58b29db7402f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed2202fdfe52f770f4a6bb0d63c11244df8e3331befa2ec0da52b32c7cae2214
MD5 9236873e3940a8ef73b0244973bc51be
BLAKE2b-256 a3fbab6608d96f8edfc0549badda91dea6935f5c1ac97701a095ccc243014623

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9401fc23471a40a57cb1c60546130b1f89b498e2bfe414600f7ad84372fb18d2
MD5 b6bfec2da09951f4c7521e403e2774d7
BLAKE2b-256 ed011898d3531be3eff5ac70c3d7842df0233d08d0ee69900ee2ca1ff6edaa6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dce1bbe784f257e201330525036adbe35bc2b1164295bff1853b33ed1e2d134d
MD5 72c80d51e90df7a9bef15dd333b4fb69
BLAKE2b-256 f2ebc5f07bc59b33d5940459a57ab213a8332bb68434a689e0cd20df22094d08

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66fa88e91f57b1b092b1fb44f8a05ca119916c178e38daed0c2ccdb7d2510025
MD5 09dab08c81c3b50ed78a34ffe9fcecad
BLAKE2b-256 7ddfdb46f9e73c9bc3380d3034459a65d9995e6787b0b7b81085902e14b5e93f

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4282794c0ce29df2371754ec2a9fb94299a854eb33b5fa748d0d645b3365c8a
MD5 dde1d06d81cb04ec2fbd074fb2daa3fc
BLAKE2b-256 ffb82ad070cf616603587f325bb47e4d184babd47bc745449a93169d3d889ab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6869f52c680ecfb1948a7cdb94b69c0864e5626cb9d38371581919934bf992b
MD5 b82cc843456fa9ffb18746811b113482
BLAKE2b-256 14e05d86fd6b7c46848628da7a16ff834dacf0af2bd457fdcc23b01bf7030277

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf43684616890071c920d714783e40cd3361de019776ec812981162e66fccb7b
MD5 12e33547b323f458bbf5f6e2b3697f71
BLAKE2b-256 b248582e0f0c6b25d28a7bd7001eb63775969040667eaf77c8c6f0ed52f414a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.4-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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ddc9ed144d2bac342390d8ad7da7ee3e28ab9fe808eb7e5eccaa28450c384c9d
MD5 9e41c8b2e483ecb5c7ea0728bfc0e408
BLAKE2b-256 859b030fc60f7fd19448168b109a938ca1e36920bb9e09b6cb3ef7822aa7363b

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4343e1e459b584a0f7cc52bfd4e207df499322bcf623fe69ca05c9c43f3189e
MD5 e4b3db32bc06910679d0b34de444b69d
BLAKE2b-256 489b60d6faf1ca92c38059b3d5216d667db3a9dc2a130fa361d554ff3ec859b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2910827080363e936b7323bbad0968976ad30b29d8697622990c7081ef0afd4a
MD5 b4d929c007829b263b14acbb37dc9cda
BLAKE2b-256 e4fc310cbe8ecd2e50f90f034ada3ab5ed144ec988fa623fb99255cce9a7063e

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2b4aedf758e036fe105b15891a207c929dbf68c07762413a54985ce9be739e9
MD5 80c732e7ff8c87ef75d9a755e4f17a5c
BLAKE2b-256 c51981eeed05b755384344491de6e1c1d54997e39336b78d8196c50087df04b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b91eecbf3113897a55b7506800d979ef5c39bdd678bed5ae576ee01e7bb5d0f6
MD5 f372763184760e563ce1a1c9e4feaef1
BLAKE2b-256 2564794c6ef788daa75391500beb1069e1b4a18cf44af661ea48c330970ecf67

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: surtgis-0.16.4-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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 434327f1f522bb57fdab46c94d8ad118a14f00afe0767ced15d13c42ad6cf8dc
MD5 9a0337f47bcb657323793fdb38e23162
BLAKE2b-256 1aea072be116d6de65da8cbb3cfd58cc999aa3ed0503bae1f038bfe338c9af5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32be7a9d627f245e2df8ce3ca2864c3a71469faac45962b343348347dc0ad410
MD5 cade30cdd519173c713718afd142bdae
BLAKE2b-256 e5c96a8807c1d811539903b48b061e7c99ff37f0870b2a0b074a943d11385a30

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3839347ae750c470e6c46e6f2b48b84aac694f984c59e2bfa35fb07e21ca947b
MD5 99c5bb808f075a1e6a27c2012f4dbc93
BLAKE2b-256 94f8225bc87dc1c343b42b6ce01233ad4023ec3240266a535ef2f8d9dd52dad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccfbb6b19a2628e7600cc5b3b459b1acfa2346bc1b86134dd76b2a2d16052b63
MD5 43791b06696a478fecd1f77c97df052f
BLAKE2b-256 ac5e41b19c65571db933aac48c9e9518a82ad9f486234bc7243845c97d13bed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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.4-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for surtgis-0.16.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4886c11de228a713dbef2e2c6847938a3dae6a87a4cf42e31f1df5281aef429e
MD5 a2ddbac066640e7a146a39bbfc7a2d34
BLAKE2b-256 2f738eb6a7653c6b13014a696142be4836412746e388f8d1172585b5350a35d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for surtgis-0.16.4-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