Metadata-Version: 2.4
Name: ecoenv
Version: 0.1.1
Summary: A Python library for ecological data collection and environmental analysis
Author: Ane Simões
Author-email: anes.2017@alunos.utfpr.edu.br
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ee
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: python-dotenv
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary


# USAGE.md

## Overview

**ecoenv** is a library designed to facilitate data management and processing for scientific and research applications.

## Getting Started

### Installation

```bash
pip install ecoenv
```

### Basic Usage

```python
import ecoenv


ecoenv.autenticateEE('project_name')
ecoenv.get_environment_data(gdf, ndvi=True, ndwi=True, temperature=True, precipitation=True)
ecoenv.clear_cache(sentinel: bool = True, worldclim: bool = True)
```
## Functions
- `autenticateEE`: Authenticates the user with the Earth Engine API using the specified project name.
- `get_environment_data`: Retrieves environmental data based on the provided geospatial data frame (gdf) and specified parameters (ndvi, ndwi, temperature, precipitation).
- `clear_cache`: Clears the cache of retrieved data to free up memory.

