Metadata-Version: 2.1
Name: geotiff
Version: 0.0.3
Summary: A noGDAL tool for reading and writing geotiff files
Home-page: https://github.com/Open-Source-Agriculture/geotiff
Author: Kipling Crossing
Author-email: kip.crossing@gmail.com
License: UNKNOWN
Description: # geotiff
        
        A noGDAL tool for reading and writing geotiff files
        
        ### What is noGDAL?
        
        **noGDAL** is a philosophy for developing geospatial programs in python without using GDAL.
        
        ### Usage
        
        Read a sections of a large tiff using a bounding box
        
        ```python
        from geotiff.geotiff import read_box
        
        bounding_box = [(138.387681, -32.310286), (138.414326, -32.344569)]
        array = read_box(tiff_file, bounding_box)
        ```
        
        This will detect and convert coordinates into WGS 84
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
