28 lines
727 B
Python
28 lines
727 B
Python
DEFAULT_AREA_FEATURE = {
|
|
"area": {
|
|
"type": "Feature",
|
|
"properties": {},
|
|
"geometry": {
|
|
"type": "Polygon",
|
|
"coordinates": [
|
|
[
|
|
[51.38, 35.68],
|
|
[51.405, 35.672],
|
|
[51.41, 35.695],
|
|
[51.385, 35.71],
|
|
[51.365, 35.688],
|
|
[51.38, 35.68],
|
|
]
|
|
],
|
|
},
|
|
}
|
|
}
|
|
|
|
DEFAULT_PRODUCTS_PAYLOAD = {
|
|
"products": [
|
|
{"id": "wheat", "label": "گندم", "color": "#6bcb77"},
|
|
{"id": "canola", "label": "کلزا", "color": "#ffd93d"},
|
|
{"id": "saffron", "label": "زعفران", "color": "#9b59b6"},
|
|
]
|
|
}
|