File size: 7,396 Bytes
9bfbf46 ab07cb1 9bfbf46 ab07cb1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | ---
title: Eurus
emoji: π
colorFrom: purple
colorTo: blue
sdk: docker
pinned: false
---
# Eurus - ERA5 Climate Analysis Agent
<div align="center">
<img src="assets/eurus_logo.jpeg?v=2" alt="Eurus Logo" width="300"/>
<h3><b>Next-Generation Oceanographic & Climate Data Intelligence</b></h3>
[](https://opensource.org/licenses/MIT)
[](https://www.python.org/downloads/)
[](https://modelcontextprotocol.io)
[](https://earthmover.io)
</div>
---
**Eurus** is a high-performance, intelligent climate analysis agent designed for oceanographers, climate scientists, and data engineers. Built on the cutting-edge **Icechunk** transactional storage engine, Eurus bridges Earthmover's cloud-optimized ERA5 archives with advanced LLM reasoning, enabling seamless, natural language-driven exploration of planetary-scale climate data.
### βοΈ Powered By
This project is made possible by the incredible open-source work from the **[Earthmover](https://earthmover.io)** team:
- **[Icechunk](https://github.com/earth-mover/icechunk)**: The transactional storage engine for Zarr that provides the backbone for our high-performance data access.
- **Arraylake**: The cloud-native data lake that hosts the global ERA5 reanalysis archives used by this agent.
### π Core Pillars
- **Intelligence-First Analysis**: Leveraging LLMs to translate complex natural language queries into precise data retrieval and scientific analysis.
- **Multi-Interface Access**: Interact via a powerful CLI, a rich Web Interface, or integrate directly into IDEs via the Model Context Protocol (MCP).
- **Cloud-Native Performance**: Direct integration with Earthmover's Arraylake and Icechunk/Zarr storage for lightning-fast, subsetted data access.
- **Python REPL**: Built-in interactive Python environment with pandas, xarray, matplotlib for custom analysis.
- **Maritime Routing**: Calculate optimal shipping routes with weather risk assessment.
- **Persistent Context**: Memory system that tracks cached datasets across sessions.
---
## Features
- **Cloud-Optimized Data Retrieval**: Downloads ERA5 reanalysis data directly from Earthmover's Arraylake.
- **Python REPL**: Interactive Python environment with pre-loaded scientific libraries (pandas, numpy, xarray, matplotlib).
- **Maritime Routing**: Calculate optimal shipping routes considering land masks (requires scgraph).
- **Analysis Guides**: Built-in methodology guides for climate analysis and visualization.
- **Automatic Visualization**: Matplotlib plots automatically saved to `./data/plots/`.
- **Intelligent Caching**: Re-uses previously downloaded data to save bandwidth.
- **MCP Server**: Acts as a brain for Claude and other AI assistants.
## Installation
### Prerequisites
- Python 3.10 or higher
- An Earthmover Arraylake API Key
- An OpenAI API Key
### Setup
1. **Clone the repository:**
```bash
git clone https://github.com/yourusername/era_5_agent.git
cd era_5_agent
```
2. **Create and activate a virtual environment:**
```bash
python -m venv .venv
source .venv/bin/activate # or `.venv\Scripts\activate` on Windows
```
3. **Install dependencies:**
```bash
pip install -r requirements.txt
```
4. **Configuration:**
Create a `.env` file in the root directory with your API keys:
```env
OPENAI_API_KEY=your_openai_api_key
ARRAYLAKE_API_KEY=your_arraylake_api_key
# Optional: Custom Host/Port for Web UI
# WEB_HOST=127.0.0.1
# WEB_PORT=8000
```
---
## Usage
Eurus provides three ways to interact with the agent.
### 1. Interactive CLI Agent
The classic terminal experience with rich text output and direct interaction.
```bash
python main.py
```
**Commands:**
- `/help` - Show help message
- `/clear` - Clear conversation history
- `/cache` - List cached datasets
- `/memory` - Show memory summary
- `/cleardata` - Clear all downloaded datasets
- `/quit` or `q` - Exit
### 2. Web Interface
A modern web-based chat interface with rendered plots and easier navigation.
```bash
python web/app.py
# or
eurus-web
```
Access the interface at `http://127.0.0.1:8000`.
### 3. MCP Server (for Claude / IDEs)
Integrate Eurus's capabilities directly into Claude Desktop or compatible IDEs using the Model Context Protocol.
**Configuration for Claude Desktop:**
Add the following to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"eurus": {
"command": "python",
"args": ["-m", "eurus.server"],
"env": {
"ARRAYLAKE_API_KEY": "your_key_here",
"PYTHONPATH": "/absolute/path/to/era_5_agent/src"
}
}
}
}
```
Or run directly for testing:
```bash
python -m eurus.server
```
---
## Example Queries
Eurus can answer questions like:
* **Data Retrieval:** "Show me the sea surface temperature off California for 2023."
* **Visualization:** "Plot a time series of temperature anomalies in the North Atlantic."
* **Comparison:** "Compare SST between El NiΓ±o region and the California coast."
* **Routing:** "Calculate a ship route from Rotterdam to Singapore with weather risk."
* **Custom Analysis:** "Use Python to calculate the monthly mean SST and plot it."
## Available Data
### Variables
| Variable | Description | Units |
|----------|-------------|-------|
| `sst` | Sea Surface Temperature | K |
| `t2` | 2m Air Temperature | K |
| `u10` | 10m U-Wind Component | m/s |
| `v10` | 10m V-Wind Component | m/s |
| `mslp` | Mean Sea Level Pressure | Pa |
| `sp` | Surface Pressure | Pa |
| `tcc` | Total Cloud Cover | 0-1 |
| `tp` | Total Precipitation | m |
### Predefined Regions
Eurus knows many regions by name, including:
- `north_atlantic`, `south_atlantic`
- `north_pacific`, `south_pacific`
- `california_coast`, `gulf_of_mexico`, `caribbean`
- `mediterranean`, `europe`, `asia_east`
- `arctic`, `antarctic`
- `nino34`, `nino3`, `nino4`
---
## Project Structure
```
era_5_agent/
βββ main.py # CLI Entry Point
βββ pyproject.toml # Project configuration
βββ requirements.txt # Python dependencies
βββ src/
β βββ eurus/
β βββ config.py # Configuration & Constants
β βββ memory.py # Persistent Memory System
β βββ server.py # MCP Server Entry Point
β βββ tools/ # Agent Tools
β βββ era5.py # Data Retrieval
β βββ routing.py # Maritime Routing
β βββ analysis_guide.py
βββ web/ # Web Interface
β βββ app.py # FastAPI Application
β βββ routes/ # API & Page Routes
β βββ templates/ # HTML Templates
βββ data/ # Data Storage (Local)
β βββ plots/ # Generated Visualizations
β βββ *.zarr/ # Cached ERA5 Datasets
βββ .memory/ # Agent Conversation History
```
## License
MIT License
---
<div align="center">
<p>Special thanks to the <b>Icechunk</b> and <b>Earthmover</b> teams for their pioneering work in cloud-native scientific data storage.</p>
</div> |