Metadata-Version: 2.4
Name: geegeogdemo
Version: 0.0.1
Summary: A simple Google Earth Engine helper package
Home-page: https://github.com/spatialgeography/pydemo
Author: Spatial Geography
Author-email: geographyspatial@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: earthengine-api>=0.1.200
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# GEE Toolkit Demo

This is a starter template for a Google Earth Engine (GEE) Python package.

## Installation

```bash
pip install gee-toolkit-demo
```

## Usage

```python
import gee_toolkit
import ee

# Initialize GEE
gee_toolkit.init_gee()

# Example: Get an image and compute NDVI
image = ee.Image('LANDSAT/LC08/C01/T1_TOA/LC08_044034_20140318')
ndvi_image = gee_toolkit.calculate_ndvi(image, red='B4', nir='B5')

print(ndvi_image.bandNames().getInfo())
```

## Publishing to PyPI

1. Install build tools:
   ```bash
   pip install --upgrade build twine
   ```

2. Build the package:
   ```bash
   python -m build
   ```

3. Upload to PyPI (Test):
   ```bash
   python -m twine upload --repository testpypi dist/*
   ```

4. Upload to PyPI (Production):
   ```bash
   python -m twine upload dist/*
   ```
