Metadata-Version: 2.1
Name: pybob
Version: 0.26.2
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
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
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Requires-Dist: fiona
Requires-Dist: shapely
Requires-Dist: opencv-python
Requires-Dist: pandas
Requires-Dist: geopandas
Requires-Dist: scikit-image (>=0.18)
Requires-Dist: gdal
Requires-Dist: h5py
Requires-Dist: pyproj
Requires-Dist: numba
Requires-Dist: descartes
Requires-Dist: sphinx-argparse

# 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)

```


