========
Rasterio
========
Rasterio reads and writes geospatial raster data.
.. image:: https://github.com/rasterio/rasterio/actions/workflows/tests.yaml/badge.svg
:target: https://github.com/rasterio/rasterio/actions/workflows/tests.yaml
.. image:: https://github.com/rasterio/rasterio/actions/workflows/test_gdal_latest.yaml/badge.svg
:target: https://github.com/rasterio/rasterio/actions/workflows/test_gdal_latest.yaml
.. image:: https://github.com/rasterio/rasterio/actions/workflows/test_gdal_tags.yaml/badge.svg
:target: https://github.com/rasterio/rasterio/actions/workflows/test_gdal_tags.yaml
.. image:: https://img.shields.io/pypi/v/rasterio
:target: https://pypi.org/project/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 works with Python >= 3.9, Numpy >= 1.24, and GDAL >= 3.5. 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.
.. code-block:: python
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:
.. image:: http://farm6.staticflickr.com/5501/11393054644_74f54484d9_z_d.jpg
:width: 640
:height: 581
API Overview
============
Rasterio gives access to properties of a geospatial raster file.
.. code-block:: python
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.
.. code-block:: python
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
<https://github.com/rasterio/rasterio/blob/master/docs/cli.rst>`__. Its ``rio
insp`` command opens the hood of any raster dataset so you can poke around
using Python.
.. code-block:: pycon
$ 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 <https://github.com/rasterio/rasterio/blob/master/docs/cli.rst#rio-plugins>`__
for more information on building plugins.
See the
`plugin registry <https://github.com/rasterio/rasterio/wiki/Rio-plugin-registry>`__
for a list of available plugins.
Installation
============
See `docs/installation.rst <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 <CONTRIBUTING.rst>`__.
Documentation
=============
See `docs/ <docs/>`__.
License
=======
See `LICENSE.txt <LICENSE.txt>`__.
Authors
=======
The `rasterio` project was begun at Mapbox and was transferred to the `rasterio` Github organization in October 2021.
See `AUTHORS.txt <AUTHORS.txt>`__.
Changes
=======
See `CHANGES.txt <CHANGES.txt>`__.
Who is Using Rasterio?
======================
See `here <https://libraries.io/pypi/rasterio/usage>`__.
Raw data
{
"_id": null,
"home_page": "https://github.com/rasterio/rasterio",
"name": "rasterio",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "raster gdal",
"author": "Sean Gillies",
"author_email": "sean@mapbox.com",
"download_url": "https://files.pythonhosted.org/packages/2e/48/fcd02399c7c4041c850b59c7cd80c309f7b87c86649e2bfb515d44ad061c/rasterio-1.4.2.tar.gz",
"platform": null,
"description": "========\nRasterio\n========\n\nRasterio reads and writes geospatial raster data.\n\n.. image:: https://github.com/rasterio/rasterio/actions/workflows/tests.yaml/badge.svg\n :target: https://github.com/rasterio/rasterio/actions/workflows/tests.yaml\n\n.. image:: https://github.com/rasterio/rasterio/actions/workflows/test_gdal_latest.yaml/badge.svg\n :target: https://github.com/rasterio/rasterio/actions/workflows/test_gdal_latest.yaml\n\n.. image:: https://github.com/rasterio/rasterio/actions/workflows/test_gdal_tags.yaml/badge.svg\n :target: https://github.com/rasterio/rasterio/actions/workflows/test_gdal_tags.yaml\n\n.. image:: https://img.shields.io/pypi/v/rasterio\n :target: https://pypi.org/project/rasterio/\n\nGeographic information systems use GeoTIFF and other formats to organize and\nstore gridded, or raster, datasets. Rasterio reads and writes these formats and\nprovides a Python API based on N-D arrays.\n\nRasterio 1.4 works with Python >= 3.9, Numpy >= 1.24, and GDAL >= 3.5. Official\nbinary packages for Linux, macOS, and Windows with most built-in format drivers\nplus HDF5, netCDF, and OpenJPEG2000 are available on PyPI.\n\nRead the documentation for more details: https://rasterio.readthedocs.io/.\n\nExample\n=======\n\nHere's an example of some basic features that Rasterio provides. Three bands\nare read from an image and averaged to produce something like a panchromatic\nband. This new band is then written to a new single band TIFF.\n\n.. code-block:: python\n\n import numpy as np\n import rasterio\n\n # Read raster bands directly to Numpy arrays.\n #\n with rasterio.open('tests/data/RGB.byte.tif') as src:\n r, g, b = src.read()\n\n # Combine arrays in place. Expecting that the sum will\n # temporarily exceed the 8-bit integer range, initialize it as\n # a 64-bit float (the numpy default) array. Adding other\n # arrays to it in-place converts those arrays \"up\" and\n # preserves the type of the total array.\n total = np.zeros(r.shape)\n\n for band in r, g, b:\n total += band\n\n total /= 3\n\n # Write the product as a raster band to a new 8-bit file. For\n # the new file's profile, we start with the meta attributes of\n # the source file, but then change the band count to 1, set the\n # dtype to uint8, and specify LZW compression.\n profile = src.profile\n profile.update(dtype=rasterio.uint8, count=1, compress='lzw')\n\n with rasterio.open('example-total.tif', 'w', **profile) as dst:\n dst.write(total.astype(rasterio.uint8), 1)\n\nThe output:\n\n.. image:: http://farm6.staticflickr.com/5501/11393054644_74f54484d9_z_d.jpg\n :width: 640\n :height: 581\n\nAPI Overview\n============\n\nRasterio gives access to properties of a geospatial raster file.\n\n.. code-block:: python\n\n with rasterio.open('tests/data/RGB.byte.tif') as src:\n print(src.width, src.height)\n print(src.crs)\n print(src.transform)\n print(src.count)\n print(src.indexes)\n\n # Printed:\n # (791, 718)\n # {u'units': u'm', u'no_defs': True, u'ellps': u'WGS84', u'proj': u'utm', u'zone': 18}\n # Affine(300.0379266750948, 0.0, 101985.0,\n # 0.0, -300.041782729805, 2826915.0)\n # 3\n # [1, 2, 3]\n\nA rasterio dataset also provides methods for getting read/write windows (like\nextended array slices) given georeferenced coordinates.\n\n.. code-block:: python\n\n with rasterio.open('tests/data/RGB.byte.tif') as src:\n window = src.window(*src.bounds)\n print(window)\n print(src.read(window=window).shape)\n\n # Printed:\n # Window(col_off=0.0, row_off=0.0, width=791.0000000000002, height=718.0)\n # (3, 718, 791)\n\nRasterio CLI\n============\n\nRasterio's command line interface, named \"rio\", is documented at `cli.rst\n<https://github.com/rasterio/rasterio/blob/master/docs/cli.rst>`__. Its ``rio\ninsp`` command opens the hood of any raster dataset so you can poke around\nusing Python.\n\n.. code-block:: pycon\n\n $ rio insp tests/data/RGB.byte.tif\n Rasterio 0.10 Interactive Inspector (Python 3.4.1)\n Type \"src.meta\", \"src.read(1)\", or \"help(src)\" for more information.\n >>> src.name\n 'tests/data/RGB.byte.tif'\n >>> src.closed\n False\n >>> src.shape\n (718, 791)\n >>> src.crs\n {'init': 'epsg:32618'}\n >>> b, g, r = src.read()\n >>> b\n masked_array(data =\n [[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ...,\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]],\n mask =\n [[ True True True ..., True True True]\n [ True True True ..., True True True]\n [ True True True ..., True True True]\n ...,\n [ True True True ..., True True True]\n [ True True True ..., True True True]\n [ True True True ..., True True True]],\n fill_value = 0)\n\n >>> np.nanmin(b), np.nanmax(b), np.nanmean(b)\n (0, 255, 29.94772668847656)\n\nRio Plugins\n-----------\n\nRio provides the ability to create subcommands using plugins. See\n`cli.rst <https://github.com/rasterio/rasterio/blob/master/docs/cli.rst#rio-plugins>`__\nfor more information on building plugins.\n\nSee the\n`plugin registry <https://github.com/rasterio/rasterio/wiki/Rio-plugin-registry>`__\nfor a list of available plugins.\n\n\nInstallation\n============\n\nSee `docs/installation.rst <docs/installation.rst>`__\n\nSupport\n=======\n\nThe primary forum for questions about installation and usage of Rasterio is\nhttps://rasterio.groups.io/g/main. The authors and other users will answer\nquestions when they have expertise to share and time to explain. Please take\nthe time to craft a clear question and be patient about responses.\n\nPlease do not bring these questions to Rasterio's issue tracker, which we want\nto reserve for bug reports and other actionable issues.\n\nDevelopment and Testing\n=======================\n\nSee `CONTRIBUTING.rst <CONTRIBUTING.rst>`__.\n\nDocumentation\n=============\n\nSee `docs/ <docs/>`__.\n\nLicense\n=======\n\nSee `LICENSE.txt <LICENSE.txt>`__.\n\nAuthors\n=======\n\nThe `rasterio` project was begun at Mapbox and was transferred to the `rasterio` Github organization in October 2021.\n\nSee `AUTHORS.txt <AUTHORS.txt>`__.\n\nChanges\n=======\n\nSee `CHANGES.txt <CHANGES.txt>`__.\n\nWho is Using Rasterio?\n======================\n\nSee `here <https://libraries.io/pypi/rasterio/usage>`__.\n",
"bugtrack_url": null,
"license": "BSD",
"summary": "Fast and direct raster I/O for use with Numpy and SciPy",
"version": "1.4.2",
"project_urls": {
"Homepage": "https://github.com/rasterio/rasterio"
},
"split_keywords": [
"raster",
"gdal"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f80c0cf754292ef021b8a7f1bd32fdb32daad6535e49d14e3ce16cfe82de4485",
"md5": "fa60f90c84d93c70f0695510dd7d1897",
"sha256": "8cf84f566c12ab1d3b42466038ef79edb3d37037a421293db93a30d046e13c43"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp310-cp310-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "fa60f90c84d93c70f0695510dd7d1897",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 21533542,
"upload_time": "2024-10-30T17:07:08",
"upload_time_iso_8601": "2024-10-30T17:07:08.198118Z",
"url": "https://files.pythonhosted.org/packages/f8/0c/0cf754292ef021b8a7f1bd32fdb32daad6535e49d14e3ce16cfe82de4485/rasterio-1.4.2-cp310-cp310-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c08862ac9a68ffd6906eac75374dddddb84e697bb1e88306fb21abca6af0a2a",
"md5": "5d796600608f52ac453be2baee07cd1a",
"sha256": "7fabae0d84ff5455f588d5283d1a007769e63a679ab095e739abefc780332517"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp310-cp310-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "5d796600608f52ac453be2baee07cd1a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 18764981,
"upload_time": "2024-10-30T17:07:12",
"upload_time_iso_8601": "2024-10-30T17:07:12.776280Z",
"url": "https://files.pythonhosted.org/packages/3c/08/862ac9a68ffd6906eac75374dddddb84e697bb1e88306fb21abca6af0a2a/rasterio-1.4.2-cp310-cp310-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cdad2d3a14e5a97ca827a38d4963b86071267a6cd09d45065cd753d7325699b6",
"md5": "6cfa0b17c07b851c17fe2ffa7ca7d0be",
"sha256": "90303c1ec8f9c89b1c3c4036c8595e84b4afa21e3ad6d87b4a46bd81f4bbbd3a"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6cfa0b17c07b851c17fe2ffa7ca7d0be",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 22210263,
"upload_time": "2024-10-30T17:07:16",
"upload_time_iso_8601": "2024-10-30T17:07:16.182805Z",
"url": "https://files.pythonhosted.org/packages/cd/ad/2d3a14e5a97ca827a38d4963b86071267a6cd09d45065cd753d7325699b6/rasterio-1.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c063a5de023ecb5b1f35f993dcec5727e581e8d124997fa5b7b8154a52bb21db",
"md5": "b65b1aab998b6e0a56950f7209b14187",
"sha256": "e38f2869f6379dc7f0d46af2e879f14ad194ccf0b634c121b630693fee23cdbe"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "b65b1aab998b6e0a56950f7209b14187",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 25437186,
"upload_time": "2024-10-30T17:07:19",
"upload_time_iso_8601": "2024-10-30T17:07:19.327094Z",
"url": "https://files.pythonhosted.org/packages/c0/63/a5de023ecb5b1f35f993dcec5727e581e8d124997fa5b7b8154a52bb21db/rasterio-1.4.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d1debdadd0b74704e09553753b23510fbd43fb7d9c2de468d5cf4ac223a4087",
"md5": "c11896abeb792d1f10c3f94699f7428c",
"sha256": "019e6fbfea250fea91987a38abc7a02c752b50beadb3178d82a5d47e8e265313"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp311-cp311-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "c11896abeb792d1f10c3f94699f7428c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 21535160,
"upload_time": "2024-10-30T17:07:22",
"upload_time_iso_8601": "2024-10-30T17:07:22.972056Z",
"url": "https://files.pythonhosted.org/packages/8d/1d/ebdadd0b74704e09553753b23510fbd43fb7d9c2de468d5cf4ac223a4087/rasterio-1.4.2-cp311-cp311-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09b9169a76e257e527d352da021da6602480a829eac03b0ab3045639c3f80fb6",
"md5": "8db28653357f69c1de50407c8cf0fe04",
"sha256": "a9830e0c9d09d2680079b8a31085cc2a2b885b1ed6c4d95d2a91e2813efc22aa"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp311-cp311-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "8db28653357f69c1de50407c8cf0fe04",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 18757255,
"upload_time": "2024-10-30T17:07:26",
"upload_time_iso_8601": "2024-10-30T17:07:26.391293Z",
"url": "https://files.pythonhosted.org/packages/09/b9/169a76e257e527d352da021da6602480a829eac03b0ab3045639c3f80fb6/rasterio-1.4.2-cp311-cp311-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c5825a6531d8b578493c66a672c0ea47c976c4e702979d4d18cb538789a30a3",
"md5": "561df9fe925a1770a8d18851b8f3499f",
"sha256": "ea3f38da794e7a4df409f2c57799a26a777a2560025ad401fe33a0b8efe90a5a"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "561df9fe925a1770a8d18851b8f3499f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 22199148,
"upload_time": "2024-10-30T17:07:29",
"upload_time_iso_8601": "2024-10-30T17:07:29.839102Z",
"url": "https://files.pythonhosted.org/packages/8c/58/25a6531d8b578493c66a672c0ea47c976c4e702979d4d18cb538789a30a3/rasterio-1.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d389bc2bd4b2df4527debd278011e917cc085007e6cf60c9ec44fea38cb8a7a",
"md5": "93f4bad479d5701e8e1f76f9fc345cab",
"sha256": "0c74d6a2e64fae6c2293bf520fa4048e12598379736953c34ca3dfb058cedfc5"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "93f4bad479d5701e8e1f76f9fc345cab",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 25446955,
"upload_time": "2024-10-30T17:07:33",
"upload_time_iso_8601": "2024-10-30T17:07:33.592065Z",
"url": "https://files.pythonhosted.org/packages/4d/38/9bc2bd4b2df4527debd278011e917cc085007e6cf60c9ec44fea38cb8a7a/rasterio-1.4.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5a1cd3b8592322d5e898acab6447819df3d9a5fe1bf9c966d4d8146d0b880c6",
"md5": "5e3b6819a0eebddd14d947464babce20",
"sha256": "84ce104a3017c04bfb809f268faaef4287458916f7af4f25a39b93f420fa8ef4"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp312-cp312-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "5e3b6819a0eebddd14d947464babce20",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 21507014,
"upload_time": "2024-10-30T17:07:37",
"upload_time_iso_8601": "2024-10-30T17:07:37.079972Z",
"url": "https://files.pythonhosted.org/packages/d5/a1/cd3b8592322d5e898acab6447819df3d9a5fe1bf9c966d4d8146d0b880c6/rasterio-1.4.2-cp312-cp312-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6caf494772e3ba2e9c70321f83ed631d12ff3d5f957a17abf183e039bb793053",
"md5": "a94a26c8794eb18c70c96661b68eb051",
"sha256": "856c740e621211a19f0efddc2f0a61cc3d37c89c50699ea6cb249da3930d601b"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp312-cp312-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "a94a26c8794eb18c70c96661b68eb051",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 18729674,
"upload_time": "2024-10-30T17:07:40",
"upload_time_iso_8601": "2024-10-30T17:07:40.695454Z",
"url": "https://files.pythonhosted.org/packages/6c/af/494772e3ba2e9c70321f83ed631d12ff3d5f957a17abf183e039bb793053/rasterio-1.4.2-cp312-cp312-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2bbb52089954facaf6ec9edbbcc837b9de3ea5cb34a413481507870c0ad86a8a",
"md5": "67507f46301001818c5390197d36b664",
"sha256": "43a21306c8dc265f50d3cb8a13a58d50e055477ace1003bb8a507658a4124c37"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "67507f46301001818c5390197d36b664",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 22246339,
"upload_time": "2024-10-30T17:07:44",
"upload_time_iso_8601": "2024-10-30T17:07:44.097131Z",
"url": "https://files.pythonhosted.org/packages/2b/bb/52089954facaf6ec9edbbcc837b9de3ea5cb34a413481507870c0ad86a8a/rasterio-1.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97ae388db0a3ad01b273d183fb9204b33d8a2d45c6fbd385f6ff11bc713f5ca4",
"md5": "1db6a5a3437758e176e73193c9dc00ec",
"sha256": "83bf03b39dc7e1d932907d1b05d99a53b7fc184c215a27b938f4697db7295f53"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "1db6a5a3437758e176e73193c9dc00ec",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 25424737,
"upload_time": "2024-10-30T17:07:48",
"upload_time_iso_8601": "2024-10-30T17:07:48.157906Z",
"url": "https://files.pythonhosted.org/packages/97/ae/388db0a3ad01b273d183fb9204b33d8a2d45c6fbd385f6ff11bc713f5ca4/rasterio-1.4.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4cb1f12bc309403f2b4f6c0ebb5fdc93f2506358b85864f7b3a1bc66ca8cecf5",
"md5": "ee39625af1267341dfb0586dc988cd2b",
"sha256": "e405e92ab03f5606a959d4a7d9ae1589e2212f9720c2db55853bfa8c91f6d736"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp313-cp313-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "ee39625af1267341dfb0586dc988cd2b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 21525903,
"upload_time": "2024-10-30T17:07:51",
"upload_time_iso_8601": "2024-10-30T17:07:51.339344Z",
"url": "https://files.pythonhosted.org/packages/4c/b1/f12bc309403f2b4f6c0ebb5fdc93f2506358b85864f7b3a1bc66ca8cecf5/rasterio-1.4.2-cp313-cp313-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5aa81a4d5cbeb17310595928801dd2d1500f9d094c97893afc0ed11f9639a008",
"md5": "cb44d5faec23332581f731c311d6eba9",
"sha256": "7dbf3d084e1f72f322d378eb2b9e155fbe0ead97f0a1b0065a389e9435a5a3db"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp313-cp313-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "cb44d5faec23332581f731c311d6eba9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18724884,
"upload_time": "2024-10-30T17:07:54",
"upload_time_iso_8601": "2024-10-30T17:07:54.649412Z",
"url": "https://files.pythonhosted.org/packages/5a/a8/1a4d5cbeb17310595928801dd2d1500f9d094c97893afc0ed11f9639a008/rasterio-1.4.2-cp313-cp313-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "904c6990768de10ae2be50dc70365dfed7c3181501bf0173e6aeed867b061c06",
"md5": "1a411bc13730fad282c86d8b8caca643",
"sha256": "c6f2952e1b4ad01f0dcf97f477050d8122ca781abbb3ef8b5a5751835a222317"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1a411bc13730fad282c86d8b8caca643",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 22231293,
"upload_time": "2024-10-30T17:07:59",
"upload_time_iso_8601": "2024-10-30T17:07:59.040486Z",
"url": "https://files.pythonhosted.org/packages/90/4c/6990768de10ae2be50dc70365dfed7c3181501bf0173e6aeed867b061c06/rasterio-1.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "297bddbd284fa466221f38c339b218a66da3512ad7fa736318c727577c7d4371",
"md5": "8f3a39578a494fc33f84879b6dea3dcb",
"sha256": "25ec2a35548c1c45ea1dd5341e777e5aeea8f79310bbae6aaed4d5f6a4c53f26"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "8f3a39578a494fc33f84879b6dea3dcb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 25419426,
"upload_time": "2024-10-30T17:08:02",
"upload_time_iso_8601": "2024-10-30T17:08:02.523416Z",
"url": "https://files.pythonhosted.org/packages/29/7b/ddbd284fa466221f38c339b218a66da3512ad7fa736318c727577c7d4371/rasterio-1.4.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f5e4fad2e9561028f4e719dba8f876392183d17e93b9abfb73f6b95c0f311fe",
"md5": "a22d2b41db26e17455237c0e3da49d51",
"sha256": "56811e3fee89a74ccd18f11849f9dbf0c98eb652671b16c90c29bd06b122c4c6"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp39-cp39-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "a22d2b41db26e17455237c0e3da49d51",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 21536167,
"upload_time": "2024-10-30T17:08:07",
"upload_time_iso_8601": "2024-10-30T17:08:07.289535Z",
"url": "https://files.pythonhosted.org/packages/1f/5e/4fad2e9561028f4e719dba8f876392183d17e93b9abfb73f6b95c0f311fe/rasterio-1.4.2-cp39-cp39-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bac0e00d120ede0ed46a59b3f98ec58ef116bbeebf6c4ed3e71efc4b2d30639b",
"md5": "ed949d839e816577501223b1dabefccf",
"sha256": "11fdfc2a8b610eb2f6e3d47c396455d4d65c290d69b53e0a986cd58feac3af7b"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp39-cp39-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "ed949d839e816577501223b1dabefccf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 18766195,
"upload_time": "2024-10-30T17:08:10",
"upload_time_iso_8601": "2024-10-30T17:08:10.433923Z",
"url": "https://files.pythonhosted.org/packages/ba/c0/e00d120ede0ed46a59b3f98ec58ef116bbeebf6c4ed3e71efc4b2d30639b/rasterio-1.4.2-cp39-cp39-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9e94181a031d919e965c09a66437a9c0cf7bad627f1aa59e93abbf03b20c652",
"md5": "7247a8aef5808375fe0d0274436cb967",
"sha256": "beec16eb4d951f111235d46f66319922bbc5744e7b8e50303725b46819b458b9"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7247a8aef5808375fe0d0274436cb967",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 22211824,
"upload_time": "2024-10-30T17:08:14",
"upload_time_iso_8601": "2024-10-30T17:08:14.108504Z",
"url": "https://files.pythonhosted.org/packages/d9/e9/4181a031d919e965c09a66437a9c0cf7bad627f1aa59e93abbf03b20c652/rasterio-1.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea8144a46c31329e70ddd240dd17f89aeacb1a77a14a30f06862b66c9605c658",
"md5": "262b023f9446dd8e3f73df8171606c51",
"sha256": "5b27965b50466a1d297ea41b4b8fbe19178b05ab3dd78f35fb64ccdc0e502819"
},
"downloads": -1,
"filename": "rasterio-1.4.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "262b023f9446dd8e3f73df8171606c51",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 25440815,
"upload_time": "2024-10-30T17:08:17",
"upload_time_iso_8601": "2024-10-30T17:08:17.700850Z",
"url": "https://files.pythonhosted.org/packages/ea/81/44a46c31329e70ddd240dd17f89aeacb1a77a14a30f06862b66c9605c658/rasterio-1.4.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e48fcd02399c7c4041c850b59c7cd80c309f7b87c86649e2bfb515d44ad061c",
"md5": "3e729b38dc0b8c30335cfc7aad89bf00",
"sha256": "1be35ccb4d998a4c48fa51bbee9e37927ecd9b9e954a2b2581b8f3e9bb165332"
},
"downloads": -1,
"filename": "rasterio-1.4.2.tar.gz",
"has_sig": false,
"md5_digest": "3e729b38dc0b8c30335cfc7aad89bf00",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 441402,
"upload_time": "2024-10-30T17:08:20",
"upload_time_iso_8601": "2024-10-30T17:08:20.370569Z",
"url": "https://files.pythonhosted.org/packages/2e/48/fcd02399c7c4041c850b59c7cd80c309f7b87c86649e2bfb515d44ad061c/rasterio-1.4.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-30 17:08:20",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "rasterio",
"github_project": "rasterio",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"requirements": [
{
"name": "affine",
"specs": [
[
"~=",
"2.3.0"
]
]
},
{
"name": "attrs",
"specs": [
[
">=",
"19.2.0"
]
]
},
{
"name": "boto3",
"specs": [
[
">=",
"1.3.1"
]
]
},
{
"name": "click",
"specs": [
[
"~=",
"8.0"
]
]
},
{
"name": "click-plugins",
"specs": []
},
{
"name": "cligj",
"specs": [
[
">=",
"0.5"
]
]
},
{
"name": "matplotlib",
"specs": []
},
{
"name": "numpy",
"specs": [
[
">=",
"1.24"
]
]
},
{
"name": "setuptools",
"specs": [
[
">=",
"20.0"
]
]
},
{
"name": "pyparsing",
"specs": [
[
"~=",
"3.1"
]
]
}
],
"lcname": "rasterio"
}