45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
"""
|
|
Static mock data for Irrigation Recommendation API.
|
|
No database, no dynamic values.
|
|
"""
|
|
|
|
CONFIG_RESPONSE_DATA = {
|
|
"farmInfo": {
|
|
"soilType": "Loamy",
|
|
"waterQuality": "Medium EC",
|
|
"climateZone": "Temperate",
|
|
},
|
|
"cropOptions": [
|
|
{"id": "wheat", "labelKey": "wheat", "icon": "tabler-wheat"},
|
|
{"id": "corn", "labelKey": "corn", "icon": "tabler-plant-2"},
|
|
{"id": "cotton", "labelKey": "cotton", "icon": "tabler-flower"},
|
|
{"id": "saffron", "labelKey": "saffron", "icon": "tabler-flower-2"},
|
|
{"id": "canola", "labelKey": "canola", "icon": "tabler-leaf"},
|
|
{"id": "vegetables", "labelKey": "vegetables", "icon": "tabler-carrot"},
|
|
],
|
|
}
|
|
|
|
RECOMMEND_RESPONSE_DATA = {
|
|
"plan": {
|
|
"frequencyPerWeek": 4,
|
|
"durationMinutes": 45,
|
|
"bestTimeOfDay": "05:00 - 07:00",
|
|
"moistureLevel": 72,
|
|
"warning": "Avoid irrigation during midday hours in the coming week due to forecasted high temperatures.",
|
|
},
|
|
}
|
|
|
|
WATER_NEED_PREDICTION = {
|
|
"totalNext7Days": 3290,
|
|
"unit": "m3",
|
|
"categories": ["روز 1", "روز 2", "روز 3", "روز 4", "روز 5", "روز 6", "روز 7"],
|
|
"series": [{"name": "نیاز آبی", "data": [420, 450, 480, 460, 490, 510, 480]}],
|
|
}
|
|
|
|
IRRIGATION_DASHBOARD_RECOMMENDATION = {
|
|
"title": "آبیاری: 05:00 - 07:00",
|
|
"subtitle": "4 نوبت در هفته، 45 دقیقه برای هر نوبت. رطوبت هدف 72%.",
|
|
"avatarIcon": "tabler-droplet",
|
|
"avatarColor": "primary",
|
|
}
|