惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
博客园 - 【当耐特】
量子位
有赞技术团队
有赞技术团队
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
C
Check Point Blog
B
Blog RSS Feed
M
MIT News - Artificial intelligence
H
Help Net Security
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
腾讯CDC

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - rishavsunny12/harvestGuard: Lets see how claude ...
rishavsunny1 · 2026-05-27 · via Hacker News - Newest: "AI"

AI-Powered Food Insecurity Early Warning System

HarvestGuard is an open-source platform that fuses real satellite vegetation data, rainfall anomalies, and WFP food security indicators to generate AI-powered 30-60 day early warnings of crop failure and food insecurity — accessible to NGOs, governments, and humanitarian responders worldwide.

The Problem

828 million people face food insecurity. Smallholder farmers (who produce 70% of the world's food) have zero access to advance crop failure warnings. WFP's HungerMap shows current status; FEWS NET publishes monthly expert reports. No open, accessible platform provides real-time predictive intelligence at country level.

HarvestGuard fills this gap.

How It Works

NASA MODIS NDVI  ──┐
CHIRPS Rainfall  ──┤──► Risk Engine ──► Claude AI ──► Risk Assessment + Alerts
WFP HungerMap    ──┘                              ──► Conversational Analysis
Open-Meteo       ──┘
  1. Real satellite data — NASA MODIS vegetation indices updated every 16 days
  2. Rainfall anomalies — CHIRPS precipitation vs 1981-2010 historical baseline
  3. Ground truth — WFP HungerMap IPC phases and affected population counts
  4. AI analysis — Claude generates plain-language risk assessments from real data
  5. Early warnings — Alerts fire when composite risk scores deteriorate significantly

Data Sources (100% Real, No Synthetic Data)

Source Data Update Frequency
NASA MODIS MOD13A2 NDVI/EVI vegetation indices 16 days
CHIRPS Precipitation anomalies (1981-present) Monthly
WFP HungerMap IPC phases, affected populations 6 hours
Open-Meteo Historical & forecast weather Daily

Features

  • Interactive World Map — 60+ countries color-coded by IPC risk phase
  • Real-time NDVI & Rainfall — Satellite vegetation health and precipitation anomaly trends
  • AI Risk Assessments — Claude-powered streaming analysis with real data context
  • Early Warning Alerts — Automatic detection of deteriorating food security
  • Trend Charts — 90-day NDVI + rainfall history per country
  • AI Chat — Ask "What's happening in Ethiopia?" and get data-grounded answers

Quick Start

Prerequisites

1. Clone and configure

git clone https://github.com/rishavsunny12/claude-code-tp
cd claude-code-tp
cp .env.example .env
# Edit .env — set ANTHROPIC_API_KEY

2. Launch

docker compose up --build

3. Seed real data

# Trigger the first data refresh (fetches WFP + weather data)
curl -X POST http://localhost:8000/api/v1/admin/refresh

4. Open the app

Navigate to http://localhost:3000

Click any country on the map to see:

  • Current IPC phase and affected population
  • NDVI and rainfall anomalies vs historical baseline
  • 90-day trend chart
  • Live-streaming Claude AI risk assessment

API Reference

Endpoint Description
GET /api/v1/regions All monitored countries with current risk scores
GET /api/v1/regions/{iso} Full country detail with 90-day history
GET /api/v1/forecast/{iso} Stream AI risk assessment (SSE)
GET /api/v1/alerts Active food security alerts
POST /api/v1/chat Conversational AI query (SSE)
GET /health Health check

Architecture

harvestguard/
├── backend/          Python FastAPI + SQLAlchemy + APScheduler
│   └── app/
│       ├── services/data/    NASA NDVI, CHIRPS, WFP, Open-Meteo integrations
│       ├── services/analysis/ Risk scoring + alert engine
│       ├── services/ai/       Claude API streaming
│       └── api/v1/           REST endpoints
├── frontend/         React + TypeScript + MapLibre GL + Tailwind
│   └── src/
│       ├── components/map/    Interactive choropleth world map
│       ├── components/sidebar/ Country detail panel
│       └── components/chat/   AI conversation interface
└── docker-compose.yml

Optional: NASA Earthdata (Enhanced NDVI)

For higher-accuracy NDVI from actual MODIS raster data:

  1. Register free at urs.earthaccess.nasa.gov
  2. Add EARTHDATA_USERNAME and EARTHDATA_PASSWORD to .env

Without credentials, NDVI is estimated from Open-Meteo weather correlates (still useful as a proxy).

Application live screenshots

Screenshot 2026-05-26 131745 Screenshot 2026-05-26 131856 Screenshot 2026-05-26 131935

Contributing

This project is designed to serve humanitarian organizations, governments, and researchers. Contributions welcome — especially:

  • Additional data source integrations (ACLED conflict data, FEWS NET)
  • Sub-national resolution (admin level 1/2)
  • SMS/WhatsApp alert delivery for rural communities
  • Multi-language support

License

MIT — free for humanitarian and research use.

Data Attribution

  • Vegetation data: NASA/USGS MODIS Land Processes DAAC
  • Precipitation: CHIRPS, Climate Hazards Center, UC Santa Barbara
  • Food security: World Food Programme HungerMap LIVE
  • Weather: Open-Meteo (CC BY 4.0)