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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

surtgis-0.16.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

surtgis-0.16.0-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.0.tar.gz.

File metadata

  • Download URL: surtgis-0.16.0.tar.gz
  • Upload date:
  • Size: 656.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.0.tar.gz
Algorithm Hash digest
SHA256 03aefd7b81e89daee3ee558f73a1a62b85d0fc2c1accedc51a41d2221fe63bef
MD5 fc50cb3b2da92b22ed1d2158daf4ba3b
BLAKE2b-256 2716920493083a788ec0772465d9c79ff41e30dca178b3032e4042873b9912f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d4cb3141a05c6c8e0143e83e593aa8f9d33d5d380d28d94f3b0d5627bd212c55
MD5 4e3084aaf1648c329b7b0e1158206ed3
BLAKE2b-256 d345cd31d01b946423da4bf9610f97314ab33fa527fbe4b2307e45ff413802e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb40c2468a6a01a9503e2ca8f6ec3c2f19230d8cd49e5f6554d6647674914e53
MD5 79835b6f4e79c99d6716c1ec221aa92f
BLAKE2b-256 e9e0eb55cfa8a8943378e13b07d5a6da55d64e9425cad98df5ded961fd778dbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c75fc926dc2522817f25992803389bd54693489f0eb81bafd906a3771858790
MD5 1d64947dc8040fd2c13435ce0e8a1494
BLAKE2b-256 e278b0845d730bcff082921ca94a9b4b505624818c1875f4cc38e70956909803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac2517851009779d8a1f2965d46f4a43d81edbec851bb52018c691c8616add15
MD5 64a26e33cf8d6184527a602dcdeae133
BLAKE2b-256 631debf5f4e2c9ba7324129bfbd0f13b19af2804feb37875d929c3375061a2aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80de52306e305ea4927789662f1f38a2b20cb8eb72f6254a9dc880dc430b81fe
MD5 8114ce9ed12c577a82a8d2823cffd85e
BLAKE2b-256 3b7177db4c593dbb6b83a70ef0546a17741db647f4490b0193369bb3bbbe78ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e37f893d08bc1728af0a7c2609ab1bf9837355c7d2c5ac67a97f22843e70d35f
MD5 afdca07586581eac14b125f82c94632a
BLAKE2b-256 7f2da4d4343d8e0faeb8bf40739a2d710426d568ae865cf7d6b299b2c0ee54c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25a3d7b01e00b790a1bf514bce9fc78da714576e6bbbd303578204060eac8bce
MD5 b8f694dadcdf25cdfc18003840137f3c
BLAKE2b-256 ba6490fd318d2262a478af6f35fbca155fcbb297a4ab4769ad57e18d5fa472c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44ff47aaf08174751129b517bbd6de7867e5c157bad929a46780ce0924ef7128
MD5 dda06d2065ce9682e01d5e908156ae0f
BLAKE2b-256 0154cee567e14756ba494adebbb0c2d596a925415490b5b831abb7f1d7bc2ca9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef112e6f1c5bcaf12b838d2739ef78d276cb6a60d6e2d1ed25fe7bae99f3037f
MD5 2783d68cd0f07e92df4e27f263af928c
BLAKE2b-256 be76f5d8c2ef0ab8b7ff929db4b3012f34c2e8f838aa7a3d6dc90d75f0edbc10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9b4d0fcbb7917034b64aa6c51f3d021ce407cdc2f5f6997d7e51a97bb3c3a1f
MD5 7d76dd18494965c4e1b24595971bbb54
BLAKE2b-256 b2c5fab78fdb2dd7b75c449fd53e20fee9827132514b3de6d2181db336d4bbba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c84290a78346519edcfeeafad7dc1f40114e057ca0c495de97dc81ab4902033e
MD5 ed7fd76e49861244ea473c7b1a5532a9
BLAKE2b-256 248cce3b6c03a05873583e7695a0a9d341359170b862417f33719bfd9da12a16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96bcfefb7423f01662ac397559c156c9eba9710039e75a09bc0bde1df852f0a1
MD5 cf1706e6f069b7c687b47a8a0d6821d2
BLAKE2b-256 dbd57cae2ae524bdc0e6f1826a09e79a6cff9d212bb636882488803efc631ab4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b447fea410bc2cdfea0fc34a492d5c6bca7350948a6e5f8fb6e1c0396e17606
MD5 c6e399f26cbf2e1996f72b4203cd125f
BLAKE2b-256 b1cd442f1fd64c6b95f71c0eb9f7da08fe3a7069450584191459df72ea6060c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 277b98a8b63780b762e4f7007acb9464b553f9cd993768fe50d4e36d91bc6daf
MD5 32acf9c18efa46368702146dd167e78b
BLAKE2b-256 9ea0ef41627ab1ba891f803cb414616b8e7aa08c0f15ca7539a5070ca1503c78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54b761ee6b0bbf22b3bba8ef6fb70d3c25736c828fb5f6004d9341c6f5b9cf3b
MD5 b4ad7e368d2cd3e0fa9d1d55282ec23e
BLAKE2b-256 0b9dc273523db75a4a55d6e36754393c48fbf4ec22b74b5c493faede90b3f07d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5014787660dcdab00f7bbcc1f2941069f423220148388e44bb116f3485505e7
MD5 2608dbbf34b76aebfb2aad54bf47f2bc
BLAKE2b-256 f8583a229120caa47a9de1bee63090f2299b13c7cfd18a569b45a1b7c8454cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00fcd542649bf007c3e50380b24fa9845c4e65f14b16442d635cb989afc265d4
MD5 a3f2c22697e73351f330b3b6af12984f
BLAKE2b-256 49c60f1208738c333afe773829f9bbfa7fe2d094c42f5cec54a43340a4a45513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9ebfd4c9159c8112f759c4efc439999a99d4a293337192a5241649261a73016
MD5 910930252da37ef4140f370dd413ebe7
BLAKE2b-256 5fd3781f2c6e06cbf5c0cd16c35c2847fc21f3bb481905493f82507082b7b11c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c6a365f51c558bd45b8e7f668b271db04bf42ee3d4e6e0f21f42aa2586313fb
MD5 2304a1973ec43052afbf418cb0a6aaff
BLAKE2b-256 38dfe8c00a88f695ffb32c5b7fbde404f1e06fada4a6b09049785fad2af10ade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c960d59e5a970c8c239e2017a2cc39303b59ac34339fd375bcb437147932890d
MD5 4c0fc68825c2a1311ebf43afcc067916
BLAKE2b-256 07cf7dc667915e42b6e8c7f0023186849e822a5a66dc6ba43dc77576763fcc71

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: surtgis-0.16.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a22ecc85374d2c5c1a60c915f1339ea92ac9223022bc42296972565a53c63aee
MD5 7742782a22c5853dfef10fb76a82c568
BLAKE2b-256 964eabd8e5c59ccfe7f9c6637ee19a0c31cc9f086d9e3eae46153dfdf733becb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63bbe0868614a5f7157207ac6e24f136c052868509a3ec7a7676a3fc393c12a5
MD5 0b0e78f2e50316f39c025279c5c23a28
BLAKE2b-256 52a0e80f9056b73694bcd4d763ab54e2944a0fad2874ae9ce36300ad91708d0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c3dc4a33e565a79781c22de61b3243c2892cab0d1c20dc59640c0e3a8eeca01
MD5 3d6dd5e99f3f7a6ec59efb40c8dd89e3
BLAKE2b-256 12eadca97078e8ba957bad6b0f9fe9a41d9b3df99fbe1c66b689b7651c3c942f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f914035c89076f6706c5d547f0665d797de7c836a3a9307d3d5af6d1d622b323
MD5 154ea1a5651168d5d6963b06ccbf7b83
BLAKE2b-256 3d59f5cf8e864d567a77d6a120118eb9cd729e8015d88e7e26d1542f8a2c5e6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for surtgis-0.16.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8da5f3029a2e08737cc89602b34c44e8616b283c8b4b30b2d9e486faee12733c
MD5 25ac257a794c60c8024014dcf0805d2d
BLAKE2b-256 5ad13dd25e9c9e8230deb5618777e33881591b35226ac36ea246a73957e611a2

See more details on using hashes here.

Provenance

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