Metadata-Version: 2.4
Name: gee-polygons
Version: 0.0.4
Summary: A polygon-first Google Earth Engine library for extracting features, tracking changes over time, and preparing data for modeling or analysis.
Home-page: https://github.com/aliceheiman/gee-polygons
Author: aliceheiman
Author-email: aliceheiman <aheiman@stanford.edu>
License: Apache-2.0
Project-URL: Repository, https://github.com/aliceheiman/gee-polygons
Project-URL: Documentation, https://aliceheiman.github.io/gee-polygons
Keywords: nbdev,jupyter,notebook,python
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: geemap
Requires-Dist: pyproj
Requires-Dist: fastcore
Requires-Dist: pandas
Requires-Dist: geopandas
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# gee-polygons


<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Usage

### Installation

Install latest from the GitHub
[repository](https://github.com/aliceheiman/gee-polygons):

``` sh
$ pip install git+https://github.com/aliceheiman/gee-polygons.git
```

or from [conda](https://anaconda.org/aliceheiman/gee-polygons)

``` sh
$ conda install -c aliceheiman gee_polygons
```

or from [pypi](https://pypi.org/project/gee-polygons/)

``` sh
$ pip install gee_polygons
```

### Documentation

Documentation can be found hosted on this GitHub
[repository](https://github.com/aliceheiman/gee-polygons)’s
[pages](https://aliceheiman.github.io/gee-polygons/). Additionally you
can find package manager specific guidelines on
[conda](https://anaconda.org/aliceheiman/gee-polygons) and
[pypi](https://pypi.org/project/gee-polygons/) respectively.

## How to use

### Initialize Earth Engine

``` python
import ee
ee.Authenticate()
ee.Initialize(project="your-project-id")
```

### Load sites from GeoJSON

``` python
from gee_polygons import load_sites, Site

# Load all sites from a GeoJSON file
sites = load_sites('path/to/sites.geojson')
print(f"Loaded {len(sites)} sites")

# Explore a single site
site = sites[0]
print(f"Site ID: {site.site_id}")
print(f"Area: {site.area_ha:.2f} ha")
print(f"Start year: {site.start_year}")
```

### Load and filter with GeoDataFrame

For large datasets, load into a GeoDataFrame first for fast filtering:

``` python
import geopandas as gpd
from gee_polygons import sites_from_geodataframe

# Load into GeoDataFrame
gdf = gpd.read_file('path/to/sites.geojson')

# Filter and sort using pandas (fast, in-memory)
filtered = gdf[gdf['area_ha'] > 10].sort_values('start_year')

# Convert only filtered sites to Site objects
sites = sites_from_geodataframe(filtered)
```

### Example use of dataset

``` python
from gee_polygons import SiteCollection
from gee_polygons.datasets.mapbiomas import MAPBIOMAS_LULC

# Load sites as a collection
collection = SiteCollection.from_geojson('path/to/sites.geojson')

# Extract categorical land cover data
result = collection.extract_categorical(
    layer=MAPBIOMAS_LULC,
    years=range(2010, 2024)
)

# Access results as a DataFrame
df = result.data
print(f"Extracted {len(df)} records")
```

## Roadmap

**Planned:** - Verificiation of large-scale export jobs - Integration
with ML workflows

## Changelog

### v0.0.4

**New Features:** - Added `Site.from_geodataframe_row()` to create a
Site from a GeoDataFrame row - Added `sites_from_geodataframe()` to
create Sites from a filtered/sorted GeoDataFrame - Enables workflow:
load GeoJSON -\> GeoDataFrame -\> filter/sort -\> Sites

**Improvements:** - NaN values in GeoDataFrame properties are now
converted to `None` for Earth Engine compatibility

### v0.0.3

**New Features:** - `SiteCollection` for batch operations with
chunking - Export to Google Drive and Cloud Storage

### v0.0.2

- Various bug fixes

### v0.0.1

**Initial Release:** - `Site` class for polygon-first GEE analysis -
`load_sites()` to load sites from GeoJSON with automatic CRS detection -
Pre-configured layers: MapBiomas, Dynamic World, Sentinel-2 -
Categorical and continuous data extraction
