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

Uploaded CPython 3.13Windows x86-64

surtgis-0.16.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

surtgis-0.16.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

surtgis-0.16.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

surtgis-0.16.3-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.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

surtgis-0.16.3-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.3.tar.gz.

File metadata

  • Download URL: surtgis-0.16.3.tar.gz
  • Upload date:
  • Size: 670.9 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.3.tar.gz
Algorithm Hash digest
SHA256 46c5ba863bb823509facbc13d5510b0ac76d2a1e61ba35f1194e299407c1416c
MD5 ae9116399e138e42b9646e70cac0b226
BLAKE2b-256 78cc23160b3259ba75e9e3f166c3efe20b040648e36caa774f3f978407cd854a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f170adcd7dd585ac85c526ad9b0b7348857e64aa6c56b97fbee399974a9a6e6e
MD5 2b6d6bc3797d7fb02aa64383c331f743
BLAKE2b-256 d0a93d156f14351b4c4e40f29b211e90de57b631a41c47e4546c8d7040c32d37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 058a85b85ec6936d20c7c4a01d8c2467aec7f667601d95afb0e2fd3f1fbe45d8
MD5 37b1d65470eba30c9f8c8a21ed3031fe
BLAKE2b-256 e4aef21d6bcead3f04656930dcaa576463def9289f11fa901da86255ded1952c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f49ccbad5114ed844409b65b4d5e22e7f2274fabd3cb0021aa823636ba751946
MD5 f3dd04333673e1ce1e30ddaa84372194
BLAKE2b-256 c9bcc993827078c44be0871efed093c4fedfb81d45f9ed2e5b1edbac1ce2bd93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 512481daa452463eb2342c636518aa3e444e0b104d7463d0befdac0c6405d8a7
MD5 a45e4bb9914665821bb764bff24b1b18
BLAKE2b-256 d23d434c331efd0e78928dc2a9290d8bd35e8cc2bc9e4fa70602a913caf373ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c3a91ae203595486a10beba245bb42ea1e045786e73fa7f3bf1facd6d28a2c2
MD5 c0ab9f0aeef46754aec0419a804f2935
BLAKE2b-256 293d14c436324fefa37efc8897125f801caec9cfeaae219ad9ae64a76409cb61

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5b962adf82a2507f9244d643dba0cd07374018501c92267e7df2e6bd32c093f9
MD5 2cdc6b6565702f1accbc3a29336ef21f
BLAKE2b-256 a535d227ac17547a7234938c6e32739e5bb454b89092251d8c9cf9b41c0403a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff837984d6817aeb09b8e14b557200dfae959a2b99b01083a3bd8e40109db211
MD5 2d678b6d78ea4f4f0bd5b91bde739a76
BLAKE2b-256 efb55fc34de269f14888aac11d11266ec1a2d438627953315f9c8becaae4e9d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9255359ba61c1cfd8861ef68fd21a78dc478a63684c7b00f795a9ee3fb260f71
MD5 94ec4deef7e34e51d2924bb32da8cb36
BLAKE2b-256 26f66f9637cf91f0258939bd2526dbdc46d35caadd10d3fc1227c50b3f33c096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0335955e1cc8318e14fa17bc231840b05672bafa04e3c0b2342ed2bd2700cecc
MD5 3fcfc52a56524337e6749c2f8c70189d
BLAKE2b-256 a83e039fe4e6a883bd1be1770a5efbd6c894ac588f79f8c877c791c9cf8798ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09e614db53da1a4bef21ae5aeb1edfdb631c887a9bf396ee3bc22e12ef923fb2
MD5 9a9b1a3f2df8453d08ec8ce75bd13b9e
BLAKE2b-256 7d03b9d877b4f821c6e62f9e8cd0cae2d522f82c49526f56d2f27fe9e806c618

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4f18396e466b087035f12ce669b2618a01f1ca86777a1fecefdecbba4a7e93d3
MD5 564a70b24aac976892f1752738be87e4
BLAKE2b-256 5ea27573e04ecbaf1700f2219d7dfbe3e2d7b6bb47794452216a1d36db9e6d9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36bb1e29e3059f9bec82f58e690fbb5e998d13aaac93d40850065d568827c82d
MD5 516c55096664b77b318cfb0563b31cc0
BLAKE2b-256 0c52d7cfc7b77313fa3b5a912c8ad6076496d47eb7d39780dbbb7f30b13d53f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6de3d2cf372b8726558302b10da53a35b20299387386fe446004d0f6c35c3a3a
MD5 cbc824e29f16c5a91875410644d8e3c8
BLAKE2b-256 8de01cd954aafb070b0318c5d1d12d5db48ca0284c93b1c2f669fe7cdc557b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecb47cd854f1b46a17977f71a4ebcdccc62babd72d16cf7922d684a12a5742a8
MD5 684dd62406828aecdfddc5b3cabd5f95
BLAKE2b-256 eb99eb8cb5281e21c6bbade648076aba7f65aa880278f2dd3f900b979ea5f59a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95a09eb066a821ce9f99db39652a08710fc8cfff10674bf3b6d43e32293f3d2d
MD5 a09f4087e12fdf6d05e8cdfeff175036
BLAKE2b-256 6358bb6bb5f271121bd518b6434ae45b70b47a875137050d2d2cc9fb08fca6ee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2c84c06d2cd257775f5f3a64f627b4e5341d131c28ba0756c455b9c59c7f7175
MD5 9dd1e0deef1420b054d88b9900e482c2
BLAKE2b-256 b33b42bd39ea8a274e10e9495309db126491342caeb33fd63f29e56756fe3126

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b572241dc347a4e1f545f9bf4ea7320f3e1494beceabb68700d84430265ffe4
MD5 dd7e1773f6fc851a010cbc16bc087595
BLAKE2b-256 a187f0f284e379466f50ad769f7d906ddfe4fb4596b329faac72eec25315e4f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f43e9868e7f89e961f08cb9b2b15eb0c277077a674f7c815b67156e0bcba5ebc
MD5 60d964e01b15fb3eac2e4b22091a6115
BLAKE2b-256 88a966f1ba32169b461b1f34f57cba0a58f9586ce96b5ec6c2271673be4d6c40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82ceeb6190921447de4d403ac413b023badc773d503e889a203b843b9ac34fac
MD5 01c1bc7a7e0bc6d2b637001578d0d71c
BLAKE2b-256 8192cb02fdcb9fbb5f829ecb2e8e0f85e5f0a7cd18b310389e15f04c38a37514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce1efce3356c102fb8577d10710e1b2345a94aaaa0f4e35694880eb9a75287de
MD5 57e645dca1d1c8fe33b67341ce59c510
BLAKE2b-256 485c2c711a2ff9fd17babf3502726936eb962a74bd9d84d701a1060aa51c2153

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 41e47579ff39a1af4fdfb3619eecf02c159178e5a3ef20e0fcac0e8bd9a5b4ea
MD5 6bf4c15e65d2f68488e8ea43e73d7436
BLAKE2b-256 87128e7ab185e8fff25e42fc70550d602baffa681f440a7b901d4f5ef8a06fe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e312fc6c9854b5644191c6e325cf336a7c8398d97e3fdd14f97eb6736d8df94c
MD5 607ac71f2e7f405c9546c1909d2d091c
BLAKE2b-256 279176fdd9779345598a46a13dcf92c0feae5bded1e40fb89989a97633a6c002

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31ff194ea4d0c6cf5b740c0b99a5096c35ef86c19c6524f6999b7c0e547e518a
MD5 e01d55eb7bde70d8c89d26c7c0948800
BLAKE2b-256 30457fcfab42ff033e23ccf45fbb733983319811d659363dc7d5b88be942ca33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa6b0c44215dd87efde447e836a8838fe141ecbe82f496ae2060d6141bd39588
MD5 99bcbdc3e6045eba2372c83ed92f2c41
BLAKE2b-256 5c57ba8ee4ef445e6d6dfd402f2ccce423ac016dd12db0850aecc606b8744853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82db83fc0e4605f5dd4fd3fa06c44a1829e5ef923bd4f11d275902246e7e9616
MD5 eca07157dea39ca4307aedf249042d30
BLAKE2b-256 cd4b7fc4de31412350d81f4b4ad10eae4cec2aa1f3ed311e6d13d24c4aba3853

See more details on using hashes here.

Provenance

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