Metadata-Version: 2.3
Name: async-geotiff
Version: 0.1.0b1
Summary: Async GeoTIFF reader for Python
Author: Kyle Barron
Author-email: Kyle Barron <kyle@developmentseed.org>
Requires-Dist: affine>=2.4.0
Requires-Dist: async-tiff>=0.4.0
Requires-Dist: numpy>2
Requires-Dist: pyproj>=3.7.2
Requires-Dist: morecantile>=7.0,<8.0 ; extra == 'morecantile'
Requires-Python: >=3.11
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
