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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyramids_gis-0.54.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.54.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.54.0.tar.gz.

File metadata

  • Download URL: pyramids_gis-0.54.0.tar.gz
  • Upload date:
  • Size: 999.2 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.54.0.tar.gz
Algorithm Hash digest
SHA256 aea06f9b43471dc9f77ae0faaded2dc8413dc5957b66180a9eaa817b04cef087
MD5 09db29b7ff706ffb78d23e0f2400b613
BLAKE2b-256 345b8733e6bbb0367ff12453f9808cd265df67a94339ba4e4fa0eaae72521948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f3fa49eff68a6842a3c398928e512ee557a5b820e7e77b51be403f0c5e98f102
MD5 cc19cbcbf212fc1395d788f60a602430
BLAKE2b-256 bdfa26d5ea96cc3254332f1b05115dadd16f87898283bc5267fdd77a472a349c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 634fd1afef84b855d6d16c7cb58e9a0340b15bde5f6c3dd9f678ef44ff2bda3a
MD5 4e71ecb5e10cfe4a4298cdf40cb82138
BLAKE2b-256 e1f924b322756aee5798d3d1a4561c04e37128cb4ee7b2344fd601777fde35ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6624ba574dbf750de2bc4e50897e95521b337b94e1bd22a3a366e3ff842c250
MD5 1af534fb8af03ddb44373487070f44b2
BLAKE2b-256 22c0a27bc82efc120ee8dc4bb266a0345c47cb4200b1b3fc2b57c46e2f1e23ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 389d100892d4cecc6329a52bf2ba1496c3825de8e1d7a019e2e1ecceccb6ca98
MD5 b3b6a47fb3d55223e9902e8cff6357bd
BLAKE2b-256 29ee7f0f66c7c4c461f8d7b1f77d85eae841d65548fa36b0c0b2601875714ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 08b085687637a15fb17d46a3095183afa7fe3cb89c387c87fefa44f365eb3665
MD5 0c015f9fc21769c16ee2792dcb84df4a
BLAKE2b-256 87be5d13e6eb16fcfdb9753ebd5ad3a44fdd23dc91aabcc59e33322e8cf12984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44f05235f1487578d4f7e52e6756b94e39307d55197cc9f106578cefea99f5da
MD5 53d5219cdbd7cfadbf8c0443e1a6613f
BLAKE2b-256 8b3904eee519048895e38a1f20056367adef59608fd4e6da0336c0a43c8acb86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1eb2ad4bab9065b1a7e14a7b5d3092e820baf5daed2abf934ef3606240cbe2d9
MD5 ff15171e1eeee8b4ca625d686e7db548
BLAKE2b-256 399d925f62fd0bb92d21289bfea2477777f64d09cb6094c50a76ac3c695b241a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 562ab022e7171aeb602133ee00896aacbf42fbec799d4a54ad43efe513c95004
MD5 897bc5c0badc22c1267a4ec03f774c2c
BLAKE2b-256 ac90cbe59af0f250787c0d4132fb01e490360e553ddcbe16913aae20811a0798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a8dfcf46534b6790db931d1cd343134cb51fac96c4552fa494936269c1d9aaa
MD5 3f2f21f73ed882f8d38ae654694c4668
BLAKE2b-256 3f7dea0cf587fb6bd26ffd665c262cb53ebe1255a9098b7ac67105896bc45fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 760d6a6d1e5fa003710887ef6ed9816440a169ff577d122003a79023fff9793d
MD5 ea7510e04a423f431e5798a39c82e02a
BLAKE2b-256 9d91d8921b32c937d0a20ec075e1f97058b9485f901797da023c74759bd4b20e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c5ecd46df18a33881f1f29be2fdc7fb2d1e7985da6f03694b9f0095bb7891924
MD5 78f9d6f1fec4150ec62bc1bbf6a37fe2
BLAKE2b-256 4b69f33661b19a5aeba755fc18bf1e9e17f66c8478380c75017939e46dab4514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4bfd86e2be55b39d42a0a828673e024dd0cb57e910d744e5bdec6a65e73964a
MD5 e66a82d3bc67862fdd4b51906c1d92d6
BLAKE2b-256 d9e6d637202ff37560b7a4beab64377bd3c9435f3317c1f202b1a83f5717f3b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d3794cd3a3f9b0ec3f06dfefec2386cf136d9f01bb577e4aa72ca76dd8965997
MD5 9b7fb44689aa0d3d6f66979e676789c8
BLAKE2b-256 b45243dd97dc67cfe60e6e24bb65c8378cf02778b9906ef55cdf0b4e63d8a474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 52f6c6150e1e24e8572815ccea87a0b8b6b1a8f05b46cf165af158c482b8a2c4
MD5 c02ebd312c0ced1986633e5bb8d71618
BLAKE2b-256 ecd846a28b4ddd31dc53ae569c515af1ae0d5e2782f9200f526ad925d6ce9211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0de913bb2af5b17633cde105f0224d65463213fc19130d9cfbf1b0aec54c3156
MD5 314af92e689f5d96aeb1e63a0842ed0a
BLAKE2b-256 8e506bd5f5c360e4433d63a89d43dd1f5a4ef0ccc0915a1320067d0f56e1a19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 768e55ee4e62bd6bd9199910750c25cb8873802d1dda5a05ec0b7710aaec430d
MD5 bcdca8628a7e71984cd99749cc6df2ba
BLAKE2b-256 cb97e0d05e2ac5e67c9ec876f1747012a5dc9ed81475d288f206eab5326eb079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 70e5c58fe8a55aeb771c53aad587c9a1d3d07ad93bfdd65935451302649f2bbf
MD5 81f28318e3640ec56363125b53c238af
BLAKE2b-256 dcf9ca5b379c453752264508088c70238ccfc8386e314074547cd6b61ac34a38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27ddfc162cd5d0807fbd67f652ef6a2c778cf4096b8a79130a7715f9d7054a0e
MD5 cd88b49703c099852b271fa9f38ed147
BLAKE2b-256 332e9038dac80a7362b8434956b213f695d618d763861147322d94468e64b772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 12de3ed7209882b44658ea18b9b56577a1456c6364a5fb1f2314d96054e3722f
MD5 27e18e41214157e087969d1881181e9f
BLAKE2b-256 2dbba399436f9235d14c67bc9229c76a661f9c7651f44142e3aa201bd53f419f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ee926c5c437b8d32b8f345f23d87b388356d878dd7155b4fea001423963d8ba
MD5 79b8db7d91ab85bd5e1cacf64a4b5070
BLAKE2b-256 0f6a5afa372ce7b9915c9b47096f261a79064b7aba2632e53b01b4fb8e7a898d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc82f907d5c1100c9733e1338afd258aca9ccef0425dcb733d766ad92b1ae728
MD5 781f4b96026926c7f8cffc3f7cce5d34
BLAKE2b-256 4fe94c68655a0c87e0447d4b385f9ce5f585bcf5965724a55fd354990761ff4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 57d063b7c4bf05d7fdc945b3e9be5437e6115dac140d7fe897f635a244241469
MD5 9a0c80555f77cf66d0c9fe1de50e60ad
BLAKE2b-256 f37abb3a9c46ae8d39f70ab98c3828a7d7b43b30023d731c2a587d060e1bab34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.54.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ebfc50b4281ebd59c3ae61ad8d82ab45ed8b3b2e2d50921103d021eec537ea5
MD5 ced9b264bd1b864bace31313adbe4e94
BLAKE2b-256 e34bd880f2bd6779c20660f14bfb657fce73c1c6e0f7ad80dca2ff9c7fc09b35

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

This release

0.54.0 This release

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