-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
47 lines (43 loc) · 2.09 KB
/
Copy path.env.example
File metadata and controls
47 lines (43 loc) · 2.09 KB
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
# =============================================================================
# SOIL INTELLIGENCE ENGINE - API KEYS CONFIGURATION
# =============================================================================
# Copy this file to .env and fill in your API keys
# All keys are optional - the system will use fallback data when unavailable
# =============================================================================
# FERTILIZER & COMMODITY PRICES
# -----------------------------------------------------------------------------
# Commodities-API (https://commodities-api.com/)
# Get real-time fertilizer prices (DAP, MAP, Urea, Potash)
# Free tier: 100 requests/month
COMMODITIES_API_KEY=
# SATELLITE VEGETATION DATA
# -----------------------------------------------------------------------------
# Sentinel Hub (https://www.sentinel-hub.com/)
# Get real-time NDVI vegetation index from Sentinel-2 satellites
# Free tier: 30,000 requests/month with Copernicus Data Space
SENTINEL_HUB_CLIENT_ID=
SENTINEL_HUB_CLIENT_SECRET=
# WEATHER DATA
# -----------------------------------------------------------------------------
# OpenWeather (https://openweathermap.org/)
# Enhanced soil temperature and moisture data
# Free tier: 1,000 calls/day
OPENWEATHER_API_KEY=
# =============================================================================
# DATA SOURCES SUMMARY
# =============================================================================
#
# WITHOUT API KEYS (works out of the box):
# - iSDA Soil Database: 49,225 soil samples across Africa
# - SoilGrids: 250m resolution soil properties globally
# - Open-Meteo: Weather forecasts, historical data, soil moisture
# - FAO GIEWS: Crop price data (static, updated monthly)
# - World Bank: Fertilizer prices (static, updated quarterly)
#
# WITH API KEYS (enhanced real-time data):
# - Commodities-API: Live fertilizer spot prices
# - Sentinel Hub: Real satellite NDVI (vs estimated)
# - OpenWeather Agro: Enhanced soil temperature/moisture
# - Kaegro API: Additional soil texture data (when available)
#
# =============================================================================