Metadata-Version: 2.1
Name: geetools
Version: 0.1.4
Summary: Set of tools to use in Google Earth Engine Python API
Home-page: UNKNOWN
Author: Rodrigo E. Principe
Author-email: fitoprincipe82@gmail.com
License: MIT
Keywords: google earth engine raster image processing gis satelite
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Requires-Dist: requests
Requires-Dist: pillow
Requires-Dist: ipyleaflet
Requires-Dist: folium
Requires-Dist: pyshp
Requires-Dist: pygal
Requires-Dist: pandas
Requires-Dist: ipywidgets
Requires-Dist: traitlets
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: testing

Google Earth Engine tools
#########################

These are a set of tools for Google Earth Engine that may help
to solve or automatize some processes.

There are some JavaScript functions that you can use in the Code Editor
(https://code.earthengine.google.com/) placed in a folder called ``js``

The rest of the repository is oriented to the GEE Python API. You can install
these tools as a normal python package.

Installation
============

.. code:: bash

    pip install geetools

Upgrade
=======

.. code:: bash

    pip install --upgrade geetools

Basic Usage
===========

.. code:: python

    from geetools import batch

    col = ee.ImageCollection("your_ID")
    tasklist = batch.ImageCollection.toDrive(col)

Full documentation
==================

http://geetools.readthedocs.io

Some Examples
=============

Examples are Jupyter Notebooks in a folder called `notebooks`

Any contribution is welcome.
Any bug or question please use the `github issue tracker`__.

.. _issues: https://github.com/gee-community/gee_tools/issues

__ issues_


