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.55.0.tar.gz (1.0 MB 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.55.0-cp314-cp314-win_arm64.whl (26.8 MB view details)

Uploaded CPython 3.14Windows ARM64

pyramids_gis-0.55.0-cp314-cp314-win_amd64.whl (38.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pyramids_gis-0.55.0-cp314-cp314-manylinux_2_28_x86_64.whl (32.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyramids_gis-0.55.0-cp314-cp314-manylinux_2_28_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyramids_gis-0.55.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.55.0-cp314-cp314-macosx_11_0_arm64.whl (43.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyramids_gis-0.55.0-cp313-cp313-win_arm64.whl (26.1 MB view details)

Uploaded CPython 3.13Windows ARM64

pyramids_gis-0.55.0-cp313-cp313-win_amd64.whl (36.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pyramids_gis-0.55.0-cp313-cp313-manylinux_2_28_x86_64.whl (32.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyramids_gis-0.55.0-cp313-cp313-manylinux_2_28_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyramids_gis-0.55.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.55.0-cp313-cp313-macosx_11_0_arm64.whl (43.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyramids_gis-0.55.0-cp312-cp312-win_arm64.whl (26.1 MB view details)

Uploaded CPython 3.12Windows ARM64

pyramids_gis-0.55.0-cp312-cp312-win_amd64.whl (36.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pyramids_gis-0.55.0-cp312-cp312-manylinux_2_28_x86_64.whl (32.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyramids_gis-0.55.0-cp312-cp312-manylinux_2_28_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyramids_gis-0.55.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.55.0-cp312-cp312-macosx_11_0_arm64.whl (43.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyramids_gis-0.55.0-cp311-cp311-win_amd64.whl (36.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pyramids_gis-0.55.0-cp311-cp311-manylinux_2_28_x86_64.whl (32.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyramids_gis-0.55.0-cp311-cp311-manylinux_2_28_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyramids_gis-0.55.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.55.0-cp311-cp311-macosx_11_0_arm64.whl (43.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyramids_gis-0.55.0.tar.gz
Algorithm Hash digest
SHA256 a598ce68d94386c97c26ded9248405f76d7776970cc3faefd57575d7e1f8d2f5
MD5 fc770c9428d23a43ec4ac020c280edb3
BLAKE2b-256 e02c94ec37e5d36cf237626fcd14778f7c8701893c0b6f43d7d5a07dc0fdcd98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c8a091eefb1405d554abae72a299de92c9854af583c479e4e3e18ff6f9339d95
MD5 ecc7bf824d70f6c1764931e81b3b1bbb
BLAKE2b-256 e55e4ccc5cefbdb83632590bcc98dec496c27baf8dc2307dc2b7660370efe1b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 de98840c23260a9b563eaf9038cbd0c81915ab1ae0eb341e011ae1a1d2b75356
MD5 02c822684fbf6fc98012706c48eb5d67
BLAKE2b-256 8d0be11fdb20a4c8d881c15c4788c1dec4f001839e3a45a3fd76f9128740eac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcfebed074cc78a7f3f893c79e1a5991a71f7b15e5392baf295308814b4f682a
MD5 9f3459e0b0f16649bc5078be2eba240d
BLAKE2b-256 fbd348df4987f741651091ee91c3a73e5d73bb875fbb24aac6b9354129113814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 906ecc0868aebb06a6e4439228161c559db0d331146cbefd2e8e1d7e4b00c8e7
MD5 0a616ee4e347bc668e9e177b84ca0e0c
BLAKE2b-256 37d596c1b91b8e1020c6df49bcbcc074a2eea3fb35eeed8b4292b9c5e9873e3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0574479c83c85f7013b5a02f770061bb7cf91d6d219c8e8d4755e9c46aea8a1f
MD5 94d64b6df4c60e26029a1aa5bcc45a63
BLAKE2b-256 4515882bef6c617c4ec341fc82a293462a818f4f108a6758518576333b9e8a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f5581f711251db7cb9cf659747e19a7a2af2368f80b9f75e63b79613fcc7fed
MD5 7b456445327eb1541ccde619ce160970
BLAKE2b-256 97f2813e97953f2b348ac2501f2847f3cb856969c9bc77276a58b6d289ee20a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c811f50eccdd2f92296c044517f66b05cb3c05a0e950bd44838bfb8076141543
MD5 14f344bab061ec408dda7121d7d2cf74
BLAKE2b-256 a422a11480eafa9aee7d96d5040f2723c6d51175921b027172203438fbfc76d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 45e8545cc84f67dcfa0514367491d0999c5eebc1c8b1676eb5e3d86029cf7155
MD5 bf6a302b9d13ebe9936dd1598b98aebd
BLAKE2b-256 bb447a12ddb9f46658f4dc10ccb40a97c73ad20081809b432f0a243dd8b36d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11390e69371010f2159b591bca75904009259e630db9a5bf6164b3e69220bc8d
MD5 131d25b3ad98761856248acd65750b70
BLAKE2b-256 683ca48e0702df513708c5f8ba493cae608e4d531d9c9a5ddb92b44dec89dc30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aeffda6c98e45b751e128300534eecb973c180a1199277b2a5f195d57e46ff6e
MD5 9242f6bb906e4b844b16b0ecc421e66d
BLAKE2b-256 971cb82e833bc03278b2f8cfcfe74b388fe0bf32e936c7aef93742181ef007a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 11eb7747585a7599fc1236192bbc43974d6da39a637b7bfe82d5035efe329cf7
MD5 9786c6b87d0e64dfaa2e51503e763700
BLAKE2b-256 d7521b742ad16006e21234578c193a2adadf4763eefbc3853061b9e76eff72b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4b8e4ba2b103fedad26aacf90e84edc3bc15c160f4c69e4ba435b3beea27c70
MD5 fad651563ea15062780fe1fa318681c0
BLAKE2b-256 4cb76ab8fa1f669bce689e77327a28f8822f44c0b5830fba3b155b9f3a843a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0560eb7bd3319ceb3e33d08d3a263232a6b86d8e678e80cc80c7a691c0837e20
MD5 9f2d2619a6dc8e6139b729d21e64d34a
BLAKE2b-256 96803e6b9179f3e503372d0f236c7b0cd5fcf83e812f5ada010f17311b7722e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 29ab49bdab50dc5e388396c8f2f7b46d1f8c24ddf06883fede4f787541952fda
MD5 fbf128840ee4b91ff174ddecf38f4add
BLAKE2b-256 5976981d6ba23f7446c5d7d3309f3cd11170c10cdca6ed845e4fff6e245d6634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb3757f1cd0f3e2d076bdeaba2bc741b0a9dbb9164714e87db0d26b30b592108
MD5 e18f3798b9214bcae0354c5d1e3b0053
BLAKE2b-256 3859f80d5cbb4c2c3df6667bda2fbdd19ed352108c76b7a2f56e225d2ac839b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8f16a53a61f045da6d4e82a7da4291509cdc3b41d6c6c524c9dc9034a09842f
MD5 7b5930d7a974437d63ab6ed8640c46f4
BLAKE2b-256 9a1bc078024c6b106ec3c8bc4b5861344e9093aff4a9a19881f0d9943083d168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e57613ec3b1f7a7dcf318e3459157c81e85f461235288a6d7f36e25dc5da14f0
MD5 bf89766315c83ef472d3fb4c54ba4d0a
BLAKE2b-256 3f874f0ad15f6dbacedf22c175a98d19f812681ef707ef95dbf58b0bf80b7b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce02c26836988bd7e9081b2cd8106ae3e625aadd149c341d872550d63dd3de46
MD5 8454b0b7a110f103ced231608d790444
BLAKE2b-256 c074c795607a32e5429ef8ab1d72f0c91dbd79b73ea59a07bfff83d9a4648d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 384c6dc7ee6822c6ea2fa84261cac64e9399095fc95a0796075129882e8b75e7
MD5 8755b70cf6afa4ed28ae373833634f14
BLAKE2b-256 67813c11f15a785032712f81da766af200bd1d8ea4eff088a10bc37559024b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 158000a49bbf2084ae13bc7902925981f1c44004b1e80361bdc836a9fa94a5f5
MD5 dd109ad5a69f215f08ed835b91dca0c1
BLAKE2b-256 0cb27e8f3b4dd151062d723610bc6d11b75987ddac5c824fa047c3f1aa54cff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d08b8a934ee68cd61f2a5f56af9d6993d9b31a129bde16b57d0d7c54c9b15fd7
MD5 f8db784c26e41a2ebe508ac82e9fccb6
BLAKE2b-256 480f26633c9ebd74af4b527eeeec06f074dcc7cbdb194643f7318313a944deff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 439d05312d6f5e678616e71822f2676c9fc645beb827f075131006dda8fe591c
MD5 bf2aa1ba7d3cfb50a2150def6ddd98a3
BLAKE2b-256 325941feccc8ed33e651f28ea1a2fb11299cd6ad1dd60f2bacaa4148903c8c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.55.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c45f606dcb6076d1fb421e8b2b3faf1f236432a9b085a894757d0781bf5d5ec3
MD5 2bf8530d6e9476f2ec7b4eedd36c0b4a
BLAKE2b-256 dc762f384e19b27bff1bf1c5d281f9c8ada216658398cb12920ad42804bea02d

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

This release

0.55.0 This release

24 files

0.54.0

24 files

0.53.0

24 files

0.52.0

24 files

0.51.0

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