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.52.0.tar.gz (961.1 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.52.0-cp314-cp314-win_arm64.whl (26.7 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pyramids_gis-0.52.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.52.0-cp314-cp314-manylinux_2_28_aarch64.whl (30.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyramids_gis-0.52.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.52.0-cp314-cp314-macosx_11_0_arm64.whl (43.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyramids_gis-0.52.0-cp313-cp313-win_arm64.whl (26.0 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pyramids_gis-0.52.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.52.0-cp313-cp313-manylinux_2_28_aarch64.whl (30.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyramids_gis-0.52.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.52.0-cp313-cp313-macosx_11_0_arm64.whl (43.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pyramids_gis-0.52.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.52.0-cp312-cp312-manylinux_2_28_aarch64.whl (30.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyramids_gis-0.52.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.52.0-cp312-cp312-macosx_11_0_arm64.whl (43.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pyramids_gis-0.52.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.52.0-cp311-cp311-manylinux_2_28_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyramids_gis-0.52.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.52.0-cp311-cp311-macosx_11_0_arm64.whl (43.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyramids_gis-0.52.0.tar.gz
  • Upload date:
  • Size: 961.1 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.52.0.tar.gz
Algorithm Hash digest
SHA256 95eb272806340b54755f58140d5855ae2be17abe8221b5b08b5a914b56ad0fe9
MD5 7120c6da39a131f91e9475c7e6294416
BLAKE2b-256 f72afbdba3d97acdc86a5d1e80fa870876d31dd24a3ec496d3cf3eee9635c943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 759cf4a4de4136154bfd7eb64bbafb4ff8e8cfe48d730da2270c15a747ac21b1
MD5 c4a9537082a3541da70192c84724c655
BLAKE2b-256 a9d5c4c6a52cd748feae24ea7e462e4a0e06253eff2171686e5f7776d29a6722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8ab579a4432dc87eb01d0786b1680d346c8b453be00c707bf818c50c7dbd1aa9
MD5 c1e34465a7a4f248ada865defc06c891
BLAKE2b-256 cca882958dae4bb56f211edb74eeee34d6ab10a1e55bc5f82c851e730aef51f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3e956c835817ac0db0849b2066f8875ae89214e2ce7ef72408259d4a7884040
MD5 75468b7b44de745d21e8076f52ce9e5f
BLAKE2b-256 2b7d01decd14c0cf4f7bffad4afb0b17077877c12043f9b81c3cad1dc78488fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b96864b1dfce21f79d8501efc54e93980b9aa412710bc74fa823f1bd9972392e
MD5 204294f6d1cbb83e39ace383a2e13572
BLAKE2b-256 f377a568387ba5797a99221584bc572e5fcae627945c23c017f18dc1eaf41242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8ae823ab046089ae22fce7bce27c6fe2f869d0011880647049cdf5a16882f194
MD5 e70e4bbd498c1dccae29f650af7ae909
BLAKE2b-256 a4615532aebb5bbda658d2d79e9d172f668c7f3b5c5f92038560117fc070c9c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f801b12196496b8139a0fc47cf8307516fa7016a6f923b2a1cf6b15b99ce87c3
MD5 11a06691f2feeabdcd19cb5dc3bba8e1
BLAKE2b-256 c74c5082995ae9d5bb4df254c734b45bc9c0ff543dc386e862a9efd21bcc2f6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8e08482dcc7b401af4b75186f520d8c3c491b4eb0a2bede693cd8da33a97ad53
MD5 1a30b23a7ff61829e07eeb4f7fa4aba7
BLAKE2b-256 4a78ab8870ca0ec32189248109bf64c47258825254b68afc4a77537171a0e5cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5450895488f22ff8ed8a567a5dc7ee8d20685c383e5c8fe41679a374341dc1d4
MD5 4ffcc673d6e8d442afdc37013c8e3627
BLAKE2b-256 0d22301bec51f787e858137a14564b4fb73f321c008542a01426398313aea1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e5c99b2177279e262de9a8f5c90688d6d4adc1e395046a4c4fae2984f0ff3a2
MD5 027bc18c4d905216660416444b2863be
BLAKE2b-256 d8cad26f3f561a45d91bbd6e3521fc65917c3484ff86805c1bbc5e0ed36e5702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13804d3b8a37274cb87635e7f1f1d468ff1afcdeb72cd41aeba1ce9f64268ee2
MD5 b8fa89d835a6e65ab0ad98c69286fee4
BLAKE2b-256 329b7a11fa72b3d31ce9c97506d17fbdcfbb474d84dabd448fec8975bf537963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cd21d61310ce3ce484f009e8c5c65e96a330165c06df63cb3dee06eaae7a42a4
MD5 5d106fed4b99f66be1e016a54ca76c0b
BLAKE2b-256 b7c74dd83eb311ba5b6ca4065bfb9fa098dbf9772b02c48e57eeba793a8a2afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9a87552aae7a10c497807ad846d0f688b10dfe8fe524742f607eebb0304e0e1
MD5 6bef55bcbf029df27f9379dcc7e54ab5
BLAKE2b-256 732d7a419049dd349deb9554e7fab62f215b35239a63c21a5ccf302a1f40bac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b692094336ec9150f931d59654f19e62f046d174ea7a24a6716902dd74357d15
MD5 22d3775172ab4639e4b20e91df890fb6
BLAKE2b-256 9321e833a73d6fea494d16e5fe07200de9b38dccbd2fa3f68b63361ff5382313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 71c1602656573f66ce07a3dc4a5ae83729100aee25e80b193f83b6a04cda1491
MD5 5f0c7ecd89a8e6c5eed09b4fd615d058
BLAKE2b-256 8e72542bcac03d91efa658c27485f49244f9a4e7f85504edd4f14eaf5459c7fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a24b7109520d65f94672bf887b40c5e5fc188d832068ffb9149d51fe4d307ba
MD5 b1bac616373772cd5f511af9f0159e89
BLAKE2b-256 c72c1d38e499ea3ce56b5831e23bed7bde8e2ce69b43d8bf73868c431cb3f778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc3964b0e8227c5a7517816a5e4243765df97fa8e59cfd38b7384898215efabd
MD5 1c9c2dba03543e601475b889c774aeb3
BLAKE2b-256 7d000c27688bc6bcf338905a8d5225b6e1afb2832f92039fc09202b83a708f9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 86986ad31be81ee9e885a52458a990a6885ff7547205e9b265cf380206e7e66d
MD5 a4a6d51c132070b26448c7ba33936db9
BLAKE2b-256 e9e4bde44c6942c625b7b5c9652af099f0b06cf2a0cebcf0dd74d8fec5ea071d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b623cd62f425b382cf7937122baffb8bcebbee7bd281024bb3e74162c3eaad2
MD5 e49df970e9762a1218fa37bbf06602db
BLAKE2b-256 1973b06c98bb8890a90c124ae29fc293213254567639712e951251b51ec27d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 34ad7851db43a074c35c5bafcb5076599933f45c18294820b0346c322768dc75
MD5 18d2f16d74846c6ad9978e9ea12b8c76
BLAKE2b-256 0924c35719a6995bb135f8042d18a8d3cdcaeb4efbe6ccc56f2f0dbb938df6cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d83c54ec786de46c44062a19592d810f45909fc3fc0a5f9e280c47190b4a545e
MD5 d70267c7860922d9aae11dd988f600fa
BLAKE2b-256 ac34549f2f58e5ae138dfdf5e4d60b20a74eb5651b4bc01bc29d718ac90af387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 158776c2d56e2d0be3b1d1d8c876d8f32e951a9737726840cb82c220fadaae2a
MD5 9a549c915f5fad8260845af440b5cb39
BLAKE2b-256 84dfe6c16827c07abc4462b2b9b686ec398c650778ac25ca25f0ff7c441fdc52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 459f6cd3a3591452c6e2c2fd5b2f7c1f685964522750c453c1f7838c76c37f50
MD5 6cbcc8486e96b395c186c4c53ccb8767
BLAKE2b-256 0dfb357657baf5376a06a45e8b88766cfceada4b0268bf31377b057aa3f53287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.52.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e1c35abb9cd5f9d71a27036516eaa66dcd48755295b2fe1814c73341f06c538
MD5 6092d5b4382506f7bc94b2cca8f40245
BLAKE2b-256 e928a8e092786d3d354bba779e1495ba59ee644f827d17840aeb00ec9a30395a

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

This release

0.52.0 This release

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