Skip to main content

Fast and direct raster I/O for use with Numpy and SciPy

Project description

Rasterio reads and writes geospatial raster data.

https://github.com/rasterio/rasterio/actions/workflows/tests.yaml/badge.svg https://github.com/rasterio/rasterio/actions/workflows/test_gdal_latest.yaml/badge.svg https://github.com/rasterio/rasterio/actions/workflows/test_gdal_tags.yaml/badge.svg https://img.shields.io/pypi/v/rasterio

Geographic information systems use GeoTIFF and other formats to organize and store gridded, or raster, datasets. Rasterio reads and writes these formats and provides a Python API based on N-D arrays.

Rasterio 1.4.4+ works with Python >= 3.10, Numpy >= 1.24, and GDAL >= 3.6. Official binary packages for Linux, macOS, and Windows with most built-in format drivers plus HDF5, netCDF, and OpenJPEG2000 are available on PyPI.

Read the documentation for more details: https://rasterio.readthedocs.io/.

Example

Here’s an example of some basic features that Rasterio provides. Three bands are read from an image and averaged to produce something like a panchromatic band. This new band is then written to a new single band TIFF.

import numpy as np
import rasterio

# Read raster bands directly to Numpy arrays.
#
with rasterio.open('tests/data/RGB.byte.tif') as src:
    r, g, b = src.read()

# Combine arrays in place. Expecting that the sum will
# temporarily exceed the 8-bit integer range, initialize it as
# a 64-bit float (the numpy default) array. Adding other
# arrays to it in-place converts those arrays "up" and
# preserves the type of the total array.
total = np.zeros(r.shape)

for band in r, g, b:
    total += band

total /= 3

# Write the product as a raster band to a new 8-bit file. For
# the new file's profile, we start with the meta attributes of
# the source file, but then change the band count to 1, set the
# dtype to uint8, and specify LZW compression.
profile = src.profile
profile.update(dtype=rasterio.uint8, count=1, compress='lzw')

with rasterio.open('example-total.tif', 'w', **profile) as dst:
    dst.write(total.astype(rasterio.uint8), 1)

The output:

http://farm6.staticflickr.com/5501/11393054644_74f54484d9_z_d.jpg

API Overview

Rasterio gives access to properties of a geospatial raster file.

with rasterio.open('tests/data/RGB.byte.tif') as src:
    print(src.width, src.height)
    print(src.crs)
    print(src.transform)
    print(src.count)
    print(src.indexes)

# Printed:
# (791, 718)
# {u'units': u'm', u'no_defs': True, u'ellps': u'WGS84', u'proj': u'utm', u'zone': 18}
# Affine(300.0379266750948, 0.0, 101985.0,
#        0.0, -300.041782729805, 2826915.0)
# 3
# [1, 2, 3]

A rasterio dataset also provides methods for getting read/write windows (like extended array slices) given georeferenced coordinates.

with rasterio.open('tests/data/RGB.byte.tif') as src:
    window = src.window(*src.bounds)
    print(window)
    print(src.read(window=window).shape)

# Printed:
# Window(col_off=0.0, row_off=0.0, width=791.0000000000002, height=718.0)
# (3, 718, 791)

Rasterio CLI

Rasterio’s command line interface, named “rio”, is documented at cli.rst. Its rio insp command opens the hood of any raster dataset so you can poke around using Python.

$ rio insp tests/data/RGB.byte.tif
Rasterio 0.10 Interactive Inspector (Python 3.4.1)
Type "src.meta", "src.read(1)", or "help(src)" for more information.
>>> src.name
'tests/data/RGB.byte.tif'
>>> src.closed
False
>>> src.shape
(718, 791)
>>> src.crs
{'init': 'epsg:32618'}
>>> b, g, r = src.read()
>>> b
masked_array(data =
 [[-- -- -- ..., -- -- --]
 [-- -- -- ..., -- -- --]
 [-- -- -- ..., -- -- --]
 ...,
 [-- -- -- ..., -- -- --]
 [-- -- -- ..., -- -- --]
 [-- -- -- ..., -- -- --]],
             mask =
 [[ True  True  True ...,  True  True  True]
 [ True  True  True ...,  True  True  True]
 [ True  True  True ...,  True  True  True]
 ...,
 [ True  True  True ...,  True  True  True]
 [ True  True  True ...,  True  True  True]
 [ True  True  True ...,  True  True  True]],
       fill_value = 0)

>>> np.nanmin(b), np.nanmax(b), np.nanmean(b)
(0, 255, 29.94772668847656)

Rio Plugins

Rio provides the ability to create subcommands using plugins. See cli.rst for more information on building plugins.

See the plugin registry for a list of available plugins.

Installation

See docs/installation.rst

Support

The primary forum for questions about installation and usage of Rasterio is https://rasterio.groups.io/g/main. The authors and other users will answer questions when they have expertise to share and time to explain. Please take the time to craft a clear question and be patient about responses.

Please do not bring these questions to Rasterio’s issue tracker, which we want to reserve for bug reports and other actionable issues.

Development and Testing

See CONTRIBUTING.rst.

Documentation

See docs/.

License

See LICENSE.txt.

Authors

The rasterio project was begun at Mapbox and was transferred to the rasterio Github organization in October 2021.

See AUTHORS.txt.

Changes

See CHANGES.txt.

Who is Using Rasterio?

See here.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rasterio-1.4.4rc0.tar.gz (444.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rasterio-1.4.4rc0-cp314-cp314t-win_arm64.whl (24.9 MB view details)

Uploaded CPython 3.14tWindows ARM64

rasterio-1.4.4rc0-cp314-cp314t-win_amd64.whl (26.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

rasterio-1.4.4rc0-cp314-cp314t-manylinux_2_28_x86_64.whl (35.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

rasterio-1.4.4rc0-cp314-cp314t-manylinux_2_28_aarch64.whl (34.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

rasterio-1.4.4rc0-cp314-cp314t-macosx_15_0_x86_64.whl (25.8 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

rasterio-1.4.4rc0-cp314-cp314t-macosx_14_0_arm64.whl (21.2 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

rasterio-1.4.4rc0-cp314-cp314-win_arm64.whl (24.8 MB view details)

Uploaded CPython 3.14Windows ARM64

rasterio-1.4.4rc0-cp314-cp314-win_amd64.whl (26.4 MB view details)

Uploaded CPython 3.14Windows x86-64

rasterio-1.4.4rc0-cp314-cp314-manylinux_2_28_x86_64.whl (35.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

rasterio-1.4.4rc0-cp314-cp314-manylinux_2_28_aarch64.whl (34.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

rasterio-1.4.4rc0-cp314-cp314-macosx_15_0_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

rasterio-1.4.4rc0-cp314-cp314-macosx_14_0_arm64.whl (21.1 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

rasterio-1.4.4rc0-cp313-cp313t-win_arm64.whl (24.1 MB view details)

Uploaded CPython 3.13tWindows ARM64

rasterio-1.4.4rc0-cp313-cp313t-win_amd64.whl (25.9 MB view details)

Uploaded CPython 3.13tWindows x86-64

rasterio-1.4.4rc0-cp313-cp313t-manylinux_2_28_x86_64.whl (35.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

rasterio-1.4.4rc0-cp313-cp313t-manylinux_2_28_aarch64.whl (34.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

rasterio-1.4.4rc0-cp313-cp313t-macosx_15_0_x86_64.whl (25.8 MB view details)

Uploaded CPython 3.13tmacOS 15.0+ x86-64

rasterio-1.4.4rc0-cp313-cp313t-macosx_14_0_arm64.whl (21.2 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ ARM64

rasterio-1.4.4rc0-cp313-cp313-win_arm64.whl (24.0 MB view details)

Uploaded CPython 3.13Windows ARM64

rasterio-1.4.4rc0-cp313-cp313-win_amd64.whl (25.7 MB view details)

Uploaded CPython 3.13Windows x86-64

rasterio-1.4.4rc0-cp313-cp313-manylinux_2_28_x86_64.whl (35.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rasterio-1.4.4rc0-cp313-cp313-manylinux_2_28_aarch64.whl (34.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rasterio-1.4.4rc0-cp313-cp313-macosx_15_0_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

rasterio-1.4.4rc0-cp313-cp313-macosx_14_0_arm64.whl (21.1 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

rasterio-1.4.4rc0-cp312-cp312-win_arm64.whl (24.0 MB view details)

Uploaded CPython 3.12Windows ARM64

rasterio-1.4.4rc0-cp312-cp312-win_amd64.whl (25.7 MB view details)

Uploaded CPython 3.12Windows x86-64

rasterio-1.4.4rc0-cp312-cp312-manylinux_2_28_x86_64.whl (35.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rasterio-1.4.4rc0-cp312-cp312-manylinux_2_28_aarch64.whl (34.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rasterio-1.4.4rc0-cp312-cp312-macosx_15_0_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

rasterio-1.4.4rc0-cp312-cp312-macosx_14_0_arm64.whl (21.1 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

rasterio-1.4.4rc0-cp311-cp311-win_arm64.whl (24.1 MB view details)

Uploaded CPython 3.11Windows ARM64

rasterio-1.4.4rc0-cp311-cp311-win_amd64.whl (25.7 MB view details)

Uploaded CPython 3.11Windows x86-64

rasterio-1.4.4rc0-cp311-cp311-manylinux_2_28_x86_64.whl (35.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rasterio-1.4.4rc0-cp311-cp311-manylinux_2_28_aarch64.whl (34.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rasterio-1.4.4rc0-cp311-cp311-macosx_15_0_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

rasterio-1.4.4rc0-cp311-cp311-macosx_14_0_arm64.whl (21.1 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

rasterio-1.4.4rc0-cp310-cp310-win_amd64.whl (25.7 MB view details)

Uploaded CPython 3.10Windows x86-64

rasterio-1.4.4rc0-cp310-cp310-manylinux_2_28_x86_64.whl (35.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rasterio-1.4.4rc0-cp310-cp310-manylinux_2_28_aarch64.whl (34.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rasterio-1.4.4rc0-cp310-cp310-macosx_15_0_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

rasterio-1.4.4rc0-cp310-cp310-macosx_14_0_arm64.whl (21.1 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file rasterio-1.4.4rc0.tar.gz.

File metadata

  • Download URL: rasterio-1.4.4rc0.tar.gz
  • Upload date:
  • Size: 444.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rasterio-1.4.4rc0.tar.gz
Algorithm Hash digest
SHA256 fd6e3caad8fcde931244cc763a7632f565bc17bc04fb1739ffff4c6e060b6120
MD5 4e22d677b22103fdcc0f815dee375fbd
BLAKE2b-256 25454b252e35027557d76bde46e3591a618a9b3f2ef3829cf2fba11f2a3de039

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0.tar.gz:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 6f7ddc1e3f269f699fe289f94f4eab4eebd9c40043e21e3d150ae40b33dc455f
MD5 6936ff060a0f44373004679ebd008f93
BLAKE2b-256 4c4c0a2cf451f0be4df78e35eb122438711b08c391406df21729e61c7d92cb6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314t-win_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 67a72d259a5eb66fd76e2e989573a5eb5e4351d1716cc03d224b498a772502e0
MD5 03ac08a7535a6b300f9e9652fd984594
BLAKE2b-256 59ca7fa60389c80feafc56f60fa5ee3ee091b28bb576216175bbf9d06221bae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314t-win_amd64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54a1d1b1478d6405e2c4c60e0d9870af6e742a859258c230266e0287e1b38762
MD5 db87ba2611706971506d6f73b5b4b233
BLAKE2b-256 e7823478d892e89c1d199fbaa8c4a81ac39612bb767ffa2747a9a601e22c6040

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02f0a5b8c82388d8b0bb55217cdfec88c7492de5217132f190aba68de9714e81
MD5 f2e15cd956dd7eb38a41eb689fec7611
BLAKE2b-256 ebbb2ed812940339a6d3994f27cb95f9f5b983f7ca0a6b31ee33d5c49f551d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2da44b5de5a24a0779cde3e6cd9848a2ee81376e56f2d2c24b841bde4f7f40b0
MD5 6ca3b54612138c53fbc82d0e8cd3e524
BLAKE2b-256 d108c32d3a32b57b6cd58a824c606d3a61704176a9cedf17dd38171fbb75a1b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b374296797c7d1885bb47b18f8284e8b1c83f3f99aaaa0c235b322f8509029b3
MD5 334eadef7d9d4d35348fbd30fa890a10
BLAKE2b-256 e8f0064e0bbb50785a48ff7f46f3d7b808eedb3a78cd5567616ddd86f0b2e36e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314t-macosx_14_0_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 61506f2f9e628f1f2e61cb2bd3e761f5fd6cb7a844cf5b42b20f47cf14b9e81d
MD5 7c1d7c39d58e4c20f07107dcb3e88c02
BLAKE2b-256 8319cddaa61fea44f6d9728b67c26c12bffa0302ea977ebcac418a07c112adb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314-win_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 575354a2d9c27c2c545c6473a0e41713856e71bfb33b038a528862b4917c855c
MD5 960db75cab6626b5ee8330e406f23009
BLAKE2b-256 2e3f42b86f18512f667c5a55c66f46828d44dee9031af5f8a301d37bb5360e87

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314-win_amd64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b62ca759598a2be8843d7d18be3675e83bc0543460ae195dcb29ef9fe2727e3
MD5 b9ac1fa200320d6575c4a5f22550e415
BLAKE2b-256 8a060aec03f4b55ce130af2a56867308bf9b96e0f892abcfe5f89530584b3b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8569ebf3ac46c1caca4e18f3c0eb6fb8d4687c8b998c648a614d7e48f374da83
MD5 0fb4d18824f6e13b33a15f620ab6530e
BLAKE2b-256 8ea585fc47c1ce51d92ca3745cfd39b7f26cc0f560c138760d2b49d6ed5b48a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e8d8d0f9beb7b8ff89c0a4b49d1d1c2c9ae761e56ce261783a864a99da273e7f
MD5 123431e5021319d3a462c809857e650b
BLAKE2b-256 79e9b026ad1bea30b12e5cb7eb40b1fcae452902286528d24585408f4464abde

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e02d5d82b5f38a98a97d8aa05209141b9aabc847b4ca87d3dda3768b195271c2
MD5 eece2143dc155e95e9c6846a872bf429
BLAKE2b-256 af5fb513f202867e6a57933d8157936bc50802c95dc5c282217b1993e20b03b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 4b0aa90ec4bd653be08cbaae948dce6ad05ff68ba0b3a9e754700e9cddd4d5ab
MD5 6787fcb02ea0d68d4cfe0ed1bbbe20f3
BLAKE2b-256 c3d86b3c81e99ea291951536fbbca2596b121c4a2128f3dafcccada15cf0611d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313t-win_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 64ee482c032ce59ca2865afdce29f2acdbf06ca9f03619d6647d378616dd1792
MD5 aff8cd37306077380862bf5dd9cef4bf
BLAKE2b-256 f2cb92ef50bf0bfb3e458e44dff5b3d451c1e65decc0074e7a767c6fe19f71f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313t-win_amd64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d3bc80f55210fa1af58c4fbd50773a79a0304befd8859efc85975f74abc0c22
MD5 3fd0aff223513aeb40642e83eca4c0d6
BLAKE2b-256 20f84e2d2b24f6589725052d7d38c2db80e907b58fe6bb15ddf07b0ca7495c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ca3f09d51882a411b92bcda36c286bf3fc4a3010a35424159ddacb7ca6a59f8
MD5 bd8582a07c215996be2a68ad9c8d989c
BLAKE2b-256 ad2b566dcee2f189e3be9b40badfebc4fa719dede52b934be9542e5cb13defee

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 04817f44628e09894d20786f009e31edf9875bec87de451d690f87ecfa4ada65
MD5 0a8eb52235076ea4834ac85dbfaf6ca2
BLAKE2b-256 f2c9ef4176a1f3766cbfc931b0a83a6e51d098a7487b318955595b86ac530992

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313t-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9672da6cea5aefe3755bd3f1623af8df92633a63f21967fa3c90b9c41f7b9b0e
MD5 afc41568dc32fa1ade8a18abe9d01015
BLAKE2b-256 8c9f1d6e8191f90164e4e64e0b930629ceec64e4d88e4f3e0ee9fc7106cde61b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313t-macosx_14_0_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4e127c3ff98c711b3a26f3e21efcf0044e8f5ec573b1194126ff614aabed3898
MD5 1fb4f2fe5e4c766e1b11637fe8ce32ed
BLAKE2b-256 32910b23f14528b35c1193b49116ac3fe54f40d45d38137a14ea850f2562af1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313-win_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d4ec4fed97c27debfc6b7d0536d3824fa32984ad09bfd1b7fb6d685767c1458e
MD5 2aff6c32797fbb53840c310656e34beb
BLAKE2b-256 6596f9f74857b4b2dc348580c6c5e1405419c3f69d24b92e18230b4a319cf3bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313-win_amd64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 567f6a692ab67f26452dc56bc14127b789ba6d7cebf3b1fd671cc059c3d9d481
MD5 298402e35f16ffe4826c14f1b76e02f8
BLAKE2b-256 8ec8e6c3d66b46d98f0bef63d86c1d1528f2a7c5ccbcabd7af9667ffce390d5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a040dfd01e90a0ac14b8e56b57b5f98bcd6b67f4415f862398bd5d3059bf93e9
MD5 247daafbc81fcca244b15465de9d34b6
BLAKE2b-256 e6e3ee2689d2c6fc47895d967bada1cfd21cf32964b1d5e2762b4957dbac3851

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 538c29802196ed3b2b3f14b226feaf586618a2e5330735158afafdec909df000
MD5 166f7f41d57ce7c4fba1d968c10f4f02
BLAKE2b-256 8ad7e585b6c9eb7157eca0b5cc4778baa0a3f0b1e6e245b65b0acbef03cbd4e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c499bbc1200c75347cf443d85c452012da97e80f9c3aeaa141a019a53046c45e
MD5 ad32dffc9f7c11fc4ed4498a47e204f3
BLAKE2b-256 a4554d761267cef279416226164cd8018ad0a18534dfcfb0225bdd5b5fa88a31

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cfac2aabc4f508ff10047a6c2411d8f111670d20865aa36ec9e7e3fdcab409d6
MD5 22f1904399bc1b23ab2e2a143afc3eb3
BLAKE2b-256 a642c72f76f9518e7a4528632488486e581b7c53c827cf65c37cf291d7ffa4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp312-cp312-win_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90c4cd04c87da9affe1cef0e25ce09404fd76b977cb319a1ed9080ee344c0b7f
MD5 b83a117aa48eae2e4240d3aa5b5e46de
BLAKE2b-256 f3b439e48c64417b624895b2652902c1e94d691b341509ead0ef1d406836869e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 677b34bc6e5bc6ad84a558b09e8d9ae901fb54c19c8c1c9515f61458441c0ccb
MD5 b07b77613cbcb54c06068cb840eca497
BLAKE2b-256 1c3c67bf30c3453ffb22f20a6d369508ba257b6ce45cd855991eb058e8d098d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ab2a2f363d6cdda4f783b3c14b7836ed816629e6002272d3804fba2bda14cb1
MD5 182b4abdc0e915f85618f934e40391b3
BLAKE2b-256 05a563687771600ff20055dc4c8dc3d2fadf15eff83619fc64c8daa58dd6347b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 efbcd9188a34587019648c008ab43d2c87ad31361454a213b73bd3f334ceda22
MD5 5efb50aa8a8ca9965ba2ddd23ef062bd
BLAKE2b-256 9ec221f8981a7b805fe42d02a5fe9609695dd58b3010bfa7e0a87e3e7f125e6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7bd4d75ce08032a065838038ce09b099e115221368a655fadc79e3138dfa6356
MD5 d755b973195fd8c3bccd255006b8d415
BLAKE2b-256 354acbe0eb0c489cdda860bbb8adfd5be7c534aa27221d5f05ce6828ad0a32fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 fa13430adcf13cb275c392074984eaa78f30d9c0271d7af9319023af103a3a0d
MD5 ffba2760447eb859636fd85de48c9690
BLAKE2b-256 7f4df8e118ac84dc0fb3a16278f3961fbc7684af03c0f62dde6f0f6ad3692da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp311-cp311-win_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d3ef1532039810e0a62591f390a390e4836d56c3e688bf9002ee0fe66924418
MD5 be84a9e6c5b17200c80c63349398a988
BLAKE2b-256 836036d54f3e912e25bdebd8d9c8a3d57f4647c507242829b75edb0573a987ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5065c171ce06a065fde586df64cec39af2a1268df4f099febae7495e0693cbde
MD5 9a48f682b2ba3ae1f3f4168c704f41bd
BLAKE2b-256 22ec1c4dc320a20fd573bcb8f7617fb863fa412d25243223f292c0ef7dcbea9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40e3683137a756d1adb0a61dc0a1a7fb7a7cae4fcad26fd033db87e31b351111
MD5 8db41f01a5e04cb1a85d259d49ec6c45
BLAKE2b-256 93284c5568a2edd1cab91ca605ef52247ab2ea33cdb50939036f9875a2642389

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1c9ce81278a30846c4db3c8153ebb26555d55c7f7b9c80f056e819f515bb4e70
MD5 d4c7cfa3f6bdd5f9f41ac1653692ed53
BLAKE2b-256 d81b0206d68ba0db0547886a7be2f2c3ea02b4b2fe1cbd3116e186ab50cae37d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9387bb8ca1f174de3b45e011949359d843f81242056c5c389f374d6a73ea104c
MD5 d32a7b9a94b485f4e975b9f845d9d361
BLAKE2b-256 09fa89dbfbf27c8d6a2a8dd8c7a441d76f51b83fdd446cbbaa0cbb31831ee863

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d9376c9797a368a1b76127ea9d5d275d44b28a9143a4b5d87b10b2f0f4abc7dc
MD5 38bee76f807530d0f24da4f33f4bd7f7
BLAKE2b-256 5e867ce0bfb638b23a3dec026be4c03c10d3b04503835b27c8f161c77d019fdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp310-cp310-win_amd64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7312b59d8aca2c021d8f94bdec024382c7edc3d1d4f12fd010c970fd9cdb4f7
MD5 63dfebd576171a1eb0c4075b76e2adb7
BLAKE2b-256 bc07a22320d8092cccb1afcaaa1f9ef60b79ad1526614632585549d741f2574d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e82b99559b1c47484aa7afb15d2077142e21aa2b9baa8d8e485bb76a43aa2e0
MD5 092bd60f9df234b4f2e92d55e4221307
BLAKE2b-256 be8bbbc424df48f4a2ef261c9211ad96c1288c42e86b28f1a75269ea37306c1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 bb4eebb3f9d6734832d43c58b551907aa9576a6dac6f981c4cb3005c930a5f93
MD5 4bb75f2b92fcce2f07a485109973e973
BLAKE2b-256 a9491d0712c5ac676147aae4543f9b8a389764e95789e11116d4b5e155510f2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rasterio-1.4.4rc0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.4.4rc0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4e29b3226d07b066ab0527639512e79731d3385e756f7eb809c1ae23202b681a
MD5 20ea7cde198e248384c5576357c968d0
BLAKE2b-256 3c324924d989723efb24654afb1f4ca3c8387db1aa1d5ac74d89d9daf8865e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rasterio-1.4.4rc0-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: build-wheels.yaml on rasterio/rasterio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page