Skip to main content
pyramids — GIS utilities for rasters, vectors & datacubes, built on GDAL/OGR

Documentations Python Versions License: GPL v3 pre-commit GitHub last commit GitHub Repo stars codecov Codacy Badge

GitHub commits since latest release (by SemVer including pre-releases)

pages-build-deployment

Current release info

Name Downloads Version Platforms
Conda Recipe Conda Downloads Downloads Downloads Downloads PyPI - Downloads Conda Version PyPI version Conda Platforms

conda-forge feedstock

Conda-forge feedstock

pyramids - GIS utility package

pyramids is a GIS utility package built on top of GDAL/OGR for working with raster data (GeoTIFF, NetCDF), vector data (shapefiles, GeoJSON), and multi-temporal datacubes.

pyramids at a glance — every GDAL format, none of the boilerplate

pyramids-gis is licensed under GPLv3 (see LICENSE.md). The platform wheels published on PyPI bundle GDAL and its native dependencies (PROJ, GEOS, libtiff, NetCDF-C, HDF5, libcurl, …) — each under its own MIT, BSD, LGPL, or Apache license. The full attribution list and shipped license texts are documented in THIRD_PARTY_LICENSES.md; if you use pyramids-gis in publications please also cite GDAL itself per gdal.org/cite_gdal.html.

graph LR
    GeoTIFF & NetCDF & Shapefile & UGRID -->|read| pyramids
    subgraph pyramids
        direction TB
        Dataset
        NetCDF_class[NetCDF]
        UgridDataset
        DatasetCollection
        FeatureCollection
        subgraph Engines["Dataset engines (ds.io · ds.spatial · ds.bands · ds.analysis · ds.cell · ds.vectorize · ds.cog)"]
        end
        subgraph Plotting["Plotting layer — _plot_helpers.render_array · mesh_render · NetCDFPlot · Selectors / ColourOpts / FacetSpec · basemap"]
        end
    end
    Dataset -->|crop · reproject · align| Dataset
    Dataset --- Engines
    FeatureCollection -->|rasterize| Dataset
    UgridDataset -->|interpolate| Dataset
    Dataset -->|vectorize| FeatureCollection
    DatasetCollection -->|lazy temporal stack| Dataset
    NetCDF_class -->|extends| Dataset
    Dataset & NetCDF_class & DatasetCollection & UgridDataset -->|plot| Plotting
    Plotting -->|delegates| cleopatra(["cleopatra<br/>ArrayGlyph · MeshGlyph · tiles"])

For the class relationships, internal layers, and detailed architecture diagrams, see docs/overview/architecture.md.

Main Features

  • Dataset - Read, write, crop, reproject, and align single-band and multi-band rasters (GeoTIFF) with full no-data handling and coordinate reference system support. Public API is organized into seven engine collaborators (ds.io, ds.spatial, ds.bands, ds.analysis, ds.cell, ds.vectorize, ds.cog); same-named facade methods on the Dataset itself keep the short form working — ds.crop(mask) and ds.spatial.crop(mask) are equivalent.
  • NetCDF - Extends Dataset for NetCDF files with time/variable dimensions and CF conventions metadata. Optional labeled-array interoperability. NetCDF.plot exposes a labeled-array-style plotting API (variable= + grouped Selectors / ColourOpts / FacetSpec dataclasses, curvilinear coords=, kind=, animate=, lazy chunks=).
  • UgridDataset - Read and visualize UGRID-1.0 unstructured meshes (triangles, quads, mixed). Supports mesh-to-raster interpolation and mesh-to-vector export.
  • DatasetCollection - Manage time-series of co-registered rasters as a lazy temporal stack (per-timestep gdal handles open on demand; the full cube is never materialised in RAM) with optional dask-backed reductions and groupby.
  • FeatureCollection - Work with vector data (shapefiles, GeoJSON) through a unified GeoDataFrame and OGR DataSource interface, including rasterization and geometry operations.
  • Plotting - Dataset / NetCDF / DatasetCollection / UgridDataset all expose a plot method backed by cleopatra (the [viz] extra), routed through a shared pyramids.dataset._plot_helpers core. Optional web-tile basemap underlays via pyramids.basemap.add_basemap (a thin wrapper over cleopatra.tiles.add_tiles).
  • Cloud-Optimized GeoTIFF (COG) - First-class read/write/validate support via ds.to_cog, ds.is_cog, and ds.validate_cog.
  • Spatial operations - Align rasters to a reference grid, reproject between coordinate systems, crop to vector boundaries, and convert between raster, NetCDF, and vector formats.

Installing pyramids

Installing pyramids from the conda-forge channel can be achieved by:

conda install -c conda-forge pyramids

It is possible to list all the versions of pyramids available on your platform with:

conda search pyramids --channel conda-forge

Install from GitHub (development)

To install the latest development version, you can install the library from GitHub:

pip install git+https://github.com/serapeum-org/pyramids

Note: installing from GitHub uses the sdist and requires a pre-installed system GDAL. See the full installation guide and troubleshooting for details.

pip

To install the latest release from PyPI:

pip install pyramids-gis

Linux + pixi: no glibc pin needed anymore

pyramids-gis ships its Linux wheels tagged manylinux_2_28 (GDAL and its native stack are compiled from source with the manylinux toolchain). pixi's default Linux baseline is glibc 2.28 (it tracks conda-forge's floor), so the wheel resolves out of the box — no [tool.pixi.system-requirements] entry required (verified with pixi 0.65 defaults; newer versions, including the 0.68.1 this repo pins in CI, share the same baseline).

Two cases still need a pin in the consuming project's pyproject.toml / pixi.toml:

[tool.pixi.system-requirements]
libc = "2.39"    # only for the older releases that shipped manylinux_2_39 wheels (0.2x-0.39.x)

or libc = "2.28" if you run a pixi version old enough that its default baseline is still below 2.28. On Linux with glibc < 2.28, install from conda-forge instead. See the full installation guide and troubleshooting for the other cases.

Optional extras

pip install pyramids-gis[viz]      # cleopatra plotting support
pip install xarray                 # to_xarray / from_xarray / to_netcdf interop (peer dep, not an extra)

Quick start

from pyramids.dataset import Dataset

# Open a raster file
src = Dataset.read_file("path/to/raster.tif")
print(src.epsg)        # coordinate reference system EPSG code
print(src.cell_size)   # pixel resolution
print(src.shape)       # (bands, rows, columns)

# Read the raster data as a NumPy array
arr = src.read_array()                  # all bands
band0 = src.read_array(band=0)          # one band

# Spatial ops route through the spatial engine; the facade stays short
reprojected = src.to_crs(to_epsg=3857)  # same as src.spatial.to_crs(...)
from pyramids.netcdf import NetCDF
from pyramids import Selectors, ColourOpts, FacetSpec   # grouped plot options

# Open a NetCDF file
nc = NetCDF.read_file("path/to/data.nc")
print(nc.variables)

# labeled-array-style plotting (needs the [viz] extra)
nc.plot("t2m", selectors=Selectors(time="2020-07-01", level=850),
        colour=ColourOpts(cmap="coolwarm", robust=True))
nc.plot("t2m", facet=FacetSpec(col="time", col_wrap=4))   # small multiples
nc.plot("t2m", animate="time", chunks={"time": 1})        # lazy per-frame animation
from pyramids.feature import FeatureCollection

# Open a vector file
vector = FeatureCollection.read_file("path/to/shapefile.shp")
print(vector.epsg)            # CRS EPSG code
print(vector.total_bounds)    # (minx, miny, maxx, maxy)
from pyramids.dataset import DatasetCollection

# Build a lazy stack of co-registered rasters (no pixels read yet)
cube = DatasetCollection.from_files(["a.tif", "b.tif", "c.tif"])
print(cube.time_length, cube.shape)

# Reductions over the time axis use dask under the hood
mean = cube.mean()                       # nan-aware by default

Testing

This project uses pixi as the environment and task manager.

# Install dependencies and create dev environment
pixi install -e dev

# Run all tests (excluding plot tests)
pixi run -e dev main

# Run plot tests only
pixi run -e dev plot

# Run a specific test file
pixi run -e dev pytest tests/netcdf/test_dimensions.py -v

# Run a single test by node id
pixi run -e dev pytest tests/netcdf/test_dimensions.py::TestStripBraces::test_with_braces -q

Docker

A Dockerfile is provided to run pyramids-gis in a controlled environment with the correct GDAL stack preinstalled via conda-forge. The image uses a multi-stage pixi build for a minimal production container.

Build the image:

docker build -t pyramids-gis:latest .

Run the container (mount your current folder as /workspace):

docker run --rm -it -v ${PWD}:/workspace pyramids-gis:latest bash

Inside the container you can verify the package is installed:

python -c "import pyramids; print('pyramids', pyramids.__version__)"

Download files

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

Source Distribution

pyramids_gis-0.51.0.tar.gz (937.0 kB view details)

Uploaded Source

Built Distributions

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

pyramids_gis-0.51.0-cp314-cp314-win_arm64.whl (26.7 MB view details)

Uploaded CPython 3.14Windows ARM64

pyramids_gis-0.51.0-cp314-cp314-win_amd64.whl (37.9 MB view details)

Uploaded CPython 3.14Windows x86-64

pyramids_gis-0.51.0-cp314-cp314-manylinux_2_28_x86_64.whl (31.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyramids_gis-0.51.0-cp314-cp314-manylinux_2_28_aarch64.whl (30.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyramids_gis-0.51.0-cp314-cp314-macosx_11_0_x86_64.whl (46.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

pyramids_gis-0.51.0-cp314-cp314-macosx_11_0_arm64.whl (43.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyramids_gis-0.51.0-cp313-cp313-win_arm64.whl (25.9 MB view details)

Uploaded CPython 3.13Windows ARM64

pyramids_gis-0.51.0-cp313-cp313-win_amd64.whl (36.8 MB view details)

Uploaded CPython 3.13Windows x86-64

pyramids_gis-0.51.0-cp313-cp313-manylinux_2_28_x86_64.whl (31.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyramids_gis-0.51.0-cp313-cp313-manylinux_2_28_aarch64.whl (30.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyramids_gis-0.51.0-cp313-cp313-macosx_11_0_x86_64.whl (46.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

pyramids_gis-0.51.0-cp313-cp313-macosx_11_0_arm64.whl (43.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyramids_gis-0.51.0-cp312-cp312-win_arm64.whl (26.0 MB view details)

Uploaded CPython 3.12Windows ARM64

pyramids_gis-0.51.0-cp312-cp312-win_amd64.whl (36.8 MB view details)

Uploaded CPython 3.12Windows x86-64

pyramids_gis-0.51.0-cp312-cp312-manylinux_2_28_x86_64.whl (31.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyramids_gis-0.51.0-cp312-cp312-manylinux_2_28_aarch64.whl (30.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyramids_gis-0.51.0-cp312-cp312-macosx_11_0_x86_64.whl (46.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

pyramids_gis-0.51.0-cp312-cp312-macosx_11_0_arm64.whl (43.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyramids_gis-0.51.0-cp311-cp311-win_amd64.whl (36.8 MB view details)

Uploaded CPython 3.11Windows x86-64

pyramids_gis-0.51.0-cp311-cp311-manylinux_2_28_x86_64.whl (31.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyramids_gis-0.51.0-cp311-cp311-manylinux_2_28_aarch64.whl (30.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyramids_gis-0.51.0-cp311-cp311-macosx_11_0_x86_64.whl (46.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

pyramids_gis-0.51.0-cp311-cp311-macosx_11_0_arm64.whl (43.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file pyramids_gis-0.51.0.tar.gz.

File metadata

  • Download URL: pyramids_gis-0.51.0.tar.gz
  • Upload date:
  • Size: 937.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyramids_gis-0.51.0.tar.gz
Algorithm Hash digest
SHA256 28635eeefbd022b5cd160ea0aaffa28d8b78abf718f92bd5c7fc5fa0aa99d408
MD5 0b45262af6abf5e6ceed3827805886ab
BLAKE2b-256 9bb9de110ee08003d79002fc90d9fe7139ac957f8b863cb7e2d2a1c48fd55ee9

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 defedf06aafeb2eb7aa1f7094377c61c0f0b763baedbf66d3e08cc3b6b9044cf
MD5 42c434c6d465004232c9b215ccf233a5
BLAKE2b-256 ead023b8e367232c948b8ff1ebf2a43ab1d75150ae3ff1b7eb150b3ace5ed5a0

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fd5c22e8790096f333c82f999b9458da482cfac445c79bada222c79d2ae196e6
MD5 8deea7ea145124ddba240c4b19ad3101
BLAKE2b-256 03c75b18b0a5837a4c73cf04990e83ef028c8eceb3c0c4641c93ccef87e2834d

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95ab1def4dc0d8d0f6cc085c8fcccd48cf3f5344fe32dd4eaf2267ca33d160db
MD5 428f2fd41df76510be94e6c8974a4edb
BLAKE2b-256 fdd05f841e277f360ce4a11e528c2d8bc2d93875e8f3fb4def71277ccf61bb5a

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0f000cc1d07987c51d8b9ff2c85c21d302d9bbfe8d337bbd812c9d534156eb8
MD5 1eba97cbf9da7c8683c34f6b045e4b66
BLAKE2b-256 42a761800fa9061f5bc5fc6aab50b82f5de4e54ab990c540ab5f26ee7d5a5ff8

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 917ac7c9d5ff6eff00c880071786f12dc82d6c7ebd251bb71b5edb0a2604aeed
MD5 dca7eb3ebf9f40a82ada53c5625eb5f4
BLAKE2b-256 c849bbf3b547ee6111fb4bd10f7c89c849239a181df02ba00717ee1c724cdbad

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d20d30fc1f9b0c0eb9ff2f5d95da4372fadbc0b8a6bc01eb5fd65574aab41a3
MD5 a609a89f2e88760fc35431ba8a22cb45
BLAKE2b-256 84c5fbcb12c4eb20c90d32c7afb251d257313af98f5d3fdf9c25ae92d6bdd9ed

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 77dbdda7742e718ff7583f27fa33ec4f4c01b8ef29c9d520977bc4ed8e123239
MD5 b82c14090aee4d85432f640f95536e62
BLAKE2b-256 4fdcd5a4bb2a4a11096de98f39c9b5d96a0f72f3e754d57720bb193d60db0a85

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a27b2499e8e8228b3aaf3640f619dc1c4adb5264cc9132b18fbd4ad19d82c8d1
MD5 92b482bc6e2e208f633d892d8a6312af
BLAKE2b-256 953016d20aee56b4c555b4bc54c837a56781b0663e3a00432fb5436d016632d4

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc0164982e6748a3e890940bc4bc3583fcceaa4433a997f372fe5faa49802494
MD5 f4836213ea4beca6dc18891de91e849f
BLAKE2b-256 d27f4c69739c058720c0755e7982c4eba80af50ad9480a80e300e302080ee8bc

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93119e37d1961e23d821391f0263d32fe3dedc651f0e5fbf9f1957578a76098e
MD5 a582e8ee60455de313bca46a0b5321b1
BLAKE2b-256 67fb679dd66c1bad3a87f04600acc49e72421ec97bdbd2fa8575725e0955960d

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a2eb6e364b731c811ef273d8f0a8a6e28415eacd5d3acdf471844c1cebd4964d
MD5 aa25e869760a050d5e876fe0000a9efa
BLAKE2b-256 33d8e3a23f88ad334766b6afa4d068f3e22e79224d025adf0f6b7b585379d8c8

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 239ce3f68061f66a7674a9774bf740c59284d94e9d5dd966044a6e4715d4ad49
MD5 472e633d2dada3500568376c7a1086de
BLAKE2b-256 a15b9f6c4e868ffcfd3d64cdf953770047234cdd494fcf005870f7099b05c81e

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d8dd3a1cd19d72c578fefadcb3319632d0cfc27f011dca1a081cb2edd89bb2e9
MD5 067afb0a3ffdcebf01a9d3a8d4d61050
BLAKE2b-256 61d65ed17b955676554a9c33d500802652e43d66c044e1f9a45eec0bc6aaca15

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d27d99b17ccacc5e5c919a13f1acaa3f19e8543a9fb81931f00510bd7074d2e
MD5 b26e0f9141ace79e69ea5b3d1b344e3c
BLAKE2b-256 7c90224f010557ad2d3dfbf55998d4bf478260b330ce727ca6154635417df5ba

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 167cbc8b08211a1bfa6d5e4563cd7fdb862793112844570633c7cd6b888171b5
MD5 6931b13baef52cc557d0d2d2ecd51305
BLAKE2b-256 f3fba9188cb34398065c0e459d11461300d63d70c4a23df16b7dbe399f0a5cfc

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d367d3decd55d74e7bb19c57a95e6afcc846cdb825d3c2dab49c79b786252eab
MD5 f32a11dce618789886341283f1c0860e
BLAKE2b-256 b69354554d42824600308f97460f6b2551925fec3008e9dc60d4876e02873420

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d91fb3c540a2ec521a84e1a65520aff079632dbd47a712469149a5522e5a2f91
MD5 b13987857fc89c403c6a197e76344b71
BLAKE2b-256 62feef0e26eabdce799cdafff09c4c6363abe2cf30834b5a1ec4d4f32926f347

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 024cf52988e764ebf62427dbf2c0c2f7433d42336d90bf6ff34ab16944e2f164
MD5 aa4e5fcb185d1cd0c2a98d2a18fce89c
BLAKE2b-256 65c245924577e4a5678cc92ff9ba3c5a55644cf0ca111b5191985899a4508d5a

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 11f1271c016356e53a16ab845eb64f0fd074710d8ac60cd63d3f50113be8dfb4
MD5 cb02d12e6d1a298c1baf85b8e5528da1
BLAKE2b-256 0dc025d9bb4110303e6de2a947f3bd76edf27c91cc744d082a93b6fcc01d09fb

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0234b1f06cc62c40996aa951a514cb7ba6f03f04c25d555e3a1b87be517525ba
MD5 bb9f839a57013f10a1e4fdb6136e32e4
BLAKE2b-256 429117781e69afa72d31c4b7180ae7cefd10c27f8ce6fd82680c386c4c041b1d

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ef099adf60dccc3594c54ce74d76b0f6fcc3d62a67069235ac23f412b364c87
MD5 16ac599069bede1a1efa7a800baf2d12
BLAKE2b-256 80647e9875ea09410a694587a6cd6b41c1dbd257fff2408d21f260ad1581ffae

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b453036fe1c5fc2255c01625a400cc28f0a9ab66cfd35a56a4a6631a49601f82
MD5 62a0456d86918ed6b48face61b48cf60
BLAKE2b-256 c40c738857e6fe1aaf7528f859ff345c215284b82f123342110a064b92a7fdd6

See more details on using hashes here.

File details

Details for the file pyramids_gis-0.51.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyramids_gis-0.51.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ead49c669ac1470ac14a206dfcce3f98cff8ded0f2b59a49790e0a39ed66d9a2
MD5 1a470e54d31e7e9dd7c740c531858132
BLAKE2b-256 746389018f154096740fd9cebc5a4e5582b0aa753d86bdc5af9809ef87676e06

See more details on using hashes here.

Release history Release notifications | RSS feed

0.59.0

24 files

0.58.1

24 files

0.58.0

24 files

0.57.1

24 files

0.57.0

24 files

0.56.0

24 files

0.55.0

24 files

0.54.0

24 files

0.53.0

24 files

0.52.0

24 files

This release

0.51.0 This release

24 files

0.50.0

1 file

0.49.0

0.48.0

1 file

0.47.0

1 file

0.46.0

1 file

0.45.0

1 file

0.44.0

1 file

0.43.0

1 file

0.42.0

1 file

0.41.0

1 file

0.40.0

1 file

0.39.0

1 file

0.38.0

1 file

0.37.0

1 file

0.36.0

1 file

0.35.0

1 file

0.34.0

1 file

0.33.0

1 file

0.32.0

1 file

0.31.0

1 file

0.30.0

1 file

0.29.0

1 file

0.28.0

1 file

0.27.0

1 file

0.26.0

1 file

0.25.1

1 file

0.25.0

1 file

0.24.1

1 file

0.24.0

1 file

0.23.0

1 file

0.22.0

1 file

0.21.0

1 file

0.20.0

1 file

0.19.0

2 files

0.18.0

2 files

0.17.0

2 files

0.16.0

2 files

0.15.0

2 files

0.14.0

2 files

0.13.0

2 files

0.12.0

2 files

0.11.0

2 files

0.10.0

2 files

0.9.1

2 files

0.9.0

2 files

0.8.0

2 files

0.7.3

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

0.6.0

2 files

0.5.6

2 files

0.5.5

2 files

0.5.4

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.12

2 files

0.2.11

2 files

0.2.10

2 files

0.2.9

2 files

0.2.8

2 files

0.2.7

2 files

0.2.6

2 files

0.2.5

2 files

0.2.4

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page