Metadata-Version: 2.1
Name: eobox
Version: 0.3.1
Summary: A toolbox for processing earth observation data with Python.
Home-page: https://github.com/benmack/eo-box
Author: Benjamin Mack
Author-email: ben8mack@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.5,<3.7
Description-Content-Type: text/markdown
Requires-Dist: gdal
Requires-Dist: geopandas
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: rasterio
Requires-Dist: tqdm

[![Build Status](https://travis-ci.org/benmack/eo-box.svg?branch=master)](https://travis-ci.org/benmack/eo-box)
[![Docs Status](https://readthedocs.org/projects/eo-box/badge/?version=latest)](https://eo-box.readthedocs.io/en/latest/?badge=latest)

# eo-box


**eobox** is a Python package with a small collection of tools for working with Remote Sensing / Earth Observation data. 


## Package Overview

So far, the following subpackages are available:

* **eobox.sampledata** contains small sample data that can be used for playing around and testing.

* **eobox.raster** contains raster processing tools for

    * extracting raster values at given (by vector data) locations,

    * window- / chunk-wise processing of multiple single layer raster files as a stack.

* **eobox.vector** contains vector processing tools for

    * clean convertion of polygons to lines and 

    * distance-to-polygon border calculation.


## Installation

The package requires Python 3. It can be installed with the following command:

```bash
pip3 install eobox
```

## Documentation

The package documentation can be found at [readthedocs](https://eo-box.readthedocs.io/).


