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.56.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.56.0-cp314-cp314-win_arm64.whl (26.8 MB view details)

Uploaded CPython 3.14Windows ARM64

pyramids_gis-0.56.0-cp314-cp314-win_amd64.whl (52.4 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

pyramids_gis-0.56.0-cp313-cp313-win_amd64.whl (50.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

pyramids_gis-0.56.0-cp312-cp312-win_amd64.whl (50.7 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pyramids_gis-0.56.0-cp311-cp311-win_amd64.whl (50.7 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyramids_gis-0.56.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.56.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.56.0.tar.gz.

File metadata

  • Download URL: pyramids_gis-0.56.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.56.0.tar.gz
Algorithm Hash digest
SHA256 f91801ed48b743bde1041e9293b0b82bbf73b0995d5a67c2b463d9026f9e336f
MD5 3cfa24fb5f8812c45e4171f9f5d5c513
BLAKE2b-256 011811f987f0d69e4ec422d06766758b7f9bfce6198bba0d42df35f4885b36bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b076e652a704158cfa99544f7cc5c5edcda37d69c158e8e4123862df324c01ea
MD5 5145931541d8a7ef52b8bb1a512c2ceb
BLAKE2b-256 12588210c6870254d31cd30ee04216237ef0d8c81e9b66a9f740e531561dfa4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8579e222fcae3e8df041604d2352808c9e2228cd55e229512cb6f597af347406
MD5 6cd8249565d26be6607ed763c9301185
BLAKE2b-256 3bbf15322f085afa5db8649f6d330d977aab8d60ed3a5aeeb71e64355ae0d0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fb9138524239319570380561ea0395b5ec9219dce564529b8a104255deeb8e6
MD5 1c972320a45e42c3d79273e315a21521
BLAKE2b-256 ed507c6233775b3502fc5be0b1c32285771553b630ee6198bf3750603aa8ba39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45df360bab42409d8015013febc936dd46c29bb1620607ae493505aac711841d
MD5 0fbf171375fddb52506d09a9e118a904
BLAKE2b-256 3d06eaf87e3e685d630c680a7dc580b466c62a892c7fbe2605a94e50a50bcaff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2a87e0b4bd5d6b31ed270e53c4015fd01ce58d92689553204f17f74acad548b0
MD5 f4b2e5bcd3b638fe458852194a6271fe
BLAKE2b-256 a919511fa401dca44cc4ed05ff4c68966382e22b2b131ec052b1b27e77a31f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e682546f5403f2e711d59b01d1f5a876526ef028c550861737d781e7fed9c98e
MD5 57422a36428f375d63d0e75fe884fe5c
BLAKE2b-256 1970cfcc7a7508679b1e633d3db2370e84788e8588ce2338b9517cd943414357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 54e6f8e03aaa498cf8e4fd159a39bd07873d0c32a0765a63c2d50868362efe11
MD5 4457379de2cd4fe977a77cee925a8356
BLAKE2b-256 58cff5926478144695f2d5eca2794bcc12d148abad8e13e8742353cc7ac4eab8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e6031f08a8df92ba452b46b2f82f904a7e6e16b66b4cee3c8b01f19c65d3e400
MD5 9773dd932598ca33e7b4ce527bf4a6ca
BLAKE2b-256 45d598f111b40d1e2a64c0f668a533a482e7749c8aaaddf4cde9db9a70796d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 054533b4645aeebf95f5b9cf8b5851d756a9995e654d7715ffc2422e0ff6041a
MD5 d9dd3cb1348cfc68436f95f225ea2926
BLAKE2b-256 3994fcd9b7dc136b5bb45c7f961c7cf2f24122a04c122fba8a8165e25c1fa3cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b5297c923e83c45a79771daf448a3801b2255b2da2720889b12345ea8007aa7
MD5 73bbca2c5ee4c72f6b970fa94be05a55
BLAKE2b-256 131d89862f10d2f95c727949aa26e5d7f8a1c23242db1fff0a7a12ee0d6b6abc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9558831e345d70748f47cc896f960546fd93c950ef2737acc7ed6a854c61d1b9
MD5 2c8f0d830ba27bf9152e50ee94f2d70d
BLAKE2b-256 7b0e53adcd26f5e97224e7c5a9be6146a181a28d2347821f8752ccea56616a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc1899e1b22a5949310ecec7818d26362ef853e095237b6b4ddaa886c61c0318
MD5 231152f3d607357c59bc5f3875fed66a
BLAKE2b-256 26b6be3c1b6a34cdb01cb001564e544b448a10828e1af6966c15001b4bf37d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2781deb4ef85c708a0d949b9b32768bae4d216991ef705165661575a253c08e6
MD5 2b616cf4f8fcf796b3ccb7980b6a2880
BLAKE2b-256 2bb1db5b0c7a71b7aea27e40a0748b23246051cef0dea9033be2dc8862fa7ed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 976404b4c280c8add057b935f594450f4ae73985080cbf520e84ff99637723c2
MD5 e93ba0bd3d773b34dd8acee600eba730
BLAKE2b-256 419514ab80b8575d6c65a0d2201d55e5cb896fe07c589090dcc8490dab4bd452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74740ea0d7879612a61f9d330879148d6fba60fe59671a52b799bd9e3f3dbbb0
MD5 791c9966ee78208224860ce868ac312b
BLAKE2b-256 c0b9386d1ba45a66dcaf8ed986a11cac82cfebc65e37a7434f5b52b6ada286b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 631ae22851aa09a2020c55b02c36fbfb7e124287a2a06ad9882a4f8f0ec2fe32
MD5 3cd611aafe466f0b18be3ecfafc2800b
BLAKE2b-256 335deabfc64a0f9cdb15f147ca6005e5d44ba2c703019edd394b03964ebb917d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ca927fa4ae6b42cf8fd5b5a62dd4f9e67fa0b8566d599703b7408d1743f5c352
MD5 26838066356dc2ab8ff425e9d9cb89fa
BLAKE2b-256 dbc858b6b19cca12337053de0c278e0ddf27ea3945df135b575ecc4ba61b3480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3c3aa385560b625ea701d9e4cbd2a16305d9b1f8ef8518c4f65be59ead816e7
MD5 557df3036b4047a6b75a84ea9762e575
BLAKE2b-256 819985d060b380195498b48fb8c5c3d2132502f93a6b0c94dd838ddde2f37f15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1e6255cf6f43e38db91d0f22dc2e74e97b62fcf8138fe069e513eaebb9036599
MD5 05cb579c847bde3849d54dcd8648a641
BLAKE2b-256 2f3b19d21b7a4f6b51721d423899e3e53bf662a278e7c2fc9758ba254c3b032c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b12906df7616e8815f11360df821a887febc515de36b919857a340e5533db9f2
MD5 cc4e8de3d4eb635706dada216ebed0e7
BLAKE2b-256 01bf46ba8a868ab4ebfcb5e9d9aeaff9ef708af67839147a8f2dac9debe04788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b2f677fc474fa4048c2e3938b8ca903e4992924b343a5d8a5ed5980157344bb
MD5 7b7fe5651ca997e07cbf33112bbedb8e
BLAKE2b-256 3e671bbb53647294fcb979dbedba3650f4c0441fc6c99903023303d49cc2d943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ab2d26d027260855772b2c6b26fdf54b06458cd4db4f44e8a158ba225e282c1b
MD5 81efb81fb952bf88b5d05e2f455f50de
BLAKE2b-256 919868f4921e3cc36cbe696b6c8e49c0b6b4a3636b280907ee3436b9b9297951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.56.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d15237ea09c4d1db09323caf4f910e90cb8f2f714038e4f703956a713301b1d9
MD5 343b75a557827949e0c1d0eb3f435dcd
BLAKE2b-256 d188683df1f0864b7a228e1c0f3c5a9358f746848b3f448417d21d0329b2d6a1

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

This release

0.56.0 This release

24 files

0.55.0

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