Metadata-Version: 2.1
Name: pybob
Version: 0.26
Summary: Collection of geospatial and other tools I find useful.
Home-page: https://github.com/iamdonovan/pybob
Author: Bob McNabb
Author-email: robertmcnabb@gmail.com
Maintainer: iamdonovan
License: MIT
Description: # pybob
        A collection of geospatial and other tools that I find useful.
        
        ## Installing Pybob
        
        ```sh
        # Install the required libraries
        conda install h5py numba descartes gdal
        pip install llc
        
        # Clone the repository (using git ssh)
        git clone git@github.com:iamdonovan/pybob.git
        
        # install the development verion in editing mode
        pip install -e [path2folder/pybob]
        ```
        
        ## Basic usage
        
        ```python
        from pybob import GeoImg
        
        # Open a geotiff:
        test = GeoImg.GeoImg('myraster.tif')
        
        # plot raster to screen
        test.diplay()
        
        # crop raster to extent
        test.crop_to_extent([xmin, xmax, ymin, ymax], band)
        
        ```
        
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.7
Description-Content-Type: text/markdown
