rajkhanke commited on
Commit
8f4d406
·
verified ·
1 Parent(s): 52b8e7b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +159 -154
app.py CHANGED
@@ -1,154 +1,159 @@
1
- from flask import Flask, render_template, request, jsonify
2
- import requests
3
- from bs4 import BeautifulSoup
4
-
5
- app = Flask(__name__)
6
-
7
- # Internal mapping of crops to pests (for the form)
8
- CROP_TO_PESTS = {
9
- "Sorgum": ["FallArmyWorm"],
10
- "Maize": ["FallArmyWorm"],
11
- "Rice": ["Blast", "GallMidge", "YSB", "PlantHopper", "BlueBeetle", "BacterialLeafBlight"],
12
- "Cotton": ["Thrips", "Whitefly", "PinkBollworm", "Jassid", "BollRot", "AmericanBollworm"],
13
- "Soybean": ["Girdlebeetle", "H.armigera", "Semilooper", "Spodoptera", "StemFLy"],
14
- "Tur": ["Wilt", "Webbed_Leaves", "Pod_damage"],
15
- "Sugarcane": ["FallArmyGrub", "WhiteGrub"],
16
- "Gram": ["H.armigera", "Wilt"]
17
- }
18
-
19
- # Fixed year options for the form
20
- YEARS = ["2024-25", "2023-24", "2022-23", "2021-22"]
21
-
22
- # Map our internal crop names to the external page's crop values.
23
- CROP_MAPPING = {
24
- "Cotton": "1",
25
- "Gram": "4",
26
- "Maize": "7",
27
- "Rice": "3",
28
- "Sorghum": "6",
29
- "Soybean": "2",
30
- "Sugarcane": "8",
31
- "Tur": "5",
32
- "Sorgum": "6" # Adjust if needed
33
- }
34
-
35
- # Map our internal pest names to external page values per crop.
36
- PEST_MAPPING = {
37
- "Cotton": {
38
- "FallArmyWorm": "71"
39
- },
40
- "Gram": {
41
- "H.armigera": "72",
42
- "Wilt": "73"
43
- },
44
- "Maize": {
45
- "FallArmyWorm": "74"
46
- },
47
- "Rice": {
48
- "Blast": "75",
49
- "GallMidge": "76",
50
- "YSB": "77",
51
- "PlantHopper": "78",
52
- "BlueBeetle": "79",
53
- "BacterialLeafBlight": "80"
54
- },
55
- "Soybean": {
56
- "Girdlebeetle": "81",
57
- "H.armigera": "82",
58
- "Semilooper": "83",
59
- "Spodoptera": "84",
60
- "StemFLy": "85"
61
- },
62
- "Tur": {
63
- "Wilt": "86",
64
- "Webbed_Leaves": "87",
65
- "Pod_damage": "88"
66
- },
67
- "Sugarcane": {
68
- "FallArmyGrub": "89",
69
- "WhiteGrub": "90"
70
- },
71
- "Sorgum": {
72
- "FallArmyWorm": "91"
73
- }
74
- }
75
-
76
- # Parameter codes and labels for the final image URL
77
- PARAMS = {
78
- "Mint": "Min Temperature",
79
- "Maxt": "Max Temperature",
80
- "RH": "Relative Humidity",
81
- "RF": "Rainfall",
82
- "PR": "Pest Report"
83
- }
84
-
85
-
86
- @app.route('/')
87
- def index():
88
- # Read query parameters (if provided)
89
- crop = request.args.get('crop', '')
90
- pest = request.args.get('pest', '')
91
- year = request.args.get('year', '')
92
- week = request.args.get('week', '')
93
- param = request.args.get('param', '')
94
-
95
- image_url = ""
96
- if crop and pest and year and week and param:
97
- # Build image URL using the pattern:
98
- # http://www.icar-crida.res.in:8080/naip/gisimages/{CROP}/{YEAR}/{PEST}_{PARAM}{WEEK}.jpg
99
- base_url = f"http://www.icar-crida.res.in:8080/naip/gisimages/{crop}/{year}/{pest}_"
100
- image_url = f"{base_url}{param}{week}.jpg"
101
-
102
- return render_template('index.html',
103
- crops=list(CROP_TO_PESTS.keys()),
104
- crop_to_pests=CROP_TO_PESTS,
105
- years=YEARS,
106
- params=PARAMS,
107
- selected_crop=crop,
108
- selected_pest=pest,
109
- selected_year=year,
110
- selected_week=week,
111
- selected_param=param,
112
- image_url=image_url)
113
-
114
-
115
- @app.route('/fetch_weeks')
116
- def fetch_weeks():
117
- """
118
- Dynamically fetch available week options by sending a GET request
119
- with the selected crop, pest, and year to the external JSP page.
120
- """
121
- crop = request.args.get('crop', '')
122
- pest = request.args.get('pest', '')
123
- year = request.args.get('year', '')
124
-
125
- # Use our mappings to get external values
126
- ext_crop = CROP_MAPPING.get(crop, '')
127
- ext_pest = ""
128
- if crop in PEST_MAPPING and pest in PEST_MAPPING[crop]:
129
- ext_pest = PEST_MAPPING[crop][pest]
130
-
131
- # Build query parameters as expected by the external page
132
- payload = {
133
- "country": ext_crop, # external crop value
134
- "city": ext_pest, # external pest value
135
- "sowing": year # year remains the same
136
- }
137
-
138
- weeks = []
139
- try:
140
- # Use GET request with parameters
141
- response = requests.get("http://www.icar-crida.res.in:8080/naip/gismaps.jsp", params=payload, timeout=10)
142
- soup = BeautifulSoup(response.text, 'html.parser')
143
- week_options = soup.select('select[name="week"] option')
144
- # Filter out default options (e.g., those containing "Select")
145
- weeks = [opt.get('value') for opt in week_options if opt.get('value') and "Select" not in opt.get('value')]
146
- if not weeks:
147
- weeks = [str(i) for i in range(1, 53)]
148
- except Exception as e:
149
- weeks = [str(i) for i in range(1, 53)]
150
- return jsonify({"weeks": weeks})
151
-
152
-
153
- if __name__ == '__main__':
154
- app.run(debug=True)
 
 
 
 
 
 
1
+ from flask import Flask, render_template, request, jsonify
2
+ import requests
3
+ from bs4 import BeautifulSoup
4
+
5
+ app = Flask(__name__)
6
+
7
+ # Internal mapping of crops to pests (for the form)
8
+ CROP_TO_PESTS = {
9
+ "Sorgum": ["FallArmyWorm"],
10
+ "Maize": ["FallArmyWorm"],
11
+ "Rice": ["Blast", "GallMidge", "YSB", "PlantHopper", "BlueBeetle", "BacterialLeafBlight"],
12
+ "Cotton": ["Thrips", "Whitefly", "PinkBollworm", "Jassid", "BollRot", "AmericanBollworm"],
13
+ "Soybean": ["Girdlebeetle", "H.armigera", "Semilooper", "Spodoptera", "StemFLy"],
14
+ "Tur": ["Wilt", "Webbed_Leaves", "Pod_damage"],
15
+ "Sugarcane": ["FallArmyGrub", "WhiteGrub"],
16
+ "Gram": ["H.armigera", "Wilt"]
17
+ }
18
+
19
+ # Fixed year options for the form
20
+ YEARS = ["2024-25", "2023-24", "2022-23", "2021-22"]
21
+
22
+ # Map our internal crop names to the external page's crop values.
23
+ CROP_MAPPING = {
24
+ "Cotton": "1",
25
+ "Gram": "4",
26
+ "Maize": "7",
27
+ "Rice": "3",
28
+ "Sorghum": "6",
29
+ "Soybean": "2",
30
+ "Sugarcane": "8",
31
+ "Tur": "5",
32
+ "Sorgum": "6" # Adjust if needed
33
+ }
34
+
35
+ # Map our internal pest names to external page values per crop.
36
+ PEST_MAPPING = {
37
+ "Cotton": {
38
+ "FallArmyWorm": "71"
39
+ },
40
+ "Gram": {
41
+ "H.armigera": "72",
42
+ "Wilt": "73"
43
+ },
44
+ "Maize": {
45
+ "FallArmyWorm": "74"
46
+ },
47
+ "Rice": {
48
+ "Blast": "75",
49
+ "GallMidge": "76",
50
+ "YSB": "77",
51
+ "PlantHopper": "78",
52
+ "BlueBeetle": "79",
53
+ "BacterialLeafBlight": "80"
54
+ },
55
+ "Soybean": {
56
+ "Girdlebeetle": "81",
57
+ "H.armigera": "82",
58
+ "Semilooper": "83",
59
+ "Spodoptera": "84",
60
+ "StemFLy": "85"
61
+ },
62
+ "Tur": {
63
+ "Wilt": "86",
64
+ "Webbed_Leaves": "87",
65
+ "Pod_damage": "88"
66
+ },
67
+ "Sugarcane": {
68
+ "FallArmyGrub": "89",
69
+ "WhiteGrub": "90"
70
+ },
71
+ "Sorgum": {
72
+ "FallArmyWorm": "91"
73
+ }
74
+ }
75
+
76
+ # Parameter codes and labels for the final image URL
77
+ PARAMS = {
78
+ "Mint": "Min Temperature",
79
+ "Maxt": "Max Temperature",
80
+ "RH": "Relative Humidity",
81
+ "RF": "Rainfall",
82
+ "PR": "Pest Report"
83
+ }
84
+
85
+
86
+ @app.route('/')
87
+ def index():
88
+ # Read query parameters
89
+ crop = request.args.get('crop', '')
90
+ pest = request.args.get('pest', '')
91
+ year = request.args.get('year', '')
92
+ week = request.args.get('week', '')
93
+ param = request.args.get('param', '')
94
+
95
+ image_url = ""
96
+ if crop and pest and year and week and param:
97
+ # Use the external mappings for crop and pest
98
+ ext_crop = CROP_MAPPING.get(crop, crop)
99
+ ext_pest = ""
100
+ if crop in PEST_MAPPING and pest in PEST_MAPPING[crop]:
101
+ ext_pest = PEST_MAPPING[crop][pest]
102
+
103
+ # Build image URL using external values
104
+ base_url = f"http://www.icar-crida.res.in:8080/naip/gisimages/{ext_crop}/{year}/{ext_pest}_"
105
+ image_url = f"{base_url}{param}{week}.jpg"
106
+
107
+ return render_template('index.html',
108
+ crops=list(CROP_TO_PESTS.keys()),
109
+ crop_to_pests=CROP_TO_PESTS,
110
+ years=YEARS,
111
+ params=PARAMS,
112
+ selected_crop=crop,
113
+ selected_pest=pest,
114
+ selected_year=year,
115
+ selected_week=week,
116
+ selected_param=param,
117
+ image_url=image_url)
118
+
119
+
120
+ @app.route('/fetch_weeks')
121
+ def fetch_weeks():
122
+ """
123
+ Dynamically fetch available week options by sending a GET request
124
+ with the selected crop, pest, and year to the external JSP page.
125
+ """
126
+ crop = request.args.get('crop', '')
127
+ pest = request.args.get('pest', '')
128
+ year = request.args.get('year', '')
129
+
130
+ # Use our mappings to get external values
131
+ ext_crop = CROP_MAPPING.get(crop, '')
132
+ ext_pest = ""
133
+ if crop in PEST_MAPPING and pest in PEST_MAPPING[crop]:
134
+ ext_pest = PEST_MAPPING[crop][pest]
135
+
136
+ # Build query parameters as expected by the external page
137
+ payload = {
138
+ "country": ext_crop, # external crop value
139
+ "city": ext_pest, # external pest value
140
+ "sowing": year # year remains the same
141
+ }
142
+
143
+ weeks = []
144
+ try:
145
+ # Use GET request with parameters
146
+ response = requests.get("http://www.icar-crida.res.in:8080/naip/gismaps.jsp", params=payload, timeout=10)
147
+ soup = BeautifulSoup(response.text, 'html.parser')
148
+ week_options = soup.select('select[name="week"] option')
149
+ # Filter out default options (e.g., those containing "Select")
150
+ weeks = [opt.get('value') for opt in week_options if opt.get('value') and "Select" not in opt.get('value')]
151
+ if not weeks:
152
+ weeks = [str(i) for i in range(1, 53)]
153
+ except Exception as e:
154
+ weeks = [str(i) for i in range(1, 53)]
155
+ return jsonify({"weeks": weeks})
156
+
157
+
158
+ if __name__ == '__main__':
159
+ app.run(debug=True)