The Mekong Delta produces over half of Vietnam's rice output and feeds 20 million people, but it is simultaneously sinking at up to 3 cm per year due to groundwater extraction while sea levels rise, a compound vulnerability that makes it one of the world's most climate-exposed agricultural regions. Satellite crop health monitoring, seasonal flood extent tracking, and temporal subsidence analysis are direct inputs into delta management decisions.
The Satalyse API covers every major satellite analysis type for Mekong Delta, Vietnam. These endpoints are most relevant for this location:
This snippet is pre-filled with Mekong Delta, Vietnam'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 [105.6, 10.42],12 [105.66, 10.42],13 [105.66, 10.48],14 [105.6, 10.48],15 [105.6, 10.42]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.