Metadata-Version: 2.4
Name: async-geotiff
Version: 0.1.0b3
Summary: Async GeoTIFF reader for Python
Keywords: geotiff,tiff,async,cog,raster,gis
Author: Kyle Barron
Author-email: Kyle Barron <kyle@developmentseed.org>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Typing :: Typed
Requires-Dist: affine>=2.4.0
Requires-Dist: async-tiff>=0.4.0
Requires-Dist: numpy>=2.0
Requires-Dist: pyproj>=3.3.0
Requires-Dist: morecantile>=7.0,<8.0 ; extra == 'morecantile'
Requires-Python: >=3.11
Project-URL: Changelog, https://github.com/developmentseed/async-geotiff/blob/main/CHANGELOG.md
Project-URL: Documentation, https://developmentseed.github.io/async-geotiff/
Project-URL: Homepage, https://github.com/developmentseed/async-geotiff
Project-URL: Issues, https://github.com/developmentseed/async-geotiff/issues
Project-URL: Repository, https://github.com/developmentseed/async-geotiff
Provides-Extra: morecantile
Description-Content-Type: text/markdown

# async-geotiff

Async GeoTIFF and [Cloud-Optimized GeoTIFF][cogeo] (COG) reader for Python, wrapping [`async-tiff`].

[`async-tiff`]: https://github.com/developmentseed/async-tiff
[cogeo]: https://cogeo.org/

## Project Goals:

- Support only for GeoTIFF and Cloud-Optimized GeoTIFF (COG) formats
- Support for reading only, no writing support
- Full type hinting.
- API similar to rasterio where possible.
    - We won't support the full rasterio API, but we'll try to when it's possible to implement rasterio APIs with straightforward maintenance requirements.
    - For methods where we do intentionally try to match with rasterio, the tests should match against rasterio.
- Initially, we'll try to support a core set of GeoTIFF formats. Obscure GeoTIFF files may not be supported.

## References

- aiocogeo: https://github.com/geospatial-jeff/aiocogeo
