Iowa is the geographic heart of the US Corn Belt, producing more corn than any other state and ranking among the world's most agriculturally productive regions. Agtech platforms, crop insurance underwriters, and commodity traders use satellite-derived NDVI and moisture indices to monitor crop stress, forecast yield deviations, and assess drought impact at field level.
The Satalyse API covers every major satellite analysis type for Iowa, USA. These endpoints are most relevant for this location:
This snippet is pre-filled with Iowa, USA's coordinates and calls the Feature Extraction endpoint.
1"color:#c084fc">import requests2"color:#c084fc">from datetime "color:#c084fc">import date34response = requests.post(5 "https://api.satalyse.dev/api/v1/satellite/extract-features",6 headers={"Authorization": "Bearer sat_sk_live_..."},7 json={8 "geometry": {9 "type": "Polygon",10 "coordinates": [[11 [-93.13, 41.85],12 [-93.07, 41.85],13 [-93.07, 41.91],14 [-93.13, 41.91],15 [-93.13, 41.85]16 ]]17 },18 "measurement_date": "color:#c084fc">str(date.today()),19 "features_requested": ["vegetation", "water", "temperature"]20 }21)2223data = response.json()24veg = data["features"]["vegetation"]25"color:#c084fc">print("color:#c084fc">f"NDVI: {veg['NDVI']['value']:.3">f}")26"color:#c084fc">print("color:#c084fc">f"Health score: {data['health_score']['overall']}/100")
| Source | What it provides | Resolution |
|---|---|---|
| Sentinel-2 | Multispectral optical imagery (NDVI, land cover) | 10 m |
| Landsat 8 | Long-term land surface reflectance and temperature | 30 m |
| MODIS | Daily global coverage, fire, vegetation anomalies | 250 m – 1 km |
| SRTM | Digital elevation model, terrain, slope, aspect | 30 m |
| CHIRPS | Historical and near-real-time precipitation estimates | 5 km |
| JRC Global Surface Water | Water presence history and seasonal flood extent | 30 m |
Multispectral optical imagery (NDVI, land cover)
Long-term land surface reflectance and temperature
Daily global coverage, fire, vegetation anomalies
Digital elevation model, terrain, slope, aspect
Historical and near-real-time precipitation estimates
Water presence history and seasonal flood extent
The coordinates are ready. Paste them into the playground and run your first analysis in under a minute.