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.57.1.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.57.1-cp314-cp314-win_arm64.whl (26.9 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyramids_gis-0.57.1-cp314-cp314-macosx_11_0_x86_64.whl (46.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

pyramids_gis-0.57.1-cp314-cp314-macosx_11_0_arm64.whl (43.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyramids_gis-0.57.1-cp313-cp313-macosx_11_0_x86_64.whl (46.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

pyramids_gis-0.57.1-cp313-cp313-macosx_11_0_arm64.whl (43.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyramids_gis-0.57.1-cp312-cp312-macosx_11_0_x86_64.whl (46.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

pyramids_gis-0.57.1-cp312-cp312-macosx_11_0_arm64.whl (43.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyramids_gis-0.57.1-cp311-cp311-macosx_11_0_x86_64.whl (46.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

pyramids_gis-0.57.1-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.57.1.tar.gz.

File metadata

  • Download URL: pyramids_gis-0.57.1.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.57.1.tar.gz
Algorithm Hash digest
SHA256 89e8a132b6374d23626c40093add22ef268e341a0c78b15d1ba5c243fa1a59e4
MD5 e09de703aa66a5a5e6212ab7cb1bd1b6
BLAKE2b-256 a2aa2c17e02faae19382c64d56c5261f975f9654bc008d37221bd66030560ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 02f45d0e3d843adcf2239fd69d46b37faaa7e9cef796b8b2582f615afa884756
MD5 c927fbbf8003e6f21dd82267329825a3
BLAKE2b-256 71b94aed6e7cdef534a323186732326f4e0c5b1c4f263211dc1ee01deddac449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fb9d596570fac78c1a1001f511e416aeb83225c80b1b7d2b5683c704a95b4cd7
MD5 b76a8c73131f15bfac74d8b396dae3db
BLAKE2b-256 a0b95be85d8140e64d233bebde3c831449b9bbfd4e4b0a5cdfddad905eb82bfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3adf9cb3a742c93f54cad4b0270eb857d1d4a75642f562b6ee688c036827637
MD5 0d0850400f16afc4687e96ac4888b44b
BLAKE2b-256 9431d546bef1cf59e4066c53f33c6630beaf9476dcf1e9f1fecdbadf09a01a25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 108ca8ea37e525afdb3de36326f4a31d9727f3822534f54c5f6ebfb782d29236
MD5 b89f168761d39688d54506bc12c9c265
BLAKE2b-256 c057e9c113923e39be81aa6ddf596fb75f07a6a3ea2629047574d77fa13974c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 273887359668cd6464b0f158a2c5f460e856db7b97389a96891a9e274161b448
MD5 f9126336bc090cb5c563981f93691d15
BLAKE2b-256 a0ee598b5146fd90e5f06ef0d4df18d75366f7d8a3981b29aff73989f7c538b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dcb068c1259edf57dde5eff723da09558c748ffc5b04397b77f456977763ab7
MD5 614c90825e3907f0a667f4ac309957c7
BLAKE2b-256 39f8cd0ab6ce3168724ed83361f515d5a6dd49f17b451c50df2650b8aeafc8e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c03bc5d28ce62c92690ed5622532e53c811d8475aa28542e5a4a42dff95e9e54
MD5 8e0a4651fd487f3801de5078247c15c4
BLAKE2b-256 0b0d6c029ffe0cb55ab2a6e676b567b5dd782bcef641a72f66cf369372fcdb8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dbb1bb5bdf5926e42fa25c77b8ab9725450607d9d89858b65934f544615d730f
MD5 3b5cc357533a8c19df707d90c4b45eda
BLAKE2b-256 9f125a74787b3e749374825e9b465c58567e9fc3ed63e007bcda725ab684901b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 954c92dffbde29b157b679ed28e495b4edb8af78582c223d93231ef8ea0ba642
MD5 121b77824aacf52c790b43ff399cd40b
BLAKE2b-256 8872ba39b0c5a190c10356c47d3b9e4f723d04f8beae584116b4c4c41d3ab4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89001c31597845f339e8962fbd65985a99c708b23fa27c2f3b43b8a61e524dd4
MD5 d621aee1cbea6af506986fd5c869fee2
BLAKE2b-256 50978f570e9cc2e167304fa7219909c3dc651efb80339caf696a84a4f8446561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e496a02681f60332c589f0d4f99d353a4dda5661e122d29c1f673df34cb4e246
MD5 93ff8e4e70604f977f9c7f999764b368
BLAKE2b-256 b8a30547be1ad2942ddc92c8bd2b7e776d0413795c144674a1c1b38c367cdbf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a47816ec927a03d77c5e58f37a1fdcbc63cb8b1fb020b944ac12a4cd9e74b38f
MD5 057e82ec1cc7dcd252075975c0c4153e
BLAKE2b-256 b3db33fa483b25b210a96a57dd5617c20f7fa0d73389ea1b018d36e786933a74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9c79f411a24cc4a0c0f0c188ab60ee795413c05d4c4d7c4a1720f022f71a385f
MD5 3e124ea13e85d131b6d7ee8d3d8943a2
BLAKE2b-256 f66a0093f848e9da42171176c4cf26f5a505bd93629bba48da2064c08e9543f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 46bf7058425b137aaf4fdc4c29e24df8440313879e5278a45d837cf502515b5b
MD5 99f7232cbff6b033cdc4885003c30ebf
BLAKE2b-256 ee1937d911afc60cce1c556f12de9d93d9c2dfa3a35b83908d48a34d376700cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8683432b636b8f1f2e18e6a8a1a76ff4aeae463ba0fe322f7a1ddd408e5492e1
MD5 2d516aa197a02c39888fe9db25034c16
BLAKE2b-256 9a82860e342d3ea4bcaa64a4b441638621298de6210dec8229387d24fee71c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6fa2ee6a180e865f250573ca8e2a2d36c9380bad9161de9d4363099ee69e5c5
MD5 783baead2f0ce32642b80157c755c022
BLAKE2b-256 4a546f57ce15ec2d12282eab0af95eb7f1277c796b23539b40f98a0c38940071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e57fe7fb122e5384fc71f1928ea744bc24ce018b7b6fea87aaa7628823fc7a3b
MD5 85335fd88d7578794060ae5e988ef5c1
BLAKE2b-256 0d245f16c8228fa574cf698ab1ff90cbeac9263b440ce6a7c6fc25a677cb4a48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c52bf03f969158c89a9793166ffe57dee7919be117dfa8e34e803e5ec7b221c
MD5 f9c12416a1b2836a8b9eb77fbe9f977a
BLAKE2b-256 cc4d8a08c8f429b91cedf7efb4a3e9a319d55e50ae4d341d57ee1a65b47c387a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 99f1b7357bbbaca6f830aafca5dfdde9c75bf14784af4ae9155326740851d005
MD5 ef583b8d139790192714a8ae37224249
BLAKE2b-256 997a0789ca795a7593294483279d919ec46ea6945e1c1019a73126f0a579fffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df1cfac10140907dc139d094b3ac58504ce8d00b1aa37e1ecf5334e9012ebd6e
MD5 4dd2cbc7f5b4c7f86d2f6cbf3503c1e7
BLAKE2b-256 a6c88ee61bf9fe45a7f6e8d58fc76b564637ddf6d89b8abac7a9e08e62cc504a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32429997b09939e8e82970f51b4fc914bf6c79339b8ba69bcfbb395339ecbf6c
MD5 4b5b45c518a64dac425eba11e27f1bdb
BLAKE2b-256 d003a697a3bbd9207d7f2480b53c7976cbf6ec7a4ef547987b9ed0de48440270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cb204c8fcee708a226c0f538a21b562fed90c9945bb8ba68453e3ff373924bb0
MD5 fe58f3f2841a9df3d8594bad287bded9
BLAKE2b-256 635d6385924734deed362d7ea1a823e404b992c75e8ee65b31dfba2518a4b6bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyramids_gis-0.57.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d4f67cdd9d184fac4e8563d5cb8f42e0f84b7a3e946c9b0b8d6d8ec2daa2494
MD5 0772f57ed26d7f081377ffaf4fe8484a
BLAKE2b-256 d4a9260eeeabd697ee2a64338520d57d0d4d14232b7f2f1224b4aad1530d225d

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

This release

0.57.1 This release

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

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