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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pyramids_gis-0.53.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.53.0-cp314-cp314-manylinux_2_28_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pyramids_gis-0.53.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.53.0-cp313-cp313-manylinux_2_28_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pyramids_gis-0.53.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.53.0-cp312-cp312-manylinux_2_28_aarch64.whl (30.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyramids_gis-0.53.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.53.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.53.0.tar.gz.

File metadata

  • Download URL: pyramids_gis-0.53.0.tar.gz
  • Upload date:
  • Size: 971.3 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.53.0.tar.gz
Algorithm Hash digest
SHA256 640072a7d518185e9f2ed2091ac3f6717cfe7483f7efa0f9d040c7d20481e8ca
MD5 9ab05b66b6c41f80c124261d8786c512
BLAKE2b-256 3c0704ba6483655688536a33be86031256853c54f2e2c2db2fd08a9e68d776a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6de5b973719238ede5ea85a36fe2350e8280adaeb7d44defc47fa18d3ca89f27
MD5 e804d1120a8eded249c4b16d73e198ec
BLAKE2b-256 313745bf03e7b447c82b7dd1fe4020c1bd0a0692b591e47bbde0632aa8fa0584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5e849433fe1af70ff7305c88d3830a202291ba4e6c39b4f24cf0647cfda96705
MD5 83d5f891e4dbb7c95a399ac35801b655
BLAKE2b-256 9c45662a14169f08f8ac369bc5c27ee01fe0e1356ad12447a7cd303bc2f75644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d85dab417716c734e063b14ac50886a9b33a6d24342cdd53474c8533a69e005
MD5 0e0ba8888d161f17ec66fad66337b4a1
BLAKE2b-256 220498a5b69e55b20d0152cd1533668b20743d8cbc143d660421121f7026966a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30d4f3b7233035edccbdb8206447ce37e7af599406c7187cd7a5d8e53d38d6be
MD5 893b899962ae449de8fc13e30f985af5
BLAKE2b-256 9e5bab7cdad4d34a430063202ecfe51823d1d1d5139b07315cac1495b5fdfe6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 61892057889e18f701e82eee768349fa184c21ca4251c45ea96ce3f02ec2721a
MD5 f1ee35bd6fe228305604df15aaacc067
BLAKE2b-256 d4c37dea6fffb952addbe6e68edc776b07a94a8e2b0fb7bbe425d0856717ad73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 106096ade2e3eca79109410640735a46609d8d9dfeed46d4766c483398e0d4cd
MD5 102e0629132f8816e3f5616a27a8273b
BLAKE2b-256 a914826d6afee56556798c1cbcf0d699a5fea09ecf683e190cccc0b5e43726c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0b383f5e6764c71d2320e408e7ca513c16e7226b3e60a3a57faee512e782de41
MD5 7bfe9a72655e748cef398027b5037938
BLAKE2b-256 6fc6b03f456f4ee7dc61bd23e91140707aa00eeeb5c12ed2e21559984572c901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 85672f7383e7dc4f155c0c1c1674cf7e812a5bc930b18caaccab48e98bd2db70
MD5 806fa945f65aee6877b02918868ca97d
BLAKE2b-256 38d3e7ce07eedafc796b6ac194b2944ee0d1385f87648fb16ec43103a06c76a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36de4b619049c5bb155b566286d3c88d16ec1c778c8cd7740480305c14c79d8a
MD5 7a641c065d4dab20a72018657758ec6b
BLAKE2b-256 47b861249eaee52541abf819b677d0d209f46011ef5e064b48fff0acf7750734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3faf3b36cd6157698b7c7b9a26845e6723339ec22f7cfd87db9384217578476
MD5 c8ea6b0d8916abeba6f5ded2bca4bd0e
BLAKE2b-256 32892990aaa06b92e80a7d95c0278d662adbd0649d70a3e947e1496d821f2361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 41af8624ca0ab32ac7ecc3602b7659ada4a455b1561eadef9d12f79a7fb61c8c
MD5 8d70b2ac3867c39b26ca011788e6a7c4
BLAKE2b-256 0c2a40d1ad278eec636f6995eaac6125844e62901459417b57fdf630e81f2784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a75d54452adf65b28ef220d6ccba562adabe50e5ae6c5863ddf13be4cbd518e
MD5 8259f4823d8779f0d4c01e2b2c9b28c3
BLAKE2b-256 c545f2527689f512f14f545cfb28621c2ee3b3539dbbbed64f7857dc57100742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6d4d7547882d320455defc263ac991841b887851de5cdcbbdccf40dccd381fd1
MD5 6ddeff2dec59c53d691d63cd6bdac36f
BLAKE2b-256 9518a8a528f4ebc21ffb4f56da934f98824d6553ef2de3147cffbaf9f891c923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ff3d79ec76350878dfddc1d8790028b3c56dbd6d717a4c08f8f4b65bc431379c
MD5 d2bf4677816d9f37077ea330e7fc310d
BLAKE2b-256 b58382e6568af95fe2921bf022bd0ca9e265552e23903786e003700ed10a8123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4542780cc5b5704aa1e22eb81b361e564cb9c4905d25bdadd833b6a2dc973cce
MD5 02344f71ea1b5b9326b725e5c656596a
BLAKE2b-256 c6d48af818662032c5def1c60a3dc17b21d6def7c7a17045daca4dfb919d0f7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ffe59e64517d6c1194a09a6e606db9fa81a5b08142973aa49a6c22a013cda1d3
MD5 a9f7e480102f99c46a45d6385d77fa4c
BLAKE2b-256 fc20393969c01e7adc33e4fb0b03e493e72c3b6716611290e82f034fcbcd4dca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d780bb7054f97d28949734ab5b8ca27104799df6a9022cd344133b90124b83f1
MD5 98629731e1b09c8869ce0d6c8810c834
BLAKE2b-256 d3fd28fc28cb760eb8fa8092b7af4f1efd1855fec16dc18bbee7990ccb9e9870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dba86e04208f65616bcf09aa0b53fb724f46e2363e75196a39e9114f8b835c6c
MD5 7d534f1c80232d6aa2b33112f80d0428
BLAKE2b-256 a2f5d55348744556235f29ce5d13031d7169e681c3a2c7ea3fe26b0d45867dbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5ded28a039b936048a2bd45c03f551469c51f3c0cb7f05c273ff6fc255ed3ddb
MD5 b89bebfd5dbc5a8e0a7c2c9ba8784840
BLAKE2b-256 a52aaceebfc9f58ecf32f27bf7c341479db44d5dddc943eb3948b0f29af9efc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 530c1945d1fd18112923e52ac1b8bc804b8cc5e48598b5c99296f92706f2c7b3
MD5 e4566901a59cef457a44eb4f8cd8dcbd
BLAKE2b-256 e007adc909b4b44e0bc706a5611b7c4fc939b880c46b584d88eeaa64e12c5de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d095fe10611c9616b540b3c0ecc92473f3fb10a7b9b5915b58866ea7f7bd94c3
MD5 1e8ce8fd3284a947514c586a0c456d32
BLAKE2b-256 64d9262378495c5db3636eb214f4322ecc4a84b9171a7760fef60d8397d7ad3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 dbf7fc5251494437a2114e569defd359701bf9baa3486763638cdfab7bf2f303
MD5 1901fb18f92377a401299a57d05823d7
BLAKE2b-256 8e0e0f49cfecefdaccdfb56b16aa2a29d072fda111692aeb49f1a1a53f8acc57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.53.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54053054a8d3f686a5a19e46ce46c0d8720d1f80ec75a355b5946563b6f4ae23
MD5 a809c89bb5513a6f80d6658b29a70143
BLAKE2b-256 a9467630239dec113727cbea42fcbe42b7ae4bb4ab3a64f5921f8b38f6bf9eec

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

This release

0.53.0 This release

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