Skip to main content

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.5+ works with Python >= 3.12, Numpy >= 2, and GDAL >= 3.8. 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.

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.5.1.tar.gz (457.9 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.5.1-cp315-cp315t-win_amd64.whl (31.7 MB view details)

Uploaded CPython 3.15tWindows x86-64

rasterio-1.5.1-cp315-cp315t-manylinux_2_28_x86_64.whl (38.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

rasterio-1.5.1-cp315-cp315t-manylinux_2_28_aarch64.whl (37.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

rasterio-1.5.1-cp315-cp315t-macosx_15_0_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.15tmacOS 15.0+ x86-64

rasterio-1.5.1-cp315-cp315t-macosx_14_0_arm64.whl (23.4 MB view details)

Uploaded CPython 3.15tmacOS 14.0+ ARM64

rasterio-1.5.1-cp315-cp315-win_amd64.whl (31.4 MB view details)

Uploaded CPython 3.15Windows x86-64

rasterio-1.5.1-cp315-cp315-manylinux_2_28_x86_64.whl (38.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

rasterio-1.5.1-cp315-cp315-manylinux_2_28_aarch64.whl (36.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

rasterio-1.5.1-cp315-cp315-macosx_15_0_x86_64.whl (25.0 MB view details)

Uploaded CPython 3.15macOS 15.0+ x86-64

rasterio-1.5.1-cp315-cp315-macosx_14_0_arm64.whl (23.2 MB view details)

Uploaded CPython 3.15macOS 14.0+ ARM64

rasterio-1.5.1-cp314-cp314t-win_arm64.whl (29.8 MB view details)

Uploaded CPython 3.14tWindows ARM64

rasterio-1.5.1-cp314-cp314t-win_amd64.whl (31.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

rasterio-1.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl (38.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

rasterio-1.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl (37.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

rasterio-1.5.1-cp314-cp314t-macosx_15_0_x86_64.whl (25.1 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

rasterio-1.5.1-cp314-cp314t-macosx_14_0_arm64.whl (23.4 MB view details)

Uploaded CPython 3.14tmacOS 14.0+ ARM64

rasterio-1.5.1-cp314-cp314-win_arm64.whl (29.7 MB view details)

Uploaded CPython 3.14Windows ARM64

rasterio-1.5.1-cp314-cp314-win_amd64.whl (31.4 MB view details)

Uploaded CPython 3.14Windows x86-64

rasterio-1.5.1-cp314-cp314-manylinux_2_28_x86_64.whl (38.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

rasterio-1.5.1-cp314-cp314-manylinux_2_28_aarch64.whl (36.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

rasterio-1.5.1-cp314-cp314-macosx_15_0_x86_64.whl (25.0 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

rasterio-1.5.1-cp314-cp314-macosx_14_0_arm64.whl (23.2 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

rasterio-1.5.1-cp313-cp313-win_arm64.whl (28.9 MB view details)

Uploaded CPython 3.13Windows ARM64

rasterio-1.5.1-cp313-cp313-win_amd64.whl (30.6 MB view details)

Uploaded CPython 3.13Windows x86-64

rasterio-1.5.1-cp313-cp313-manylinux_2_28_x86_64.whl (38.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rasterio-1.5.1-cp313-cp313-manylinux_2_28_aarch64.whl (36.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rasterio-1.5.1-cp313-cp313-macosx_15_0_x86_64.whl (24.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

rasterio-1.5.1-cp313-cp313-macosx_14_0_arm64.whl (23.2 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

rasterio-1.5.1-cp312-cp312-win_arm64.whl (28.9 MB view details)

Uploaded CPython 3.12Windows ARM64

rasterio-1.5.1-cp312-cp312-win_amd64.whl (30.6 MB view details)

Uploaded CPython 3.12Windows x86-64

rasterio-1.5.1-cp312-cp312-manylinux_2_28_x86_64.whl (38.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rasterio-1.5.1-cp312-cp312-manylinux_2_28_aarch64.whl (36.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rasterio-1.5.1-cp312-cp312-macosx_15_0_x86_64.whl (25.0 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

rasterio-1.5.1-cp312-cp312-macosx_14_0_arm64.whl (23.2 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

File details

Details for the file rasterio-1.5.1.tar.gz.

File metadata

  • Download URL: rasterio-1.5.1.tar.gz
  • Upload date:
  • Size: 457.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1.tar.gz
Algorithm Hash digest
SHA256 c1b6ae15f4ccad704f1fe8417da5c2250145c7bcdb91acb53833bf5aefdd9e48
MD5 76b80b5aee19a3504e8a16091136955d
BLAKE2b-256 1d1aee73b447f1623a6bb6490af08d4bbed3fb6e38b0adc54553a0d244d4103a

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 ac450a2c1e6de990eaaee347ebceca160b1531c9f13c5db489d0e3113ea13984
MD5 92ee17863c3ba77cd67710ef41da0ac5
BLAKE2b-256 123faa7fd1beda974c7e2ded73abdbc3978c7d60165ee70c0ee29c0ebef22a8b

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fbb933659035f0aca32e4dc0dc022c7162b4f6598b15366c5b19b4a7e65c1991
MD5 edbf1339c36a43bca277f7cccfdd5ac6
BLAKE2b-256 ed208a44acb103a9f6a5a0f605d4c8825a2de26ea5420b561b4a23b9da864f6a

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4ea970d39f0b134fc91141d767b3c49bc2dea38a32f0b036fbdd5ec2e8ca457
MD5 bdbd0901a15c52953a0b3c248eb1f435
BLAKE2b-256 59d213f9d16f2cfd4e163973bff03dc730d21d1b6ebdcfc6bf8c4eca1e9ec746

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp315-cp315t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 bf5d2cf43791651522fedb284cc08398f96fecc018dff24d7fc97965c909ab3a
MD5 447d898e57d4273979694441f666699d
BLAKE2b-256 ebcd788c62b2f5764f81d9906d3ec15dfc4ba4535487e2dd9f6f46d2151e495c

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp315-cp315t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 94ae0fe4c0eb031da99614a1a1cd27819f900f86bc84976cd9f713eee05584a3
MD5 7ad7b4ec7795089ba719b660b311f0ad
BLAKE2b-256 877c5f390f8e9fa17cf55c62558dd3a08adfc1cbe7216f2718e8edf5caadab72

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 31.4 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 55e18b8a6a7f4a9769942d48a1545c5a97920cf841fe5e4099032ba855bdf95c
MD5 6b615d9212801e04304637cd4f8da0dc
BLAKE2b-256 16a2d6eb95f239878d2a964a1cf2785378626c7cf4431ce2f54bc3b0210c0a6f

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01f927ee7ef08cbc111b34092df266308fd2c64fad2e21a97c991973eb8e0c25
MD5 641fcf13f830c41f0b0683c524da544b
BLAKE2b-256 0a93f39df98b09524d0b44fdc54722e3b044fbf6620723415eef241760b5ffdb

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5933e56b15ef29fcbec370a2e0b5ac39b33023d85a3f5b01cdf0cbe4231c6204
MD5 b67f2ec3ecb1776f63bf21cc3d764169
BLAKE2b-256 515d2c8f4d8bb0582b7dac694413892af901f14a4526a8a9f46d28cfb36b8d0b

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp315-cp315-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 60d74d11f290510639046c447256085eae0a925acdfe07e37f7436fb97cb9f46
MD5 d3865acd647e1ea985ff02ed640f5194
BLAKE2b-256 e9e9ab1d83a84cae5514606dfba896761f02086db5af0f07b811e70e9b4ed23d

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp315-cp315-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp315-cp315-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3aa1a3441587341b78558b5359aa5d2694b45a911d7b5df23af726420e420bce
MD5 73a038f3379443f8779cbfa2f63b9416
BLAKE2b-256 a677c639c0fc46d775d47e70e0bec4af549313509dfcfbeaffdb903c16859f0e

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 29.8 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 11e2e9c68971beeec603c2613fa7740cf0a02dd026ef1aaa75d1cdf4246fbde6
MD5 e54fd8dfcfac98313c7507ca5590ebda
BLAKE2b-256 25db89bb06e64809c7644fc221895494068b23d7078509c8d070754bb01043cc

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c0cd79ed52481d55395f1d3def075ff45173ed07ccd238fddeb0c63522b3d137
MD5 dffdedaa77d41484d6acbbed0297af68
BLAKE2b-256 2c54fbfa20a98485cb39b70574e3bf9bd12603ffc319f80f64e0fbada1c743bf

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8683074903018918341908e714f792ed5d696bad441ecec1787de8eb896573cd
MD5 16c8952393acd7dafa3269ac9ba66335
BLAKE2b-256 799a7303424657fd71a1f8f4d17d8186de38e98e84f6fe36fe0a8660b7c918bf

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82719d4de76f3bafb165e932ad997b07116aa08621db079750ef1031dc514e11
MD5 406a07b4c719ef795ec6f87d787f6e33
BLAKE2b-256 0c5915f99c480fffc044dde1ea8cde9c7a746997ceb639c624505f6a058e7f4b

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 00c78697cb565e97f99deb485fc7f23f28ff30e857124872ef0c5a3e83dd7e47
MD5 b556c337d90f5232268eebd50e03c3c1
BLAKE2b-256 663a228a659e55c3da4bec7cdb857ad8fb201ea80a5c85a1bd1717e4c7997788

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp314-cp314t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c361ed93cb8ceb314bf42d98815f2b6dd0254f7367d2b932435a8cf0aeaecf96
MD5 0f76eedcb78b8de084a9d96660062458
BLAKE2b-256 f154c4848b8bc666a16dc768d89ab63b2c0f509aa1e94f292d7d6109c081da9b

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 29.7 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a685d2e97684b275b12859f9e0b95a8f511a51a2ac51b284428c6f50f1bcfd17
MD5 ba0ead18db4c20790fef1bbf8e9b2196
BLAKE2b-256 1bfd07c25fe92cf9a9e7095f396291dbc48186f17f3320119ccd1d5d8cc91fe9

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 31.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 546ca44c4417772a48c5224b037f10330a75cde74b429f07ac43838e20f9b2c9
MD5 311c630455094e78094cf30def2f7247
BLAKE2b-256 f682cc05ee6ae639801f79c35667bf0b1b163819625483b3231fb70858c1155f

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ff9db698a88e716254fb0788768f75d7b58532c8253674261fa05abd40f621e
MD5 a617440543618786e3b960fef3665ecc
BLAKE2b-256 1a4ad691dfcbf3692ee2f57bc9fa7de61b03fca136cff1927ce08ab72bf4beab

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee01dc4b114a21078af87da916816c6c62ba5b5d216725f148ae695ef4deebf2
MD5 98cbb42a2dc54149db1ffb4f5e3829c4
BLAKE2b-256 ecbb6ca85602f26f55e0b673af34eb458f041f222673549ce6b54f93ba9707b5

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d8064e9b2820c3f1027399f410d8cdbfb57bdedfad46e5381afb527a9b6f74a2
MD5 d2ea5d02e8d871a5faffa4188f7db81a
BLAKE2b-256 e73e27c957e788913445266728e9a81deb3a91fd5b8dff5bc9dd8281b3cceb18

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c8702772d6e91c0578d84af88de7d4926c48b0b6eca33d0660e90d7f37c06bf1
MD5 3f9ea9d78faeb34d062e9978cc57e396
BLAKE2b-256 16ae90778e26e8c85f8187feeb1b86d789381e5715f005074846ee5568115a00

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 28.9 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0898355908ed3614ba1415532432cf4a1a308b189b2c9d8307a26a44bcb1713b
MD5 4ab7f1facf1dc02d29db12aa83d36778
BLAKE2b-256 5c7f182833e6a7ad02191a72c8e0aa8ab4283379cf2f7c92c4d3ca0f9c881848

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 30.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b3686865af2c67114f5dfb67df483db61bccad4078083a3dad481ea035e5d701
MD5 bb7b20aa5db3237619d402aadd895fea
BLAKE2b-256 9ee8676dd01db4e8a1735b6d893cd0f76920dab41d1b508579a7f5778ee1cf3c

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9093a9277559ac0f954d9a0266886bc4037e3ffd7a40837f6ea6486a96c8c258
MD5 7094f7daab588941eb8b1675fde02410
BLAKE2b-256 f2bd1e84b24be51ce3950c73832c098b4cab49190ffdf343f13b51a35ca73a00

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b117209922784ef7948f702a0e9eb26be744f4b24d31f5eb97c45c0f04e2e4c3
MD5 3590a7b397dbd908e23e63f52fd338cb
BLAKE2b-256 9fbeb759df521f9d3df913af5bf71a3799305f5cabd5183b51319907b5738d5d

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e863b614cadad435a4394792b6cdc84324b15197629ad5a20c8d56cbc4eeff92
MD5 60dbb2352cccf6dd86d93c8111b53ee1
BLAKE2b-256 e9ca54c1976340df39ea6bd77ff4b41eec932ff260b635a8512ceae0945595c4

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 937944c445d4ea4d6969e9dbfcf305143c05fc4df2f8fadfa360cb2d0f65d7b0
MD5 599134d44b9a7c38a6c723b67870f0eb
BLAKE2b-256 c9f0d3c613d845b35a3800b812f0fe0351675f6310972bbd6349f844499ebd6a

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 28.9 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e31b65231a631b0b59471aeae4423167d42f88da0c5ee5a519dc07deb7a4666b
MD5 7b108baf558834a4941b8434e8b3f148
BLAKE2b-256 0200cc447f6d8dfad6f86f8bb9bdb0bf0083ef44ec848b8bf60269b56eea87c1

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rasterio-1.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 30.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rasterio-1.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6fbafe970d44ec06179c7884cdb160a90311e3d19da25bff970fab06123f0201
MD5 685efe5147fbb7e4993aa5bb535bf6c4
BLAKE2b-256 8b23c12e0a536efc60f7730e96855c5cae20bd3af850debf08a99ec50d37a46a

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a270366c4f44f7bb4367d7068b6de08c56b2b04049e3dfcd06d451141fee3a7f
MD5 184729dccae8d020eef72260f49b7011
BLAKE2b-256 796cbadf2c4d54482a1192d0057994eb48a6ff25ba6a84011d8fa2d9c230bf73

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 821d49afd18498fb0918b72961b1b667193c64edf8cc484081c522d10b33980d
MD5 db4d17f8b705398b2a15d73ce6530e0c
BLAKE2b-256 3452b85411d37e87ce5561693918a944ecbe6dc3af1d4a375c9d77f2ec1c283e

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 833511f045ca49dafbf25da4762a0b19dcf5d046ded8b318c094363e2d65f474
MD5 4c745703eea855af5feb8859b3bc63e9
BLAKE2b-256 1a7cd38dc9ba3caa6feb0202178327ccc6e0010973aae9211e46fbc59c2a7970

See more details on using hashes here.

File details

Details for the file rasterio-1.5.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for rasterio-1.5.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c209e670abf0f30695a784c4f0170366462b9a3eaea3e49122ab2ce81799460b
MD5 de6ba9a766bafe04cddf87be43722fff
BLAKE2b-256 878895d2d41889f86fc7f532caf672c789db1ecf48fcf56a62c6a26450025c65

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.5.1

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