-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.json
156 lines (156 loc) · 4.89 KB
/
project.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name":"Crop identification for drought",
"short_name":"cropid2",
"category":"Somali Drought",
"description":"Identify crops and drought stress.",
"why":"This project experiments with identifying information on the effects of drought on crops.",
"questionnaire":[
{
"question":"Are there crops in the photo?",
"key":"ag",
"type":"binary",
"branch":{
"no":"end"
}
},
{
"question":"Can you see the method of cultivation?",
"key":"agCultivation",
"type":"checklist",
"parameters":{
"options":[
{
"label":"Manual cultivation",
"value":"Manual"
},
{
"label":"With animals",
"value":"Animals"
},
{
"label":"By machine",
"value":"Machine"
}
]
}
},
{
"question":"What species of crop are you seeing?",
"key":"cropID",
"hint":"You can search the internet to find pictures that will help you identify what you are seeing in the photo.",
"type":"illustrative-checklist",
"parameters":{
"options":[
{
"label":"Cassava",
"value":"Cassava",
"illustration":{
"image":"http://www.nextgencassava.org/img/resources/field-scientist-woman-farmer.jpg",
"source":{
"name":"Next Generation Cassava",
"url":"http://www.nextgencassava.org"
}
},
"more_examples":"https://www.google.com/#q=cassava"
},
{
"label":"Banana",
"value":"Banana",
"illustration":{
"image":"http://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Banana_plantation_-_Flickr_-_exfordy.jpg/320px-Banana_plantation_-_Flickr_-_exfordy.jpg?uselang=en-gb",
"source":{
"name":"Brian Snelson",
"url":"http://www.flickr.com/people/32659528@N00"
}
},
"more_examples":"https://www.google.com/#q=banana+plant"
},
{
"label":"Maize (Corn)",
"value":"Maize",
"illustration":{
"image":"http://upload.wikimedia.org/wikipedia/commons/thumb/c/ca/Corn_plantation.JPG/320px-Corn_plantation.JPG?uselang=en-gb",
"source":{
"name":"Bhanupratap59",
"url":"http://commons.wikimedia.org/wiki/Special:Search/Bhanupratap59"
}
},
"more_examples":"https://www.google.com/#q=maize"
},
{
"label":"Potato",
"value":"Potato",
"illustration":{
"image":"http://upload.wikimedia.org/wikipedia/commons/6/6c/Potato_field_in_Ghughu-danga%2CDinajpur.jpg?uselang=en-gb",
"source":{
"name":"Uddinsultana",
"url":"http://commons.wikimedia.org/wiki/Special:Search/Uddinsultana"
}
},
"more_examples":"https://www.google.com/#q=potato"
},
{
"label":"Millet",
"value":"Millet",
"illustration":{
"image":"http://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Grain_millet%2C_early_grain_fill%2C_Tifton%2C_7-3-02.jpg/320px-Grain_millet%2C_early_grain_fill%2C_Tifton%2C_7-3-02.jpg",
"source":{
"name":"USDA-ARS",
"url":"http://en.wikipedia.org/wiki/File:Grain_millet,_early_grain_fill,_Tifton,_7-3-02.jpg"
}
},
"more_examples":"https://www.google.com/#q=millet"
},
{
"label":"Tomato",
"value":"Tomato",
"illustration":{
"image":"http://4.bp.blogspot.com/-1mTOJ20TQuk/U3i1Tj62SCI/AAAAAAAACn0/qa1XSF2eB0E/s1600/tomato-tips-380-1.jpg",
"source":{
"name":"sushlaventulip06",
"url":"http://sushlaventulip06.blogspot.ch/2014/05/the-pulpy-bubbly-tomato.html"
}
},
"more_examples":"https://www.google.com/#q=tomato+plant"
}
]
}
},
{
"question":"Are the crops green?",
"key":"cropGreen",
"type":"binary",
"branch":{
"no":"cropOtherGreen"
}
},
{
"question":"Do the plants seem to be wilting? Or their leaves rolling?",
"key":"cropWilting",
"type":"binary",
"branch":"cropHarvest"
},
{
"question":"Do you see any green vegetation in the field?",
"key":"cropOtherGreen",
"hint":"If the non-crop plants growing in close proximity to the crops are green but the crops are not green then they might be dried down and ready to harvest. If both the crops and the surrounding vegetation are brown or showing signs of drought stress then it is likely there is a drought.",
"type":"binary"
},
{
"question":"Is the vegetation around the edges of the field green?",
"key":"cropOtherGreenExternal",
"hint":"If the non-crop plants growing in close proximity to the crops are green but the crops are not green then they might be dried down and ready to harvest. If both the crops and the surrounding vegetation are brown or showing signs of drought stress then it is likely there is a drought.",
"type":"binary"
},
{
"question":"Does the crop look like it has been harvested?",
"key":"cropHarvest",
"type":"binary"
},
{
"question":"Are there any plants missing from the rows?",
"key":"cropMissing",
"type":"binary"
}
]
}