https://github.com/rodekruis/river-flood-workflow
A Python tool for monitoring riverine forecast using GloFAS
https://github.com/rodekruis/river-flood-workflow
aa
Last synced: 22 days ago
JSON representation
A Python tool for monitoring riverine forecast using GloFAS
- Host: GitHub
- URL: https://github.com/rodekruis/river-flood-workflow
- Owner: rodekruis
- Created: 2026-04-28T11:22:34.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-01T08:57:51.000Z (29 days ago)
- Last Synced: 2026-06-01T09:09:25.592Z (29 days ago)
- Topics: aa
- Language: Jupyter Notebook
- Homepage:
- Size: 419 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# River flood workflow
A Python tool for monitoring riverine forecast developed by NLRC to support Start Network Philippines.
## Setup
### 1. Install `uv`
`uv` is a Python tool for managing virtual environments and dependencies. It will create a `.venv` with Python 3.13 and all required packages for this project.
**Windows (PowerShell):**
```powershell
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
```
**macOS / Linux:**
```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```
Or via pip: `pip install uv`
### 2. Install dependencies
```bash
uv sync
```
This creates a `.venv` with Python 3.13 and all required packages.
### 3. Run the notebook
```bash
uv run jupyter lab
```