Metadata-Version: 2.4
Name: r055y
Version: 0.0.5
Summary: Open source spatial analysis library with AI-ready GIS tools for hallucination-free spatial operations.
License: MIT
License-File: LICENSE
Requires-Python: >=3.8
Requires-Dist: geopandas
Description-Content-Type: text/markdown

# r055y

An open source spatial analysis library built for AI-driven GIS workflows. Designed to give AI systems like Claude reliable, hallucination-free tools for spatial operations.

## Install

```bash
pip install r055y
```

## Usage

```python
import r055y as r

result = r.intersect(
    inputs=["layer1.shp", "layer2.shp"],
    output="result.gpkg",       # optional — omit to get a GeoDataFrame back
    join_attributes="ALL",      # ALL | NO_FID | ONLY_FID
    output_type="POLYGON"       # POLYGON | LINE | POINT (optional)
)
```

---

## Changelog

### v0.0.3 — 2026-06-24
- Updated package description

### v0.0.2 — 2026-06-24
- Added `intersect()` for geometric intersection of vector layers
- Supports multiple input layers (GeoDataFrames or file paths)
- Auto-reprojects all inputs to base CRS
- `join_attributes` options: ALL, NO_FID, ONLY_FID
- `output_type` filtering: POLYGON, LINE, POINT
- Optional file output (shapefile, GeoPackage, etc.)

### v0.0.1 — 2026-06-24
- Initial release
