AtmosIQ commited on
Commit
60b91f4
·
verified ·
1 Parent(s): eebef8a

Initial upload

Browse files
.gitattributes CHANGED
@@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ merged_cpcb_clean.csv filter=lfs diff=lfs merge=lfs -text
62
+ merged_cpcb_data.csv filter=lfs diff=lfs merge=lfs -text
DATA_DICTIONARY.md ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CPCB Clean Dataset -- Final Data Dictionary
2
+
3
+ Generated from: `merged_cpcb_clean.csv`
4
+ File size on disk: **151.6 MB**
5
+
6
+ ## Dataset Overview
7
+ - Rows: **972,562**
8
+ - Columns: **20**
9
+ - Date range: **2009-01-01 to 2025-12-31** (0 rows with unparseable date)
10
+
11
+ ## Column-by-Column Dictionary
12
+ Every `dtype` below is read directly from `df.dtypes` on the actual loaded file -- not assumed. Every `unit` is sourced as noted; where no unit applies (categorical/text/boolean fields) that's stated explicitly instead of left blank.
13
+
14
+ ### `date`
15
+ - **dtype (as loaded by pandas):** `object`
16
+ - **unit:** calendar date (IST local, no time-of-day) _(source: clean_cpcb.py docstring: 'CPCB timestamps are IST local')_
17
+ - **non-null:** 972,562 / 972,562 (100.0%)
18
+ - **unique values:** 6,209
19
+ - **top 5 values:** {'2025-10-21': 514, '2025-10-24': 514, '2025-10-22': 513, '2025-10-20': 513, '2025-10-23': 512}
20
+ - **sample values:** ['2009-01-01', '2009-01-01', '2009-01-01']
21
+
22
+ ### `station`
23
+ - **dtype (as loaded by pandas):** `object`
24
+ - **unit:** N/A -- free-text station name, parsed from source filename
25
+ - **non-null:** 972,562 / 972,562 (100.0%)
26
+ - **unique values:** 532
27
+ - **top 5 values:** {'Nehru Nagar': 8005, 'Shastri Nagar': 7302, 'Collectorate': 6577, 'Anand Vihar': 6327, 'Shadipur': 5941}
28
+ - **sample values:** ['DTU', 'ITO', 'NSIT Dwarka']
29
+
30
+ ### `city`
31
+ - **dtype (as loaded by pandas):** `object`
32
+ - **unit:** N/A -- free-text city name, parsed from source filename
33
+ - **non-null:** 972,562 / 972,562 (100.0%)
34
+ - **unique values:** 289
35
+ - **top 5 values:** {'Delhi': 116163, 'Mumbai': 46430, 'Bengaluru': 39281, 'Hyderabad': 30930, 'Chennai': 25919}
36
+ - **sample values:** ['Delhi', 'Delhi', 'Delhi']
37
+
38
+ ### `state`
39
+ - **dtype (as loaded by pandas):** `object`
40
+ - **unit:** N/A -- categorical -- from State_Geocoded (Nominatim's returned state), PRIMARY state field
41
+ - **non-null:** 850,652 / 972,562 (87.5%)
42
+ - **unique values:** 30
43
+ - **top 5 values:** {'Maharashtra': 127095, nan: 121910, 'Uttar Pradesh': 120153, 'Karnataka': 86218, 'Haryana': 68098}
44
+ - **sample values:** ['Karnataka', 'Karnataka', 'Karnataka']
45
+
46
+ ### `state_hint`
47
+ - **dtype (as loaded by pandas):** `object`
48
+ - **unit:** N/A -- categorical -- from State_Hint, canonical state mapped from the source folder name
49
+ - **non-null:** 972,562 / 972,562 (100.0%)
50
+ - **unique values:** 31
51
+ - **top 5 values:** {'Maharashtra': 127095, 'Delhi': 121910, 'Uttar Pradesh': 120153, 'Karnataka': 86218, 'Bihar': 72673}
52
+ - **sample values:** ['Delhi', 'Delhi', 'Delhi']
53
+
54
+ ### `state_mismatch_flag`
55
+ - **dtype (as loaded by pandas):** `object`
56
+ - **unit:** N/A -- boolean -- True if state_hint disagrees with the geocoded state
57
+ - **non-null:** 850,652 / 972,562 (87.5%)
58
+ - **unique values:** 2
59
+ - **top 5 values:** {False: 841064, nan: 121910, True: 9588}
60
+ - **sample values:** [False, False, False]
61
+
62
+ ### `geocode_confidence`
63
+ - **dtype (as loaded by pandas):** `object`
64
+ - **unit:** N/A -- categorical enum: high / medium / medium_state_mismatch / low_ambiguous / not_found
65
+ - **non-null:** 972,562 / 972,562 (100.0%)
66
+ - **unique values:** 3
67
+ - **top 5 values:** {'high': 841064, 'medium_state_mismatch': 126158, 'low_ambiguous': 5340}
68
+ - **sample values:** ['medium_state_mismatch', 'medium_state_mismatch', 'medium_state_mismatch']
69
+
70
+ ### `agency`
71
+ - **dtype (as loaded by pandas):** `object`
72
+ - **unit:** N/A -- free-text monitoring agency code (e.g. CPCB, UPPCB, MPCB), parsed from source filename
73
+ - **non-null:** 972,562 / 972,562 (100.0%)
74
+ - **unique values:** 49
75
+ - **top 5 values:** {'UPPCB': 99695, 'MPCB': 98974, 'CPCB': 80590, 'DPCC': 73243, 'KSPCB': 70341}
76
+ - **sample values:** ['CPCB', 'CPCB', 'CPCB']
77
+
78
+ ### `lat`
79
+ - **dtype (as loaded by pandas):** `float64`
80
+ - **unit:** decimal degrees (WGS84) _(source: Nominatim/OpenStreetMap geocoder output format)_
81
+ - **non-null:** 972,562 / 972,562 (100.0%)
82
+ - **unique values:** 289
83
+ - **min:** 8.4882 **max:** 34.0747 **mean:** 22.9735 **median:** 24.7964
84
+
85
+ ### `lon`
86
+ - **dtype (as loaded by pandas):** `float64`
87
+ - **unit:** decimal degrees (WGS84) _(source: Nominatim/OpenStreetMap geocoder output format)_
88
+ - **non-null:** 972,562 / 972,562 (100.0%)
89
+ - **unique values:** 289
90
+ - **min:** 70.7775 **max:** 94.6394 **mean:** 78.5007 **median:** 77.3091
91
+
92
+ ### `coverage_area_km2`
93
+ - **dtype (as loaded by pandas):** `float64`
94
+ - **unit:** km² _(source: computed from Nominatim bounding box by cpcb_pipeline.py)_
95
+ - **non-null:** 972,562 / 972,562 (100.0%)
96
+ - **unique values:** 266
97
+ - **min:** 0 **max:** 63,238.2000 **mean:** 2,805.6955 **median:** 1,141.7000
98
+
99
+ ### `pm25`
100
+ - **dtype (as loaded by pandas):** `float64`
101
+ - **unit:** µg/m³ _(source: from raw column 'PM2.5 (µg/m³)')_
102
+ - **non-null:** 906,236 / 972,562 (93.2%)
103
+ - **unique values:** 156,644
104
+ - **min:** 0.0100 **max:** 1,000 **mean:** 57.8282 **median:** 41.0100
105
+
106
+ ### `pm10`
107
+ - **dtype (as loaded by pandas):** `float64`
108
+ - **unit:** µg/m³ _(source: from raw column 'PM10 (µg/m³)')_
109
+ - **non-null:** 861,062 / 972,562 (88.5%)
110
+ - **unique values:** 179,248
111
+ - **min:** 0.0300 **max:** 1,000 **mean:** 118.8644 **median:** 92.7900
112
+
113
+ ### `no2`
114
+ - **dtype (as loaded by pandas):** `float64`
115
+ - **unit:** µg/m³ _(source: from raw column 'NO2 (µg/m³)')_
116
+ - **non-null:** 939,539 / 972,562 (96.6%)
117
+ - **unique values:** 153,689
118
+ - **min:** 0.0100 **max:** 500 **mean:** 25.9318 **median:** 18.8000
119
+
120
+ ### `so2`
121
+ - **dtype (as loaded by pandas):** `float64`
122
+ - **unit:** µg/m³ _(source: from raw column 'SO2 (µg/m³)')_
123
+ - **non-null:** 915,167 / 972,562 (94.1%)
124
+ - **unique values:** 138,954
125
+ - **min:** 0.0100 **max:** 199.8300 **mean:** 12.6577 **median:** 9.0200
126
+
127
+ ### `co`
128
+ - **dtype (as loaded by pandas):** `float64`
129
+ - **unit:** mg/m³ _(source: from raw column 'CO (mg/m³)' -- NOTE different unit family than other pollutants)_
130
+ - **non-null:** 920,104 / 972,562 (94.6%)
131
+ - **unique values:** 79,333
132
+ - **min:** 0 **max:** 50 **mean:** 1.1384 **median:** 0.7300
133
+
134
+ ### `o3`
135
+ - **dtype (as loaded by pandas):** `float64`
136
+ - **unit:** µg/m³ _(source: from raw column 'Ozone (µg/m³)')_
137
+ - **non-null:** 892,019 / 972,562 (91.7%)
138
+ - **unique values:** 151,934
139
+ - **min:** 0.0100 **max:** 499.6300 **mean:** 30.9691 **median:** 25.8400
140
+
141
+ ### `nh3`
142
+ - **dtype (as loaded by pandas):** `float64`
143
+ - **unit:** µg/m³ _(source: from raw column 'NH3 (µg/m³)')_
144
+ - **non-null:** 779,161 / 972,562 (80.1%)
145
+ - **unique values:** 137,757
146
+ - **min:** 0.0100 **max:** 498.4000 **mean:** 24.3772 **median:** 17.8800
147
+
148
+ ### `no`
149
+ - **dtype (as loaded by pandas):** `float64`
150
+ - **unit:** µg/m³ _(source: from raw column 'NO (µg/m³)')_
151
+ - **non-null:** 923,787 / 972,562 (95.0%)
152
+ - **unique values:** 141,244
153
+ - **min:** 0.0100 **max:** 500 **mean:** 14.9131 **median:** 7.1064
154
+
155
+ ### `nox_ppb`
156
+ - **dtype (as loaded by pandas):** `float64`
157
+ - **unit:** ppb _(source: from raw column 'NOx (ppb)' -- NOTE ppb, not µg/m³ like the others)_
158
+ - **non-null:** 933,951 / 972,562 (96.0%)
159
+ - **unique values:** 157,146
160
+ - **min:** 0 **max:** 499.4400 **mean:** 29.7808 **median:** 19.9900
cities_needs_review.csv ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ City,State_Hint,confidence,lat,lon,state_geocoded,alt_states_seen,num_candidates,queries_tried
2
+ Bileipada,Odisha,not_found,,,,,0,"Bileipada, Odisha, India | Bileipada, India"
3
+ DU Delhi,Delhi,not_found,,,,,0,"DU Delhi, Delhi, India | DU Delhi, India"
4
+ Milupara,Chhattisgarh,not_found,,,,,0,"Milupara, Chhattisgarh, India | Milupara, India"
5
+ Tumidih,Chhattisgarh,not_found,,,,,0,"Tumidih, Chhattisgarh, India | Tumidih, India"
6
+ Suakati,Odisha,not_found,,,,,0,"Suakati, Odisha, India | Suakati, India"
7
+ Palkalaiperur,Tamil Nadu,not_found,,,,,0,"Palkalaiperur, Tamil Nadu, India | Palkalaiperur, India"
8
+ Kunjemura,Bihar,not_found,,,,,0,"Kunjemura, Bihar, India | Kunjemura, India"
9
+ Bilaspur,Bihar,low_ambiguous,22.1638486,82.1365923,Chhattisgarh,"Haryana, Himachal Pradesh, Uttar Pradesh",5,"Bilaspur, Bihar, India | Bilaspur, India"
10
+ Bhilai,Bihar,low_ambiguous,21.2120677,81.3732849,Chhattisgarh,Madhya Pradesh,5,"Bhilai, Bihar, India | Bhilai, India"
11
+ Panchgaon,Haryana,low_ambiguous,21.9363716,79.1973421,Madhya Pradesh,"Maharashtra, Uttarakhand",5,"Panchgaon, Haryana, India | Panchgaon, India"
12
+ Chhal,Bihar,medium_state_mismatch,31.1164614,77.5286293,Himachal Pradesh,,1,"Chhal, Bihar, India | Chhal, India"
13
+ Byrnihat,Assam,medium_state_mismatch,26.0543348,91.8696498,Meghalaya,,1,"Byrnihat, Assam, India | Byrnihat, India"
14
+ Dilshad Garden Delhi,Delhi,medium_state_mismatch,28.678087,77.3091432,,,5,"Dilshad Garden Delhi, Delhi, India"
15
+ Delhi,Delhi,medium_state_mismatch,28.6138954,77.2090057,,,1,"Delhi, Delhi, India"
16
+ Korba,Bihar,medium_state_mismatch,22.5198217,82.6350029,Chhattisgarh,,2,"Korba, Bihar, India | Korba, India"
city_geocode_cache.json ADDED
@@ -0,0 +1,3711 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Agartala||Tripura": {
3
+ "lat": 23.8312377,
4
+ "lon": 91.2823821,
5
+ "area_km2": 1154.1,
6
+ "state_geocoded": "Tripura",
7
+ "confidence": "high",
8
+ "num_candidates": 1,
9
+ "alt_states": "",
10
+ "queries": [
11
+ "Agartala, Tripura, India"
12
+ ]
13
+ },
14
+ "Agra||Uttar Pradesh": {
15
+ "lat": 27.1752554,
16
+ "lon": 78.0098161,
17
+ "area_km2": 1122.4,
18
+ "state_geocoded": "Uttar Pradesh",
19
+ "confidence": "high",
20
+ "num_candidates": 3,
21
+ "alt_states": "",
22
+ "queries": [
23
+ "Agra, Uttar Pradesh, India"
24
+ ]
25
+ },
26
+ "Ahmedabad||Gujarat": {
27
+ "lat": 23.0215374,
28
+ "lon": 72.5800568,
29
+ "area_km2": 1161.2,
30
+ "state_geocoded": "Gujarat",
31
+ "confidence": "high",
32
+ "num_candidates": 2,
33
+ "alt_states": "",
34
+ "queries": [
35
+ "Ahmedabad, Gujarat, India"
36
+ ]
37
+ },
38
+ "Ahmednagar||Maharashtra": {
39
+ "lat": 19.092952,
40
+ "lon": 74.7493451,
41
+ "area_km2": 1192.3,
42
+ "state_geocoded": "Maharashtra",
43
+ "confidence": "high",
44
+ "num_candidates": 3,
45
+ "alt_states": "",
46
+ "queries": [
47
+ "Ahmednagar, Maharashtra, India"
48
+ ]
49
+ },
50
+ "Aizawl||Mizoram": {
51
+ "lat": 23.7277631,
52
+ "lon": 92.7179947,
53
+ "area_km2": 1155.0,
54
+ "state_geocoded": "Mizoram",
55
+ "confidence": "high",
56
+ "num_candidates": 2,
57
+ "alt_states": "",
58
+ "queries": [
59
+ "Aizawl, Mizoram, India"
60
+ ]
61
+ },
62
+ "Ajmer||Rajasthan": {
63
+ "lat": 26.4691,
64
+ "lon": 74.639,
65
+ "area_km2": 132.9,
66
+ "state_geocoded": "Rajasthan",
67
+ "confidence": "high",
68
+ "num_candidates": 3,
69
+ "alt_states": "",
70
+ "queries": [
71
+ "Ajmer, Rajasthan, India"
72
+ ]
73
+ },
74
+ "Akola||Maharashtra": {
75
+ "lat": 20.7618122,
76
+ "lon": 77.1921157,
77
+ "area_km2": 10404.2,
78
+ "state_geocoded": "Maharashtra",
79
+ "confidence": "high",
80
+ "num_candidates": 3,
81
+ "alt_states": "",
82
+ "queries": [
83
+ "Akola, Maharashtra, India"
84
+ ]
85
+ },
86
+ "Alwar||Rajasthan": {
87
+ "lat": 27.4140049,
88
+ "lon": 76.6170387,
89
+ "area_km2": 8632.6,
90
+ "state_geocoded": "Rajasthan",
91
+ "confidence": "high",
92
+ "num_candidates": 3,
93
+ "alt_states": "",
94
+ "queries": [
95
+ "Alwar, Rajasthan, India"
96
+ ]
97
+ },
98
+ "Amaravati||Andhra Pradesh": {
99
+ "lat": 16.5096679,
100
+ "lon": 80.5184535,
101
+ "area_km2": 1209.7,
102
+ "state_geocoded": "Andhra Pradesh",
103
+ "confidence": "high",
104
+ "num_candidates": 3,
105
+ "alt_states": "",
106
+ "queries": [
107
+ "Amaravati, Andhra Pradesh, India"
108
+ ]
109
+ },
110
+ "Ambala||Haryana": {
111
+ "lat": 30.3843674,
112
+ "lon": 76.770421,
113
+ "area_km2": 1088.4,
114
+ "state_geocoded": "Haryana",
115
+ "confidence": "high",
116
+ "num_candidates": 4,
117
+ "alt_states": "",
118
+ "queries": [
119
+ "Ambala, Haryana, India"
120
+ ]
121
+ },
122
+ "Ambernath||Maharashtra": {
123
+ "lat": 19.2015607,
124
+ "lon": 73.2004771,
125
+ "area_km2": 89.2,
126
+ "state_geocoded": "Maharashtra",
127
+ "confidence": "high",
128
+ "num_candidates": 2,
129
+ "alt_states": "",
130
+ "queries": [
131
+ "Ambernath, Maharashtra, India"
132
+ ]
133
+ },
134
+ "Amravati||Maharashtra": {
135
+ "lat": 21.1545412,
136
+ "lon": 77.6442962,
137
+ "area_km2": 25853.7,
138
+ "state_geocoded": "Maharashtra",
139
+ "confidence": "high",
140
+ "num_candidates": 4,
141
+ "alt_states": "",
142
+ "queries": [
143
+ "Amravati, Maharashtra, India"
144
+ ]
145
+ },
146
+ "Amritsar||Punjab": {
147
+ "lat": 31.6356659,
148
+ "lon": 74.8787496,
149
+ "area_km2": 1074.2,
150
+ "state_geocoded": "Punjab",
151
+ "confidence": "high",
152
+ "num_candidates": 3,
153
+ "alt_states": "",
154
+ "queries": [
155
+ "Amritsar, Punjab, India"
156
+ ]
157
+ },
158
+ "Anantapur||Andhra Pradesh": {
159
+ "lat": 14.6783221,
160
+ "lon": 77.6065039,
161
+ "area_km2": 1220.5,
162
+ "state_geocoded": "Andhra Pradesh",
163
+ "confidence": "high",
164
+ "num_candidates": 3,
165
+ "alt_states": "",
166
+ "queries": [
167
+ "Anantapur, Andhra Pradesh, India"
168
+ ]
169
+ },
170
+ "Angul||Odisha": {
171
+ "lat": 21.102538,
172
+ "lon": 84.9536825,
173
+ "area_km2": 14973.2,
174
+ "state_geocoded": "Odisha",
175
+ "confidence": "high",
176
+ "num_candidates": 1,
177
+ "alt_states": "",
178
+ "queries": [
179
+ "Angul, Odisha, India"
180
+ ]
181
+ },
182
+ "Ankleshwar||Gujarat": {
183
+ "lat": 21.6293206,
184
+ "lon": 72.9945103,
185
+ "area_km2": 73.3,
186
+ "state_geocoded": "Gujarat",
187
+ "confidence": "high",
188
+ "num_candidates": 2,
189
+ "alt_states": "",
190
+ "queries": [
191
+ "Ankleshwar, Gujarat, India"
192
+ ]
193
+ },
194
+ "Araria||Bihar": {
195
+ "lat": 26.1346459,
196
+ "lon": 87.4654062,
197
+ "area_km2": 70.8,
198
+ "state_geocoded": "Bihar",
199
+ "confidence": "high",
200
+ "num_candidates": 3,
201
+ "alt_states": "",
202
+ "queries": [
203
+ "Araria, Bihar, India"
204
+ ]
205
+ },
206
+ "Ariyalur||Tamil Nadu": {
207
+ "lat": 11.1530559,
208
+ "lon": 79.2585797,
209
+ "area_km2": 3667.4,
210
+ "state_geocoded": "Tamil Nadu",
211
+ "confidence": "high",
212
+ "num_candidates": 4,
213
+ "alt_states": "",
214
+ "queries": [
215
+ "Ariyalur, Tamil Nadu, India"
216
+ ]
217
+ },
218
+ "Arrah||Bihar": {
219
+ "lat": 25.560317,
220
+ "lon": 84.6632139,
221
+ "area_km2": 1138.2,
222
+ "state_geocoded": "Bihar",
223
+ "confidence": "high",
224
+ "num_candidates": 2,
225
+ "alt_states": "",
226
+ "queries": [
227
+ "Arrah, Bihar, India"
228
+ ]
229
+ },
230
+ "Asansol||West Bengal": {
231
+ "lat": 23.6871297,
232
+ "lon": 86.9746587,
233
+ "area_km2": 66.2,
234
+ "state_geocoded": "West Bengal",
235
+ "confidence": "high",
236
+ "num_candidates": 1,
237
+ "alt_states": "",
238
+ "queries": [
239
+ "Asansol, West Bengal, India"
240
+ ]
241
+ },
242
+ "Aurangabad||Bihar": {
243
+ "lat": 24.8033201,
244
+ "lon": 84.4110198,
245
+ "area_km2": 5401.4,
246
+ "state_geocoded": "Bihar",
247
+ "confidence": "high",
248
+ "num_candidates": 3,
249
+ "alt_states": "",
250
+ "queries": [
251
+ "Aurangabad, Bihar, India"
252
+ ]
253
+ },
254
+ "Aurangabad||Maharashtra": {
255
+ "lat": 19.877263,
256
+ "lon": 75.3390241,
257
+ "area_km2": 1186.5,
258
+ "state_geocoded": "Maharashtra",
259
+ "confidence": "high",
260
+ "num_candidates": 1,
261
+ "alt_states": "",
262
+ "queries": [
263
+ "Aurangabad, Maharashtra, India"
264
+ ]
265
+ },
266
+ "Baddi||Himachal Pradesh": {
267
+ "lat": 30.9763026,
268
+ "lon": 76.7674001,
269
+ "area_km2": 304.3,
270
+ "state_geocoded": "Himachal Pradesh",
271
+ "confidence": "high",
272
+ "num_candidates": 2,
273
+ "alt_states": "",
274
+ "queries": [
275
+ "Baddi, Himachal Pradesh, India"
276
+ ]
277
+ },
278
+ "Badlapur||Maharashtra": {
279
+ "lat": 19.1666237,
280
+ "lon": 73.2389064,
281
+ "area_km2": 1.2,
282
+ "state_geocoded": "Maharashtra",
283
+ "confidence": "high",
284
+ "num_candidates": 5,
285
+ "alt_states": "",
286
+ "queries": [
287
+ "Badlapur, Maharashtra, India"
288
+ ]
289
+ },
290
+ "Bagalkot||Karnataka": {
291
+ "lat": 16.1793224,
292
+ "lon": 75.6999315,
293
+ "area_km2": 1.2,
294
+ "state_geocoded": "Karnataka",
295
+ "confidence": "high",
296
+ "num_candidates": 1,
297
+ "alt_states": "",
298
+ "queries": [
299
+ "Bagalkot, Karnataka, India"
300
+ ]
301
+ },
302
+ "Baghpat||Uttar Pradesh": {
303
+ "lat": 29.0374779,
304
+ "lon": 77.3062737,
305
+ "area_km2": 2096.0,
306
+ "state_geocoded": "Uttar Pradesh",
307
+ "confidence": "high",
308
+ "num_candidates": 3,
309
+ "alt_states": "",
310
+ "queries": [
311
+ "Baghpat, Uttar Pradesh, India"
312
+ ]
313
+ },
314
+ "Bahadurgarh||Haryana": {
315
+ "lat": 28.6933239,
316
+ "lon": 76.9332373,
317
+ "area_km2": 1106.7,
318
+ "state_geocoded": "Haryana",
319
+ "confidence": "high",
320
+ "num_candidates": 2,
321
+ "alt_states": "",
322
+ "queries": [
323
+ "Bahadurgarh, Haryana, India"
324
+ ]
325
+ },
326
+ "Balasore||Odisha": {
327
+ "lat": 21.5006421,
328
+ "lon": 86.919884,
329
+ "area_km2": 1.1,
330
+ "state_geocoded": "Odisha",
331
+ "confidence": "high",
332
+ "num_candidates": 2,
333
+ "alt_states": "",
334
+ "queries": [
335
+ "Balasore, Odisha, India"
336
+ ]
337
+ },
338
+ "Ballabgarh||Haryana": {
339
+ "lat": 28.2940728,
340
+ "lon": 77.3592238,
341
+ "area_km2": 641.4,
342
+ "state_geocoded": "Haryana",
343
+ "confidence": "high",
344
+ "num_candidates": 2,
345
+ "alt_states": "",
346
+ "queries": [
347
+ "Ballabgarh, Haryana, India"
348
+ ]
349
+ },
350
+ "Banswara||Rajasthan": {
351
+ "lat": 23.4915047,
352
+ "lon": 74.3502172,
353
+ "area_km2": 7967.8,
354
+ "state_geocoded": "Rajasthan",
355
+ "confidence": "high",
356
+ "num_candidates": 2,
357
+ "alt_states": "",
358
+ "queries": [
359
+ "Banswara, Rajasthan, India"
360
+ ]
361
+ },
362
+ "Baran||Rajasthan": {
363
+ "lat": 24.9208165,
364
+ "lon": 76.6821985,
365
+ "area_km2": 14204.6,
366
+ "state_geocoded": "Rajasthan",
367
+ "confidence": "high",
368
+ "num_candidates": 2,
369
+ "alt_states": "",
370
+ "queries": [
371
+ "Baran, Rajasthan, India"
372
+ ]
373
+ },
374
+ "Barbil||Odisha": {
375
+ "lat": 22.1048613,
376
+ "lon": 85.3690447,
377
+ "area_km2": 1.1,
378
+ "state_geocoded": "Odisha",
379
+ "confidence": "high",
380
+ "num_candidates": 3,
381
+ "alt_states": "",
382
+ "queries": [
383
+ "Barbil, Odisha, India"
384
+ ]
385
+ },
386
+ "Bareilly||Uttar Pradesh": {
387
+ "lat": 28.4582345,
388
+ "lon": 79.4047452,
389
+ "area_km2": 7886.9,
390
+ "state_geocoded": "Uttar Pradesh",
391
+ "confidence": "high",
392
+ "num_candidates": 3,
393
+ "alt_states": "",
394
+ "queries": [
395
+ "Bareilly, Uttar Pradesh, India"
396
+ ]
397
+ },
398
+ "Baripada||Odisha": {
399
+ "lat": 21.9342456,
400
+ "lon": 86.7308825,
401
+ "area_km2": 1170.3,
402
+ "state_geocoded": "Odisha",
403
+ "confidence": "high",
404
+ "num_candidates": 2,
405
+ "alt_states": "",
406
+ "queries": [
407
+ "Baripada, Odisha, India"
408
+ ]
409
+ },
410
+ "Barmer||Rajasthan": {
411
+ "lat": 25.5814853,
412
+ "lon": 71.1924922,
413
+ "area_km2": 38549.7,
414
+ "state_geocoded": "Rajasthan",
415
+ "confidence": "high",
416
+ "num_candidates": 3,
417
+ "alt_states": "",
418
+ "queries": [
419
+ "Barmer, Rajasthan, India"
420
+ ]
421
+ },
422
+ "Barrackpore||West Bengal": {
423
+ "lat": 22.7641623,
424
+ "lon": 88.3776088,
425
+ "area_km2": 1163.4,
426
+ "state_geocoded": "West Bengal",
427
+ "confidence": "high",
428
+ "num_candidates": 2,
429
+ "alt_states": "",
430
+ "queries": [
431
+ "Barrackpore, West Bengal, India"
432
+ ]
433
+ },
434
+ "Bathinda||Punjab": {
435
+ "lat": 30.1794814,
436
+ "lon": 75.0471098,
437
+ "area_km2": 6417.8,
438
+ "state_geocoded": "Punjab",
439
+ "confidence": "high",
440
+ "num_candidates": 2,
441
+ "alt_states": "",
442
+ "queries": [
443
+ "Bathinda, Punjab, India"
444
+ ]
445
+ },
446
+ "Beed||Maharashtra": {
447
+ "lat": 18.9918442,
448
+ "lon": 75.909784,
449
+ "area_km2": 20196.9,
450
+ "state_geocoded": "Maharashtra",
451
+ "confidence": "high",
452
+ "num_candidates": 3,
453
+ "alt_states": "",
454
+ "queries": [
455
+ "Beed, Maharashtra, India"
456
+ ]
457
+ },
458
+ "Begusarai||Bihar": {
459
+ "lat": 25.5125411,
460
+ "lon": 86.0883392,
461
+ "area_km2": 4566.8,
462
+ "state_geocoded": "Bihar",
463
+ "confidence": "high",
464
+ "num_candidates": 3,
465
+ "alt_states": "",
466
+ "queries": [
467
+ "Begusarai, Bihar, India"
468
+ ]
469
+ },
470
+ "Belapur||Maharashtra": {
471
+ "lat": 19.6197639,
472
+ "lon": 74.6599008,
473
+ "area_km2": 1.2,
474
+ "state_geocoded": "Maharashtra",
475
+ "confidence": "high",
476
+ "num_candidates": 5,
477
+ "alt_states": "",
478
+ "queries": [
479
+ "Belapur, Maharashtra, India"
480
+ ]
481
+ },
482
+ "Belgaum||Karnataka": {
483
+ "lat": 15.8572666,
484
+ "lon": 74.5069343,
485
+ "area_km2": 1213.7,
486
+ "state_geocoded": "Karnataka",
487
+ "confidence": "high",
488
+ "num_candidates": 1,
489
+ "alt_states": "",
490
+ "queries": [
491
+ "Belgaum, Karnataka, India"
492
+ ]
493
+ },
494
+ "Bengaluru||Karnataka": {
495
+ "lat": 12.9767936,
496
+ "lon": 77.590082,
497
+ "area_km2": 1203.2,
498
+ "state_geocoded": "Karnataka",
499
+ "confidence": "high",
500
+ "num_candidates": 1,
501
+ "alt_states": "",
502
+ "queries": [
503
+ "Bengaluru, Karnataka, India"
504
+ ]
505
+ },
506
+ "Bettiah||Bihar": {
507
+ "lat": 26.8023,
508
+ "lon": 84.5074,
509
+ "area_km2": 1126.1,
510
+ "state_geocoded": "Bihar",
511
+ "confidence": "high",
512
+ "num_candidates": 2,
513
+ "alt_states": "",
514
+ "queries": [
515
+ "Bettiah, Bihar, India"
516
+ ]
517
+ },
518
+ "Bhagalpur||Bihar": {
519
+ "lat": 25.2861354,
520
+ "lon": 87.1304229,
521
+ "area_km2": 4669.7,
522
+ "state_geocoded": "Bihar",
523
+ "confidence": "high",
524
+ "num_candidates": 3,
525
+ "alt_states": "",
526
+ "queries": [
527
+ "Bhagalpur, Bihar, India"
528
+ ]
529
+ },
530
+ "Bharatpur||Rajasthan": {
531
+ "lat": 27.0246959,
532
+ "lon": 77.2920116,
533
+ "area_km2": 5636.5,
534
+ "state_geocoded": "Rajasthan",
535
+ "confidence": "high",
536
+ "num_candidates": 2,
537
+ "alt_states": "",
538
+ "queries": [
539
+ "Bharatpur, Rajasthan, India"
540
+ ]
541
+ },
542
+ "Bhavnagar||Gujarat": {
543
+ "lat": 21.7718836,
544
+ "lon": 72.1416449,
545
+ "area_km2": 1171.7,
546
+ "state_geocoded": "Gujarat",
547
+ "confidence": "high",
548
+ "num_candidates": 3,
549
+ "alt_states": "",
550
+ "queries": [
551
+ "Bhavnagar, Gujarat, India"
552
+ ]
553
+ },
554
+ "Bhilai||Bihar": {
555
+ "lat": 21.2120677,
556
+ "lon": 81.3732849,
557
+ "area_km2": 1176.2,
558
+ "state_geocoded": "Chhattisgarh",
559
+ "confidence": "low_ambiguous",
560
+ "num_candidates": 5,
561
+ "alt_states": "Madhya Pradesh",
562
+ "queries": [
563
+ "Bhilai, Bihar, India",
564
+ "Bhilai, India"
565
+ ]
566
+ },
567
+ "Bhilwara||Rajasthan": {
568
+ "lat": 25.470994,
569
+ "lon": 74.6961316,
570
+ "area_km2": 14724.6,
571
+ "state_geocoded": "Rajasthan",
572
+ "confidence": "high",
573
+ "num_candidates": 3,
574
+ "alt_states": "",
575
+ "queries": [
576
+ "Bhilwara, Rajasthan, India"
577
+ ]
578
+ },
579
+ "Bhiwadi||Rajasthan": {
580
+ "lat": 28.2039413,
581
+ "lon": 76.837441,
582
+ "area_km2": 1111.9,
583
+ "state_geocoded": "Rajasthan",
584
+ "confidence": "high",
585
+ "num_candidates": 1,
586
+ "alt_states": "",
587
+ "queries": [
588
+ "Bhiwadi, Rajasthan, India"
589
+ ]
590
+ },
591
+ "Bhiwandi||Maharashtra": {
592
+ "lat": 19.3025562,
593
+ "lon": 73.0588072,
594
+ "area_km2": 19.6,
595
+ "state_geocoded": "Maharashtra",
596
+ "confidence": "high",
597
+ "num_candidates": 1,
598
+ "alt_states": "",
599
+ "queries": [
600
+ "Bhiwandi, Maharashtra, India"
601
+ ]
602
+ },
603
+ "Bhiwani||Haryana": {
604
+ "lat": 28.7931703,
605
+ "lon": 76.1391283,
606
+ "area_km2": 1105.7,
607
+ "state_geocoded": "Haryana",
608
+ "confidence": "high",
609
+ "num_candidates": 3,
610
+ "alt_states": "",
611
+ "queries": [
612
+ "Bhiwani, Haryana, India"
613
+ ]
614
+ },
615
+ "Bhopal||Madhya Pradesh": {
616
+ "lat": 23.2584857,
617
+ "lon": 77.401989,
618
+ "area_km2": 1159.1,
619
+ "state_geocoded": "Madhya Pradesh",
620
+ "confidence": "high",
621
+ "num_candidates": 3,
622
+ "alt_states": "",
623
+ "queries": [
624
+ "Bhopal, Madhya Pradesh, India"
625
+ ]
626
+ },
627
+ "Bhubaneswar||Odisha": {
628
+ "lat": 20.2602964,
629
+ "lon": 85.8394521,
630
+ "area_km2": 1183.6,
631
+ "state_geocoded": "Odisha",
632
+ "confidence": "high",
633
+ "num_candidates": 2,
634
+ "alt_states": "",
635
+ "queries": [
636
+ "Bhubaneswar, Odisha, India"
637
+ ]
638
+ },
639
+ "Bidar||Karnataka": {
640
+ "lat": 18.0207297,
641
+ "lon": 77.2487204,
642
+ "area_km2": 10114.5,
643
+ "state_geocoded": "Karnataka",
644
+ "confidence": "high",
645
+ "num_candidates": 4,
646
+ "alt_states": "",
647
+ "queries": [
648
+ "Bidar, Karnataka, India"
649
+ ]
650
+ },
651
+ "Bihar Sharif||Bihar": {
652
+ "lat": 25.193859,
653
+ "lon": 85.5208617,
654
+ "area_km2": 1141.7,
655
+ "state_geocoded": "Bihar",
656
+ "confidence": "high",
657
+ "num_candidates": 1,
658
+ "alt_states": "",
659
+ "queries": [
660
+ "Bihar Sharif, Bihar, India"
661
+ ]
662
+ },
663
+ "Bikaner||Rajasthan": {
664
+ "lat": 28.0159286,
665
+ "lon": 73.3171367,
666
+ "area_km2": 1113.8,
667
+ "state_geocoded": "Rajasthan",
668
+ "confidence": "high",
669
+ "num_candidates": 3,
670
+ "alt_states": "",
671
+ "queries": [
672
+ "Bikaner, Rajasthan, India"
673
+ ]
674
+ },
675
+ "Bilaspur||Bihar": {
676
+ "lat": 22.1638486,
677
+ "lon": 82.1365923,
678
+ "area_km2": 7663.6,
679
+ "state_geocoded": "Chhattisgarh",
680
+ "confidence": "low_ambiguous",
681
+ "num_candidates": 5,
682
+ "alt_states": "Haryana, Himachal Pradesh, Uttar Pradesh",
683
+ "queries": [
684
+ "Bilaspur, Bihar, India",
685
+ "Bilaspur, India"
686
+ ]
687
+ },
688
+ "Bileipada||Odisha": {
689
+ "lat": null,
690
+ "lon": null,
691
+ "area_km2": null,
692
+ "state_geocoded": null,
693
+ "confidence": "not_found",
694
+ "num_candidates": 0,
695
+ "alt_states": "",
696
+ "queries": [
697
+ "Bileipada, Odisha, India",
698
+ "Bileipada, India"
699
+ ]
700
+ },
701
+ "Boisar||Maharashtra": {
702
+ "lat": 19.7984865,
703
+ "lon": 72.761452,
704
+ "area_km2": 1.2,
705
+ "state_geocoded": "Maharashtra",
706
+ "confidence": "high",
707
+ "num_candidates": 2,
708
+ "alt_states": "",
709
+ "queries": [
710
+ "Boisar, Maharashtra, India"
711
+ ]
712
+ },
713
+ "Brajrajnagar||Odisha": {
714
+ "lat": 21.8498594,
715
+ "lon": 83.9254698,
716
+ "area_km2": 0.0,
717
+ "state_geocoded": "Odisha",
718
+ "confidence": "high",
719
+ "num_candidates": 1,
720
+ "alt_states": "",
721
+ "queries": [
722
+ "Brajrajnagar, Odisha, India"
723
+ ]
724
+ },
725
+ "Bulandshahr||Uttar Pradesh": {
726
+ "lat": 28.3874073,
727
+ "lon": 77.9743805,
728
+ "area_km2": 6087.2,
729
+ "state_geocoded": "Uttar Pradesh",
730
+ "confidence": "high",
731
+ "num_candidates": 3,
732
+ "alt_states": "",
733
+ "queries": [
734
+ "Bulandshahr, Uttar Pradesh, India"
735
+ ]
736
+ },
737
+ "Bundi||Rajasthan": {
738
+ "lat": 25.4367659,
739
+ "lon": 75.7361471,
740
+ "area_km2": 10812.6,
741
+ "state_geocoded": "Rajasthan",
742
+ "confidence": "high",
743
+ "num_candidates": 3,
744
+ "alt_states": "",
745
+ "queries": [
746
+ "Bundi, Rajasthan, India"
747
+ ]
748
+ },
749
+ "Buxar||Bihar": {
750
+ "lat": 25.5044834,
751
+ "lon": 84.1097525,
752
+ "area_km2": 3356.6,
753
+ "state_geocoded": "Bihar",
754
+ "confidence": "high",
755
+ "num_candidates": 2,
756
+ "alt_states": "",
757
+ "queries": [
758
+ "Buxar, Bihar, India"
759
+ ]
760
+ },
761
+ "Byasanagar||Odisha": {
762
+ "lat": 20.9587602,
763
+ "lon": 86.1226688,
764
+ "area_km2": 73.6,
765
+ "state_geocoded": "Odisha",
766
+ "confidence": "high",
767
+ "num_candidates": 1,
768
+ "alt_states": "",
769
+ "queries": [
770
+ "Byasanagar, Odisha, India"
771
+ ]
772
+ },
773
+ "Byrnihat||Assam": {
774
+ "lat": 26.0543348,
775
+ "lon": 91.8696498,
776
+ "area_km2": 70.8,
777
+ "state_geocoded": "Meghalaya",
778
+ "confidence": "medium_state_mismatch",
779
+ "num_candidates": 1,
780
+ "alt_states": "",
781
+ "queries": [
782
+ "Byrnihat, Assam, India",
783
+ "Byrnihat, India"
784
+ ]
785
+ },
786
+ "Chamarajanagar||Karnataka": {
787
+ "lat": 11.9544201,
788
+ "lon": 77.1069086,
789
+ "area_km2": 11937.6,
790
+ "state_geocoded": "Karnataka",
791
+ "confidence": "high",
792
+ "num_candidates": 1,
793
+ "alt_states": "",
794
+ "queries": [
795
+ "Chamarajanagar, Karnataka, India"
796
+ ]
797
+ },
798
+ "Chandigarh||Bihar": {
799
+ "lat": 25.2236764,
800
+ "lon": 84.2648505,
801
+ "area_km2": 0.0,
802
+ "state_geocoded": "Bihar",
803
+ "confidence": "high",
804
+ "num_candidates": 1,
805
+ "alt_states": "",
806
+ "queries": [
807
+ "Chandigarh, Bihar, India"
808
+ ]
809
+ },
810
+ "Chandrapur||Maharashtra": {
811
+ "lat": 20.0967555,
812
+ "lon": 79.5045475,
813
+ "area_km2": 17568.0,
814
+ "state_geocoded": "Maharashtra",
815
+ "confidence": "high",
816
+ "num_candidates": 4,
817
+ "alt_states": "",
818
+ "queries": [
819
+ "Chandrapur, Maharashtra, India"
820
+ ]
821
+ },
822
+ "Charkhi Dadri||Haryana": {
823
+ "lat": 28.6000997,
824
+ "lon": 76.1123707,
825
+ "area_km2": 3014.8,
826
+ "state_geocoded": "Haryana",
827
+ "confidence": "high",
828
+ "num_candidates": 2,
829
+ "alt_states": "",
830
+ "queries": [
831
+ "Charkhi Dadri, Haryana, India"
832
+ ]
833
+ },
834
+ "Chengalpattu||Tamil Nadu": {
835
+ "lat": 12.6840886,
836
+ "lon": 79.9836371,
837
+ "area_km2": 76.9,
838
+ "state_geocoded": "Tamil Nadu",
839
+ "confidence": "high",
840
+ "num_candidates": 3,
841
+ "alt_states": "",
842
+ "queries": [
843
+ "Chengalpattu, Tamil Nadu, India"
844
+ ]
845
+ },
846
+ "Chennai||Tamil Nadu": {
847
+ "lat": 13.0836939,
848
+ "lon": 80.270186,
849
+ "area_km2": 886.3,
850
+ "state_geocoded": "Tamil Nadu",
851
+ "confidence": "high",
852
+ "num_candidates": 2,
853
+ "alt_states": "",
854
+ "queries": [
855
+ "Chennai, Tamil Nadu, India"
856
+ ]
857
+ },
858
+ "Chhal||Bihar": {
859
+ "lat": 31.1164614,
860
+ "lon": 77.5286293,
861
+ "area_km2": 16.9,
862
+ "state_geocoded": "Himachal Pradesh",
863
+ "confidence": "medium_state_mismatch",
864
+ "num_candidates": 1,
865
+ "alt_states": "",
866
+ "queries": [
867
+ "Chhal, Bihar, India",
868
+ "Chhal, India"
869
+ ]
870
+ },
871
+ "Chhapra||Bihar": {
872
+ "lat": 25.7733443,
873
+ "lon": 84.7849772,
874
+ "area_km2": 442.8,
875
+ "state_geocoded": "Bihar",
876
+ "confidence": "high",
877
+ "num_candidates": 2,
878
+ "alt_states": "",
879
+ "queries": [
880
+ "Chhapra, Bihar, India"
881
+ ]
882
+ },
883
+ "Chikkaballapur||Karnataka": {
884
+ "lat": 13.0993764,
885
+ "lon": 77.388729,
886
+ "area_km2": 0.1,
887
+ "state_geocoded": "Karnataka",
888
+ "confidence": "high",
889
+ "num_candidates": 4,
890
+ "alt_states": "",
891
+ "queries": [
892
+ "Chikkaballapur, Karnataka, India"
893
+ ]
894
+ },
895
+ "Chikkamagaluru||Karnataka": {
896
+ "lat": 13.4058699,
897
+ "lon": 75.638758,
898
+ "area_km2": 15198.6,
899
+ "state_geocoded": "Karnataka",
900
+ "confidence": "high",
901
+ "num_candidates": 3,
902
+ "alt_states": "",
903
+ "queries": [
904
+ "Chikkamagaluru, Karnataka, India"
905
+ ]
906
+ },
907
+ "Chittoor||Andhra Pradesh": {
908
+ "lat": 13.325036,
909
+ "lon": 79.6480611,
910
+ "area_km2": 22163.3,
911
+ "state_geocoded": "Andhra Pradesh",
912
+ "confidence": "high",
913
+ "num_candidates": 3,
914
+ "alt_states": "",
915
+ "queries": [
916
+ "Chittoor, Andhra Pradesh, India"
917
+ ]
918
+ },
919
+ "Chittorgarh||Rajasthan": {
920
+ "lat": 24.7171578,
921
+ "lon": 74.4718129,
922
+ "area_km2": 19089.7,
923
+ "state_geocoded": "Rajasthan",
924
+ "confidence": "high",
925
+ "num_candidates": 2,
926
+ "alt_states": "",
927
+ "queries": [
928
+ "Chittorgarh, Rajasthan, India"
929
+ ]
930
+ },
931
+ "Churu||Rajasthan": {
932
+ "lat": 28.2047781,
933
+ "lon": 74.6912996,
934
+ "area_km2": 31252.1,
935
+ "state_geocoded": "Rajasthan",
936
+ "confidence": "high",
937
+ "num_candidates": 3,
938
+ "alt_states": "",
939
+ "queries": [
940
+ "Churu, Rajasthan, India"
941
+ ]
942
+ },
943
+ "Coimbatore||Tamil Nadu": {
944
+ "lat": 11.0018115,
945
+ "lon": 76.9628425,
946
+ "area_km2": 1238.5,
947
+ "state_geocoded": "Tamil Nadu",
948
+ "confidence": "high",
949
+ "num_candidates": 2,
950
+ "alt_states": "",
951
+ "queries": [
952
+ "Coimbatore, Tamil Nadu, India"
953
+ ]
954
+ },
955
+ "Cuddalore||Tamil Nadu": {
956
+ "lat": 11.5202071,
957
+ "lon": 79.3396356,
958
+ "area_km2": 8510.5,
959
+ "state_geocoded": "Tamil Nadu",
960
+ "confidence": "high",
961
+ "num_candidates": 4,
962
+ "alt_states": "",
963
+ "queries": [
964
+ "Cuddalore, Tamil Nadu, India"
965
+ ]
966
+ },
967
+ "Cuttack||Odisha": {
968
+ "lat": 20.4686,
969
+ "lon": 85.8792,
970
+ "area_km2": 1182.0,
971
+ "state_geocoded": "Odisha",
972
+ "confidence": "high",
973
+ "num_candidates": 2,
974
+ "alt_states": "",
975
+ "queries": [
976
+ "Cuttack, Odisha, India"
977
+ ]
978
+ },
979
+ "DU Delhi||Delhi": {
980
+ "lat": null,
981
+ "lon": null,
982
+ "area_km2": null,
983
+ "state_geocoded": null,
984
+ "confidence": "not_found",
985
+ "num_candidates": 0,
986
+ "alt_states": "",
987
+ "queries": [
988
+ "DU Delhi, Delhi, India",
989
+ "DU Delhi, India"
990
+ ]
991
+ },
992
+ "Damoh||Madhya Pradesh": {
993
+ "lat": 23.7981005,
994
+ "lon": 79.5419356,
995
+ "area_km2": 13153.7,
996
+ "state_geocoded": "Madhya Pradesh",
997
+ "confidence": "high",
998
+ "num_candidates": 3,
999
+ "alt_states": "",
1000
+ "queries": [
1001
+ "Damoh, Madhya Pradesh, India"
1002
+ ]
1003
+ },
1004
+ "Darbhanga||Bihar": {
1005
+ "lat": 26.0829899,
1006
+ "lon": 86.0324951,
1007
+ "area_km2": 5947.9,
1008
+ "state_geocoded": "Bihar",
1009
+ "confidence": "high",
1010
+ "num_candidates": 3,
1011
+ "alt_states": "",
1012
+ "queries": [
1013
+ "Darbhanga, Bihar, India"
1014
+ ]
1015
+ },
1016
+ "Dausa||Rajasthan": {
1017
+ "lat": 26.8048659,
1018
+ "lon": 76.4437457,
1019
+ "area_km2": 8722.9,
1020
+ "state_geocoded": "Rajasthan",
1021
+ "confidence": "high",
1022
+ "num_candidates": 1,
1023
+ "alt_states": "",
1024
+ "queries": [
1025
+ "Dausa, Rajasthan, India"
1026
+ ]
1027
+ },
1028
+ "Davanagere||Karnataka": {
1029
+ "lat": 14.2558835,
1030
+ "lon": 75.8303421,
1031
+ "area_km2": 12185.1,
1032
+ "state_geocoded": "Karnataka",
1033
+ "confidence": "high",
1034
+ "num_candidates": 2,
1035
+ "alt_states": "",
1036
+ "queries": [
1037
+ "Davanagere, Karnataka, India"
1038
+ ]
1039
+ },
1040
+ "Dehradun||Uttarakhand": {
1041
+ "lat": 30.3255646,
1042
+ "lon": 78.0436813,
1043
+ "area_km2": 1089.0,
1044
+ "state_geocoded": "Uttarakhand",
1045
+ "confidence": "high",
1046
+ "num_candidates": 3,
1047
+ "alt_states": "",
1048
+ "queries": [
1049
+ "Dehradun, Uttarakhand, India"
1050
+ ]
1051
+ },
1052
+ "Delhi||Delhi": {
1053
+ "lat": 28.6138954,
1054
+ "lon": 77.2090057,
1055
+ "area_km2": 364.4,
1056
+ "state_geocoded": null,
1057
+ "confidence": "medium_state_mismatch",
1058
+ "num_candidates": 1,
1059
+ "alt_states": "",
1060
+ "queries": [
1061
+ "Delhi, Delhi, India"
1062
+ ]
1063
+ },
1064
+ "Dewas||Madhya Pradesh": {
1065
+ "lat": 22.8057498,
1066
+ "lon": 76.2940408,
1067
+ "area_km2": 14481.2,
1068
+ "state_geocoded": "Madhya Pradesh",
1069
+ "confidence": "high",
1070
+ "num_candidates": 3,
1071
+ "alt_states": "",
1072
+ "queries": [
1073
+ "Dewas, Madhya Pradesh, India"
1074
+ ]
1075
+ },
1076
+ "Dhanbad||Jharkhand": {
1077
+ "lat": 23.7952809,
1078
+ "lon": 86.4309638,
1079
+ "area_km2": 1154.4,
1080
+ "state_geocoded": "Jharkhand",
1081
+ "confidence": "high",
1082
+ "num_candidates": 2,
1083
+ "alt_states": "",
1084
+ "queries": [
1085
+ "Dhanbad, Jharkhand, India"
1086
+ ]
1087
+ },
1088
+ "Dharuhera||Haryana": {
1089
+ "lat": 28.2055216,
1090
+ "lon": 76.7953099,
1091
+ "area_km2": 69.5,
1092
+ "state_geocoded": "Haryana",
1093
+ "confidence": "high",
1094
+ "num_candidates": 1,
1095
+ "alt_states": "",
1096
+ "queries": [
1097
+ "Dharuhera, Haryana, India"
1098
+ ]
1099
+ },
1100
+ "Dharwad||Karnataka": {
1101
+ "lat": 15.3707296,
1102
+ "lon": 75.1332867,
1103
+ "area_km2": 6523.3,
1104
+ "state_geocoded": "Karnataka",
1105
+ "confidence": "high",
1106
+ "num_candidates": 2,
1107
+ "alt_states": "",
1108
+ "queries": [
1109
+ "Dharwad, Karnataka, India"
1110
+ ]
1111
+ },
1112
+ "Dholpur||Rajasthan": {
1113
+ "lat": 26.7010642,
1114
+ "lon": 77.896749,
1115
+ "area_km2": 1127.1,
1116
+ "state_geocoded": "Rajasthan",
1117
+ "confidence": "high",
1118
+ "num_candidates": 1,
1119
+ "alt_states": "",
1120
+ "queries": [
1121
+ "Dholpur, Rajasthan, India"
1122
+ ]
1123
+ },
1124
+ "Dhule||Maharashtra": {
1125
+ "lat": 21.1305215,
1126
+ "lon": 74.4900614,
1127
+ "area_km2": 15692.3,
1128
+ "state_geocoded": "Maharashtra",
1129
+ "confidence": "high",
1130
+ "num_candidates": 2,
1131
+ "alt_states": "",
1132
+ "queries": [
1133
+ "Dhule, Maharashtra, India"
1134
+ ]
1135
+ },
1136
+ "Dilshad Garden Delhi||Delhi": {
1137
+ "lat": 28.678087,
1138
+ "lon": 77.3091432,
1139
+ "area_km2": 0.0,
1140
+ "state_geocoded": null,
1141
+ "confidence": "medium_state_mismatch",
1142
+ "num_candidates": 5,
1143
+ "alt_states": "",
1144
+ "queries": [
1145
+ "Dilshad Garden Delhi, Delhi, India"
1146
+ ]
1147
+ },
1148
+ "Dindigul||Tamil Nadu": {
1149
+ "lat": 10.4256896,
1150
+ "lon": 77.815664,
1151
+ "area_km2": 10614.6,
1152
+ "state_geocoded": "Tamil Nadu",
1153
+ "confidence": "high",
1154
+ "num_candidates": 3,
1155
+ "alt_states": "",
1156
+ "queries": [
1157
+ "Dindigul, Tamil Nadu, India"
1158
+ ]
1159
+ },
1160
+ "Dombivli||Maharashtra": {
1161
+ "lat": 19.2148599,
1162
+ "lon": 73.0910271,
1163
+ "area_km2": 18.6,
1164
+ "state_geocoded": "Maharashtra",
1165
+ "confidence": "high",
1166
+ "num_candidates": 2,
1167
+ "alt_states": "",
1168
+ "queries": [
1169
+ "Dombivli, Maharashtra, India"
1170
+ ]
1171
+ },
1172
+ "Dungarpur||Rajasthan": {
1173
+ "lat": 23.8538893,
1174
+ "lon": 73.7087177,
1175
+ "area_km2": 72.1,
1176
+ "state_geocoded": "Rajasthan",
1177
+ "confidence": "high",
1178
+ "num_candidates": 3,
1179
+ "alt_states": "",
1180
+ "queries": [
1181
+ "Dungarpur, Rajasthan, India"
1182
+ ]
1183
+ },
1184
+ "Durgapur||West Bengal": {
1185
+ "lat": 23.5350475,
1186
+ "lon": 87.3380425,
1187
+ "area_km2": 1156.7,
1188
+ "state_geocoded": "West Bengal",
1189
+ "confidence": "high",
1190
+ "num_candidates": 5,
1191
+ "alt_states": "",
1192
+ "queries": [
1193
+ "Durgapur, West Bengal, India"
1194
+ ]
1195
+ },
1196
+ "Eloor||Kerala": {
1197
+ "lat": 10.0669964,
1198
+ "lon": 76.2989276,
1199
+ "area_km2": 19.4,
1200
+ "state_geocoded": "Kerala",
1201
+ "confidence": "high",
1202
+ "num_candidates": 1,
1203
+ "alt_states": "",
1204
+ "queries": [
1205
+ "Eloor, Kerala, India"
1206
+ ]
1207
+ },
1208
+ "Eluru||Andhra Pradesh": {
1209
+ "lat": 16.7104257,
1210
+ "lon": 81.1153816,
1211
+ "area_km2": 1208.4,
1212
+ "state_geocoded": "Andhra Pradesh",
1213
+ "confidence": "high",
1214
+ "num_candidates": 3,
1215
+ "alt_states": "",
1216
+ "queries": [
1217
+ "Eluru, Andhra Pradesh, India"
1218
+ ]
1219
+ },
1220
+ "Ernakulam||Kerala": {
1221
+ "lat": 9.9837257,
1222
+ "lon": 76.2740001,
1223
+ "area_km2": 1242.6,
1224
+ "state_geocoded": "Kerala",
1225
+ "confidence": "high",
1226
+ "num_candidates": 2,
1227
+ "alt_states": "",
1228
+ "queries": [
1229
+ "Ernakulam, Kerala, India"
1230
+ ]
1231
+ },
1232
+ "Faridabad||Haryana": {
1233
+ "lat": 28.4031478,
1234
+ "lon": 77.3105561,
1235
+ "area_km2": 1109.8,
1236
+ "state_geocoded": "Haryana",
1237
+ "confidence": "high",
1238
+ "num_candidates": 3,
1239
+ "alt_states": "",
1240
+ "queries": [
1241
+ "Faridabad, Haryana, India"
1242
+ ]
1243
+ },
1244
+ "Fatehabad||Haryana": {
1245
+ "lat": 29.5359209,
1246
+ "lon": 75.5752901,
1247
+ "area_km2": 4583.1,
1248
+ "state_geocoded": "Haryana",
1249
+ "confidence": "high",
1250
+ "num_candidates": 2,
1251
+ "alt_states": "",
1252
+ "queries": [
1253
+ "Fatehabad, Haryana, India"
1254
+ ]
1255
+ },
1256
+ "Firozabad||Uttar Pradesh": {
1257
+ "lat": 27.1941954,
1258
+ "lon": 78.4604956,
1259
+ "area_km2": 4352.4,
1260
+ "state_geocoded": "Uttar Pradesh",
1261
+ "confidence": "high",
1262
+ "num_candidates": 3,
1263
+ "alt_states": "",
1264
+ "queries": [
1265
+ "Firozabad, Uttar Pradesh, India"
1266
+ ]
1267
+ },
1268
+ "Gadag||Karnataka": {
1269
+ "lat": 15.416692,
1270
+ "lon": 75.6815801,
1271
+ "area_km2": 8643.9,
1272
+ "state_geocoded": "Karnataka",
1273
+ "confidence": "high",
1274
+ "num_candidates": 1,
1275
+ "alt_states": "",
1276
+ "queries": [
1277
+ "Gadag, Karnataka, India"
1278
+ ]
1279
+ },
1280
+ "Gandhinagar||Gujarat": {
1281
+ "lat": 23.2232877,
1282
+ "lon": 72.6492267,
1283
+ "area_km2": 109.7,
1284
+ "state_geocoded": "Gujarat",
1285
+ "confidence": "high",
1286
+ "num_candidates": 2,
1287
+ "alt_states": "",
1288
+ "queries": [
1289
+ "Gandhinagar, Gujarat, India"
1290
+ ]
1291
+ },
1292
+ "Gangtok||Sikkim": {
1293
+ "lat": 27.329046,
1294
+ "lon": 88.6122673,
1295
+ "area_km2": 1120.8,
1296
+ "state_geocoded": "Sikkim",
1297
+ "confidence": "high",
1298
+ "num_candidates": 2,
1299
+ "alt_states": "",
1300
+ "queries": [
1301
+ "Gangtok, Sikkim, India"
1302
+ ]
1303
+ },
1304
+ "Gaya||Bihar": {
1305
+ "lat": 24.7964355,
1306
+ "lon": 85.0079563,
1307
+ "area_km2": 1145.3,
1308
+ "state_geocoded": "Bihar",
1309
+ "confidence": "high",
1310
+ "num_candidates": 2,
1311
+ "alt_states": "",
1312
+ "queries": [
1313
+ "Gaya, Bihar, India"
1314
+ ]
1315
+ },
1316
+ "Ghaziabad||Uttar Pradesh": {
1317
+ "lat": 28.7749966,
1318
+ "lon": 77.4586967,
1319
+ "area_km2": 1684.1,
1320
+ "state_geocoded": "Uttar Pradesh",
1321
+ "confidence": "high",
1322
+ "num_candidates": 3,
1323
+ "alt_states": "",
1324
+ "queries": [
1325
+ "Ghaziabad, Uttar Pradesh, India"
1326
+ ]
1327
+ },
1328
+ "Gorakhpur||Uttar Pradesh": {
1329
+ "lat": 26.6677977,
1330
+ "lon": 83.3642334,
1331
+ "area_km2": 5967.0,
1332
+ "state_geocoded": "Uttar Pradesh",
1333
+ "confidence": "high",
1334
+ "num_candidates": 4,
1335
+ "alt_states": "",
1336
+ "queries": [
1337
+ "Gorakhpur, Uttar Pradesh, India"
1338
+ ]
1339
+ },
1340
+ "Greater Noida||Uttar Pradesh": {
1341
+ "lat": 28.4670734,
1342
+ "lon": 77.5137649,
1343
+ "area_km2": 1109.1,
1344
+ "state_geocoded": "Uttar Pradesh",
1345
+ "confidence": "high",
1346
+ "num_candidates": 1,
1347
+ "alt_states": "",
1348
+ "queries": [
1349
+ "Greater Noida, Uttar Pradesh, India"
1350
+ ]
1351
+ },
1352
+ "Gummidipoondi||Tamil Nadu": {
1353
+ "lat": 13.4308848,
1354
+ "lon": 80.0821379,
1355
+ "area_km2": 756.9,
1356
+ "state_geocoded": "Tamil Nadu",
1357
+ "confidence": "high",
1358
+ "num_candidates": 2,
1359
+ "alt_states": "",
1360
+ "queries": [
1361
+ "Gummidipoondi, Tamil Nadu, India"
1362
+ ]
1363
+ },
1364
+ "Gurugram||Haryana": {
1365
+ "lat": 28.4646148,
1366
+ "lon": 77.0299194,
1367
+ "area_km2": 2180.0,
1368
+ "state_geocoded": "Haryana",
1369
+ "confidence": "high",
1370
+ "num_candidates": 1,
1371
+ "alt_states": "",
1372
+ "queries": [
1373
+ "Gurugram, Haryana, India"
1374
+ ]
1375
+ },
1376
+ "Guwahati||Assam": {
1377
+ "lat": 26.1805978,
1378
+ "lon": 91.753943,
1379
+ "area_km2": 1132.2,
1380
+ "state_geocoded": "Assam",
1381
+ "confidence": "high",
1382
+ "num_candidates": 2,
1383
+ "alt_states": "",
1384
+ "queries": [
1385
+ "Guwahati, Assam, India"
1386
+ ]
1387
+ },
1388
+ "Gwalior||Madhya Pradesh": {
1389
+ "lat": 26.2037247,
1390
+ "lon": 78.1573628,
1391
+ "area_km2": 1132.0,
1392
+ "state_geocoded": "Madhya Pradesh",
1393
+ "confidence": "high",
1394
+ "num_candidates": 3,
1395
+ "alt_states": "",
1396
+ "queries": [
1397
+ "Gwalior, Madhya Pradesh, India"
1398
+ ]
1399
+ },
1400
+ "Hajipur||Bihar": {
1401
+ "lat": 25.6905702,
1402
+ "lon": 85.2090351,
1403
+ "area_km2": 1137.0,
1404
+ "state_geocoded": "Bihar",
1405
+ "confidence": "high",
1406
+ "num_candidates": 3,
1407
+ "alt_states": "",
1408
+ "queries": [
1409
+ "Hajipur, Bihar, India"
1410
+ ]
1411
+ },
1412
+ "Haldia||West Bengal": {
1413
+ "lat": 22.028124,
1414
+ "lon": 88.0632655,
1415
+ "area_km2": 1169.6,
1416
+ "state_geocoded": "West Bengal",
1417
+ "confidence": "high",
1418
+ "num_candidates": 2,
1419
+ "alt_states": "",
1420
+ "queries": [
1421
+ "Haldia, West Bengal, India"
1422
+ ]
1423
+ },
1424
+ "Hanumangarh||Rajasthan": {
1425
+ "lat": 29.3659533,
1426
+ "lon": 74.298429,
1427
+ "area_km2": 21472.8,
1428
+ "state_geocoded": "Rajasthan",
1429
+ "confidence": "high",
1430
+ "num_candidates": 3,
1431
+ "alt_states": "",
1432
+ "queries": [
1433
+ "Hanumangarh, Rajasthan, India"
1434
+ ]
1435
+ },
1436
+ "Hapur||Uttar Pradesh": {
1437
+ "lat": 28.7166767,
1438
+ "lon": 77.890433,
1439
+ "area_km2": 2412.4,
1440
+ "state_geocoded": "Uttar Pradesh",
1441
+ "confidence": "high",
1442
+ "num_candidates": 2,
1443
+ "alt_states": "",
1444
+ "queries": [
1445
+ "Hapur, Uttar Pradesh, India"
1446
+ ]
1447
+ },
1448
+ "Hassan||Karnataka": {
1449
+ "lat": 13.0301852,
1450
+ "lon": 76.1744968,
1451
+ "area_km2": 13415.1,
1452
+ "state_geocoded": "Karnataka",
1453
+ "confidence": "high",
1454
+ "num_candidates": 2,
1455
+ "alt_states": "",
1456
+ "queries": [
1457
+ "Hassan, Karnataka, India"
1458
+ ]
1459
+ },
1460
+ "Haveri||Karnataka": {
1461
+ "lat": 14.7180268,
1462
+ "lon": 75.3656423,
1463
+ "area_km2": 8515.4,
1464
+ "state_geocoded": "Karnataka",
1465
+ "confidence": "high",
1466
+ "num_candidates": 1,
1467
+ "alt_states": "",
1468
+ "queries": [
1469
+ "Haveri, Karnataka, India"
1470
+ ]
1471
+ },
1472
+ "Hingoli||Maharashtra": {
1473
+ "lat": 19.5431163,
1474
+ "lon": 77.1739432,
1475
+ "area_km2": 10788.8,
1476
+ "state_geocoded": "Maharashtra",
1477
+ "confidence": "high",
1478
+ "num_candidates": 2,
1479
+ "alt_states": "",
1480
+ "queries": [
1481
+ "Hingoli, Maharashtra, India"
1482
+ ]
1483
+ },
1484
+ "Hisar||Haryana": {
1485
+ "lat": 29.2396596,
1486
+ "lon": 75.8174505,
1487
+ "area_km2": 7256.8,
1488
+ "state_geocoded": "Haryana",
1489
+ "confidence": "high",
1490
+ "num_candidates": 3,
1491
+ "alt_states": "",
1492
+ "queries": [
1493
+ "Hisar, Haryana, India"
1494
+ ]
1495
+ },
1496
+ "Hosur||Tamil Nadu": {
1497
+ "lat": 12.7183361,
1498
+ "lon": 77.8229481,
1499
+ "area_km2": 1.2,
1500
+ "state_geocoded": "Tamil Nadu",
1501
+ "confidence": "high",
1502
+ "num_candidates": 3,
1503
+ "alt_states": "",
1504
+ "queries": [
1505
+ "Hosur, Tamil Nadu, India"
1506
+ ]
1507
+ },
1508
+ "Howrah||West Bengal": {
1509
+ "lat": 22.5736296,
1510
+ "lon": 88.3251045,
1511
+ "area_km2": 100.3,
1512
+ "state_geocoded": "West Bengal",
1513
+ "confidence": "high",
1514
+ "num_candidates": 2,
1515
+ "alt_states": "",
1516
+ "queries": [
1517
+ "Howrah, West Bengal, India"
1518
+ ]
1519
+ },
1520
+ "Hubballi||Karnataka": {
1521
+ "lat": 15.3518378,
1522
+ "lon": 75.1379848,
1523
+ "area_km2": 1216.7,
1524
+ "state_geocoded": "Karnataka",
1525
+ "confidence": "high",
1526
+ "num_candidates": 1,
1527
+ "alt_states": "",
1528
+ "queries": [
1529
+ "Hubballi, Karnataka, India"
1530
+ ]
1531
+ },
1532
+ "Hyderabad||Telangana": {
1533
+ "lat": 17.360589,
1534
+ "lon": 78.4740613,
1535
+ "area_km2": 1214.2,
1536
+ "state_geocoded": "Telangana",
1537
+ "confidence": "high",
1538
+ "num_candidates": 2,
1539
+ "alt_states": "",
1540
+ "queries": [
1541
+ "Hyderabad, Telangana, India"
1542
+ ]
1543
+ },
1544
+ "Imphal||Manipur": {
1545
+ "lat": 24.7991162,
1546
+ "lon": 93.9364419,
1547
+ "area_km2": 1145.3,
1548
+ "state_geocoded": "Manipur",
1549
+ "confidence": "high",
1550
+ "num_candidates": 1,
1551
+ "alt_states": "",
1552
+ "queries": [
1553
+ "Imphal, Manipur, India"
1554
+ ]
1555
+ },
1556
+ "Indore||Madhya Pradesh": {
1557
+ "lat": 22.7203616,
1558
+ "lon": 75.8681996,
1559
+ "area_km2": 1163.8,
1560
+ "state_geocoded": "Madhya Pradesh",
1561
+ "confidence": "high",
1562
+ "num_candidates": 3,
1563
+ "alt_states": "",
1564
+ "queries": [
1565
+ "Indore, Madhya Pradesh, India"
1566
+ ]
1567
+ },
1568
+ "Jabalpur||Madhya Pradesh": {
1569
+ "lat": 23.1701522,
1570
+ "lon": 79.9324505,
1571
+ "area_km2": 100.2,
1572
+ "state_geocoded": "Madhya Pradesh",
1573
+ "confidence": "high",
1574
+ "num_candidates": 3,
1575
+ "alt_states": "",
1576
+ "queries": [
1577
+ "Jabalpur, Madhya Pradesh, India"
1578
+ ]
1579
+ },
1580
+ "Jaipur||Rajasthan": {
1581
+ "lat": 26.9154576,
1582
+ "lon": 75.8189817,
1583
+ "area_km2": 1125.0,
1584
+ "state_geocoded": "Rajasthan",
1585
+ "confidence": "high",
1586
+ "num_candidates": 2,
1587
+ "alt_states": "",
1588
+ "queries": [
1589
+ "Jaipur, Rajasthan, India"
1590
+ ]
1591
+ },
1592
+ "Jaisalmer||Rajasthan": {
1593
+ "lat": 27.0264162,
1594
+ "lon": 70.777512,
1595
+ "area_km2": 63238.2,
1596
+ "state_geocoded": "Rajasthan",
1597
+ "confidence": "high",
1598
+ "num_candidates": 3,
1599
+ "alt_states": "",
1600
+ "queries": [
1601
+ "Jaisalmer, Rajasthan, India"
1602
+ ]
1603
+ },
1604
+ "Jalandhar||Punjab": {
1605
+ "lat": 31.2922312,
1606
+ "lon": 75.5678878,
1607
+ "area_km2": 6054.7,
1608
+ "state_geocoded": "Punjab",
1609
+ "confidence": "high",
1610
+ "num_candidates": 2,
1611
+ "alt_states": "",
1612
+ "queries": [
1613
+ "Jalandhar, Punjab, India"
1614
+ ]
1615
+ },
1616
+ "Jalgaon||Maharashtra": {
1617
+ "lat": 20.8428827,
1618
+ "lon": 75.5261246,
1619
+ "area_km2": 21599.0,
1620
+ "state_geocoded": "Maharashtra",
1621
+ "confidence": "high",
1622
+ "num_candidates": 3,
1623
+ "alt_states": "",
1624
+ "queries": [
1625
+ "Jalgaon, Maharashtra, India"
1626
+ ]
1627
+ },
1628
+ "Jalna||Maharashtra": {
1629
+ "lat": 19.918833,
1630
+ "lon": 75.8708599,
1631
+ "area_km2": 14121.4,
1632
+ "state_geocoded": "Maharashtra",
1633
+ "confidence": "high",
1634
+ "num_candidates": 2,
1635
+ "alt_states": "",
1636
+ "queries": [
1637
+ "Jalna, Maharashtra, India"
1638
+ ]
1639
+ },
1640
+ "Jalore||Rajasthan": {
1641
+ "lat": 25.2093482,
1642
+ "lon": 72.3178889,
1643
+ "area_km2": 25497.1,
1644
+ "state_geocoded": "Rajasthan",
1645
+ "confidence": "high",
1646
+ "num_candidates": 2,
1647
+ "alt_states": "",
1648
+ "queries": [
1649
+ "Jalore, Rajasthan, India"
1650
+ ]
1651
+ },
1652
+ "Jhalawar||Rajasthan": {
1653
+ "lat": 24.3132368,
1654
+ "lon": 76.5221078,
1655
+ "area_km2": 18623.8,
1656
+ "state_geocoded": "Rajasthan",
1657
+ "confidence": "high",
1658
+ "num_candidates": 1,
1659
+ "alt_states": "",
1660
+ "queries": [
1661
+ "Jhalawar, Rajasthan, India"
1662
+ ]
1663
+ },
1664
+ "Jhansi||Uttar Pradesh": {
1665
+ "lat": 25.529855,
1666
+ "lon": 78.6527802,
1667
+ "area_km2": 10524.1,
1668
+ "state_geocoded": "Uttar Pradesh",
1669
+ "confidence": "high",
1670
+ "num_candidates": 3,
1671
+ "alt_states": "",
1672
+ "queries": [
1673
+ "Jhansi, Uttar Pradesh, India"
1674
+ ]
1675
+ },
1676
+ "Jhunjhunu||Rajasthan": {
1677
+ "lat": 28.0798944,
1678
+ "lon": 75.5424211,
1679
+ "area_km2": 10226.7,
1680
+ "state_geocoded": "Rajasthan",
1681
+ "confidence": "high",
1682
+ "num_candidates": 2,
1683
+ "alt_states": "",
1684
+ "queries": [
1685
+ "Jhunjhunu, Rajasthan, India"
1686
+ ]
1687
+ },
1688
+ "Jind||Haryana": {
1689
+ "lat": 29.3152073,
1690
+ "lon": 76.314082,
1691
+ "area_km2": 1100.1,
1692
+ "state_geocoded": "Haryana",
1693
+ "confidence": "high",
1694
+ "num_candidates": 3,
1695
+ "alt_states": "",
1696
+ "queries": [
1697
+ "Jind, Haryana, India"
1698
+ ]
1699
+ },
1700
+ "Jodhpur||Rajasthan": {
1701
+ "lat": 26.2967719,
1702
+ "lon": 73.0351433,
1703
+ "area_km2": 228.9,
1704
+ "state_geocoded": "Rajasthan",
1705
+ "confidence": "high",
1706
+ "num_candidates": 2,
1707
+ "alt_states": "",
1708
+ "queries": [
1709
+ "Jodhpur, Rajasthan, India"
1710
+ ]
1711
+ },
1712
+ "Jorapokhar||Jharkhand": {
1713
+ "lat": 23.7167069,
1714
+ "lon": 86.4110166,
1715
+ "area_km2": 18.0,
1716
+ "state_geocoded": "Jharkhand",
1717
+ "confidence": "high",
1718
+ "num_candidates": 3,
1719
+ "alt_states": "",
1720
+ "queries": [
1721
+ "Jorapokhar, Jharkhand, India"
1722
+ ]
1723
+ },
1724
+ "Kadapa||Andhra Pradesh": {
1725
+ "lat": 14.4752936,
1726
+ "lon": 78.8216861,
1727
+ "area_km2": 1221.6,
1728
+ "state_geocoded": "Andhra Pradesh",
1729
+ "confidence": "high",
1730
+ "num_candidates": 3,
1731
+ "alt_states": "",
1732
+ "queries": [
1733
+ "Kadapa, Andhra Pradesh, India"
1734
+ ]
1735
+ },
1736
+ "Kaithal||Haryana": {
1737
+ "lat": 29.7996588,
1738
+ "lon": 76.3989903,
1739
+ "area_km2": 1094.8,
1740
+ "state_geocoded": "Haryana",
1741
+ "confidence": "high",
1742
+ "num_candidates": 3,
1743
+ "alt_states": "",
1744
+ "queries": [
1745
+ "Kaithal, Haryana, India"
1746
+ ]
1747
+ },
1748
+ "Kalaburagi||Karnataka": {
1749
+ "lat": 17.2408957,
1750
+ "lon": 76.7697439,
1751
+ "area_km2": 20290.5,
1752
+ "state_geocoded": "Karnataka",
1753
+ "confidence": "high",
1754
+ "num_candidates": 3,
1755
+ "alt_states": "",
1756
+ "queries": [
1757
+ "Kalaburagi, Karnataka, India"
1758
+ ]
1759
+ },
1760
+ "Kalaburgi||Karnataka": {
1761
+ "lat": 16.8999182,
1762
+ "lon": 77.0567566,
1763
+ "area_km2": 3.1,
1764
+ "state_geocoded": "Karnataka",
1765
+ "confidence": "high",
1766
+ "num_candidates": 5,
1767
+ "alt_states": "",
1768
+ "queries": [
1769
+ "Kalaburgi, Karnataka, India"
1770
+ ]
1771
+ },
1772
+ "Kalyan||Maharashtra": {
1773
+ "lat": 19.2396742,
1774
+ "lon": 73.1366482,
1775
+ "area_km2": 36.2,
1776
+ "state_geocoded": "Maharashtra",
1777
+ "confidence": "high",
1778
+ "num_candidates": 1,
1779
+ "alt_states": "",
1780
+ "queries": [
1781
+ "Kalyan, Maharashtra, India"
1782
+ ]
1783
+ },
1784
+ "Kanchipuram||Tamil Nadu": {
1785
+ "lat": 12.9647163,
1786
+ "lon": 79.9839686,
1787
+ "area_km2": 3444.7,
1788
+ "state_geocoded": "Tamil Nadu",
1789
+ "confidence": "high",
1790
+ "num_candidates": 2,
1791
+ "alt_states": "",
1792
+ "queries": [
1793
+ "Kanchipuram, Tamil Nadu, India"
1794
+ ]
1795
+ },
1796
+ "Kannur||Kerala": {
1797
+ "lat": 11.8763836,
1798
+ "lon": 75.3737973,
1799
+ "area_km2": 1234.7,
1800
+ "state_geocoded": "Kerala",
1801
+ "confidence": "high",
1802
+ "num_candidates": 4,
1803
+ "alt_states": "",
1804
+ "queries": [
1805
+ "Kannur, Kerala, India"
1806
+ ]
1807
+ },
1808
+ "Kanpur||Uttar Pradesh": {
1809
+ "lat": 26.4609135,
1810
+ "lon": 80.3217588,
1811
+ "area_km2": 1129.5,
1812
+ "state_geocoded": "Uttar Pradesh",
1813
+ "confidence": "high",
1814
+ "num_candidates": 2,
1815
+ "alt_states": "",
1816
+ "queries": [
1817
+ "Kanpur, Uttar Pradesh, India"
1818
+ ]
1819
+ },
1820
+ "Karauli||Rajasthan": {
1821
+ "lat": 26.5158329,
1822
+ "lon": 77.0565965,
1823
+ "area_km2": 9836.4,
1824
+ "state_geocoded": "Rajasthan",
1825
+ "confidence": "high",
1826
+ "num_candidates": 1,
1827
+ "alt_states": "",
1828
+ "queries": [
1829
+ "Karauli, Rajasthan, India"
1830
+ ]
1831
+ },
1832
+ "Karnal||Haryana": {
1833
+ "lat": 29.7255766,
1834
+ "lon": 76.9106924,
1835
+ "area_km2": 4176.5,
1836
+ "state_geocoded": "Haryana",
1837
+ "confidence": "high",
1838
+ "num_candidates": 4,
1839
+ "alt_states": "",
1840
+ "queries": [
1841
+ "Karnal, Haryana, India"
1842
+ ]
1843
+ },
1844
+ "Karur||Tamil Nadu": {
1845
+ "lat": 10.8217671,
1846
+ "lon": 78.3828654,
1847
+ "area_km2": 5561.7,
1848
+ "state_geocoded": "Tamil Nadu",
1849
+ "confidence": "high",
1850
+ "num_candidates": 3,
1851
+ "alt_states": "",
1852
+ "queries": [
1853
+ "Karur, Tamil Nadu, India"
1854
+ ]
1855
+ },
1856
+ "Karwar||Karnataka": {
1857
+ "lat": 14.812189,
1858
+ "lon": 74.1323413,
1859
+ "area_km2": 76.2,
1860
+ "state_geocoded": "Karnataka",
1861
+ "confidence": "high",
1862
+ "num_candidates": 2,
1863
+ "alt_states": "",
1864
+ "queries": [
1865
+ "Karwar, Karnataka, India"
1866
+ ]
1867
+ },
1868
+ "Kashipur||Uttarakhand": {
1869
+ "lat": 29.2117573,
1870
+ "lon": 78.9617306,
1871
+ "area_km2": 68.8,
1872
+ "state_geocoded": "Uttarakhand",
1873
+ "confidence": "high",
1874
+ "num_candidates": 2,
1875
+ "alt_states": "",
1876
+ "queries": [
1877
+ "Kashipur, Uttarakhand, India"
1878
+ ]
1879
+ },
1880
+ "Katihar||Bihar": {
1881
+ "lat": 25.5586421,
1882
+ "lon": 87.6457196,
1883
+ "area_km2": 6298.2,
1884
+ "state_geocoded": "Bihar",
1885
+ "confidence": "high",
1886
+ "num_candidates": 3,
1887
+ "alt_states": "",
1888
+ "queries": [
1889
+ "Katihar, Bihar, India"
1890
+ ]
1891
+ },
1892
+ "Katni||Madhya Pradesh": {
1893
+ "lat": 23.7176393,
1894
+ "lon": 80.2610181,
1895
+ "area_km2": 10607.7,
1896
+ "state_geocoded": "Madhya Pradesh",
1897
+ "confidence": "high",
1898
+ "num_candidates": 3,
1899
+ "alt_states": "",
1900
+ "queries": [
1901
+ "Katni, Madhya Pradesh, India"
1902
+ ]
1903
+ },
1904
+ "Keonjhar||Odisha": {
1905
+ "lat": 21.5,
1906
+ "lon": 85.5,
1907
+ "area_km2": 22468.8,
1908
+ "state_geocoded": "Odisha",
1909
+ "confidence": "high",
1910
+ "num_candidates": 2,
1911
+ "alt_states": "",
1912
+ "queries": [
1913
+ "Keonjhar, Odisha, India"
1914
+ ]
1915
+ },
1916
+ "Khanna||Punjab": {
1917
+ "lat": 30.700625,
1918
+ "lon": 76.2220763,
1919
+ "area_km2": 1084.8,
1920
+ "state_geocoded": "Punjab",
1921
+ "confidence": "high",
1922
+ "num_candidates": 2,
1923
+ "alt_states": "",
1924
+ "queries": [
1925
+ "Khanna, Punjab, India"
1926
+ ]
1927
+ },
1928
+ "Khurja||Uttar Pradesh": {
1929
+ "lat": 28.2532652,
1930
+ "lon": 77.853916,
1931
+ "area_km2": 1111.4,
1932
+ "state_geocoded": "Uttar Pradesh",
1933
+ "confidence": "high",
1934
+ "num_candidates": 2,
1935
+ "alt_states": "",
1936
+ "queries": [
1937
+ "Khurja, Uttar Pradesh, India"
1938
+ ]
1939
+ },
1940
+ "Kishanganj||Bihar": {
1941
+ "lat": 26.2984144,
1942
+ "lon": 87.9466715,
1943
+ "area_km2": 4778.6,
1944
+ "state_geocoded": "Bihar",
1945
+ "confidence": "high",
1946
+ "num_candidates": 4,
1947
+ "alt_states": "",
1948
+ "queries": [
1949
+ "Kishanganj, Bihar, India"
1950
+ ]
1951
+ },
1952
+ "Kochi||Kerala": {
1953
+ "lat": 9.9679032,
1954
+ "lon": 76.2444378,
1955
+ "area_km2": 1242.6,
1956
+ "state_geocoded": "Kerala",
1957
+ "confidence": "high",
1958
+ "num_candidates": 3,
1959
+ "alt_states": "",
1960
+ "queries": [
1961
+ "Kochi, Kerala, India"
1962
+ ]
1963
+ },
1964
+ "Kohima||Nagaland": {
1965
+ "lat": 25.6618755,
1966
+ "lon": 94.1019156,
1967
+ "area_km2": 1137.2,
1968
+ "state_geocoded": "Nagaland",
1969
+ "confidence": "high",
1970
+ "num_candidates": 3,
1971
+ "alt_states": "",
1972
+ "queries": [
1973
+ "Kohima, Nagaland, India"
1974
+ ]
1975
+ },
1976
+ "Kolar||Karnataka": {
1977
+ "lat": 13.1805066,
1978
+ "lon": 78.2669329,
1979
+ "area_km2": 7508.6,
1980
+ "state_geocoded": "Karnataka",
1981
+ "confidence": "high",
1982
+ "num_candidates": 1,
1983
+ "alt_states": "",
1984
+ "queries": [
1985
+ "Kolar, Karnataka, India"
1986
+ ]
1987
+ },
1988
+ "Kolhapur||Maharashtra": {
1989
+ "lat": 16.7028412,
1990
+ "lon": 74.2405329,
1991
+ "area_km2": 1208.4,
1992
+ "state_geocoded": "Maharashtra",
1993
+ "confidence": "high",
1994
+ "num_candidates": 2,
1995
+ "alt_states": "",
1996
+ "queries": [
1997
+ "Kolhapur, Maharashtra, India"
1998
+ ]
1999
+ },
2000
+ "Kolkata||West Bengal": {
2001
+ "lat": 22.5726459,
2002
+ "lon": 88.3638953,
2003
+ "area_km2": 431.7,
2004
+ "state_geocoded": "West Bengal",
2005
+ "confidence": "high",
2006
+ "num_candidates": 2,
2007
+ "alt_states": "",
2008
+ "queries": [
2009
+ "Kolkata, West Bengal, India"
2010
+ ]
2011
+ },
2012
+ "Kollam||Kerala": {
2013
+ "lat": 8.8870533,
2014
+ "lon": 76.5906696,
2015
+ "area_km2": 1246.5,
2016
+ "state_geocoded": "Kerala",
2017
+ "confidence": "high",
2018
+ "num_candidates": 3,
2019
+ "alt_states": "",
2020
+ "queries": [
2021
+ "Kollam, Kerala, India"
2022
+ ]
2023
+ },
2024
+ "Koppal||Karnataka": {
2025
+ "lat": 15.5748238,
2026
+ "lon": 76.3118494,
2027
+ "area_km2": 10780.6,
2028
+ "state_geocoded": "Karnataka",
2029
+ "confidence": "high",
2030
+ "num_candidates": 1,
2031
+ "alt_states": "",
2032
+ "queries": [
2033
+ "Koppal, Karnataka, India"
2034
+ ]
2035
+ },
2036
+ "Korba||Bihar": {
2037
+ "lat": 22.5198217,
2038
+ "lon": 82.6350029,
2039
+ "area_km2": 10816.6,
2040
+ "state_geocoded": "Chhattisgarh",
2041
+ "confidence": "medium_state_mismatch",
2042
+ "num_candidates": 2,
2043
+ "alt_states": "",
2044
+ "queries": [
2045
+ "Korba, Bihar, India",
2046
+ "Korba, India"
2047
+ ]
2048
+ },
2049
+ "Kota||Rajasthan": {
2050
+ "lat": 25.1737019,
2051
+ "lon": 75.8574194,
2052
+ "area_km2": 1141.8,
2053
+ "state_geocoded": "Rajasthan",
2054
+ "confidence": "high",
2055
+ "num_candidates": 3,
2056
+ "alt_states": "",
2057
+ "queries": [
2058
+ "Kota, Rajasthan, India"
2059
+ ]
2060
+ },
2061
+ "Kozhikode||Kerala": {
2062
+ "lat": 11.2450558,
2063
+ "lon": 75.7754716,
2064
+ "area_km2": 1237.4,
2065
+ "state_geocoded": "Kerala",
2066
+ "confidence": "high",
2067
+ "num_candidates": 3,
2068
+ "alt_states": "",
2069
+ "queries": [
2070
+ "Kozhikode, Kerala, India"
2071
+ ]
2072
+ },
2073
+ "Kunjemura||Bihar": {
2074
+ "lat": null,
2075
+ "lon": null,
2076
+ "area_km2": null,
2077
+ "state_geocoded": null,
2078
+ "confidence": "not_found",
2079
+ "num_candidates": 0,
2080
+ "alt_states": "",
2081
+ "queries": [
2082
+ "Kunjemura, Bihar, India",
2083
+ "Kunjemura, India"
2084
+ ]
2085
+ },
2086
+ "Kurukshetra||Haryana": {
2087
+ "lat": 29.9693747,
2088
+ "lon": 76.8482787,
2089
+ "area_km2": 1093.0,
2090
+ "state_geocoded": "Haryana",
2091
+ "confidence": "high",
2092
+ "num_candidates": 3,
2093
+ "alt_states": "",
2094
+ "queries": [
2095
+ "Kurukshetra, Haryana, India"
2096
+ ]
2097
+ },
2098
+ "Latur||Maharashtra": {
2099
+ "lat": 18.3553347,
2100
+ "lon": 76.7548997,
2101
+ "area_km2": 12370.9,
2102
+ "state_geocoded": "Maharashtra",
2103
+ "confidence": "high",
2104
+ "num_candidates": 3,
2105
+ "alt_states": "",
2106
+ "queries": [
2107
+ "Latur, Maharashtra, India"
2108
+ ]
2109
+ },
2110
+ "Lucknow||Uttar Pradesh": {
2111
+ "lat": 26.8381,
2112
+ "lon": 80.9346001,
2113
+ "area_km2": 1125.8,
2114
+ "state_geocoded": "Uttar Pradesh",
2115
+ "confidence": "high",
2116
+ "num_candidates": 4,
2117
+ "alt_states": "",
2118
+ "queries": [
2119
+ "Lucknow, Uttar Pradesh, India"
2120
+ ]
2121
+ },
2122
+ "Ludhiana||Punjab": {
2123
+ "lat": 30.9090157,
2124
+ "lon": 75.851601,
2125
+ "area_km2": 1082.5,
2126
+ "state_geocoded": "Punjab",
2127
+ "confidence": "high",
2128
+ "num_candidates": 2,
2129
+ "alt_states": "",
2130
+ "queries": [
2131
+ "Ludhiana, Punjab, India"
2132
+ ]
2133
+ },
2134
+ "Machilipatnam||Andhra Pradesh": {
2135
+ "lat": 16.1817369,
2136
+ "lon": 81.1348181,
2137
+ "area_km2": 1211.7,
2138
+ "state_geocoded": "Andhra Pradesh",
2139
+ "confidence": "high",
2140
+ "num_candidates": 2,
2141
+ "alt_states": "",
2142
+ "queries": [
2143
+ "Machilipatnam, Andhra Pradesh, India"
2144
+ ]
2145
+ },
2146
+ "Madikeri||Karnataka": {
2147
+ "lat": 12.42149,
2148
+ "lon": 75.7387543,
2149
+ "area_km2": 77.0,
2150
+ "state_geocoded": "Karnataka",
2151
+ "confidence": "high",
2152
+ "num_candidates": 1,
2153
+ "alt_states": "",
2154
+ "queries": [
2155
+ "Madikeri, Karnataka, India"
2156
+ ]
2157
+ },
2158
+ "Madurai||Tamil Nadu": {
2159
+ "lat": 9.9261153,
2160
+ "lon": 78.1140983,
2161
+ "area_km2": 384.1,
2162
+ "state_geocoded": "Tamil Nadu",
2163
+ "confidence": "high",
2164
+ "num_candidates": 2,
2165
+ "alt_states": "",
2166
+ "queries": [
2167
+ "Madurai, Tamil Nadu, India"
2168
+ ]
2169
+ },
2170
+ "Mahad||Maharashtra": {
2171
+ "lat": 18.080753,
2172
+ "lon": 73.42438,
2173
+ "area_km2": 75.0,
2174
+ "state_geocoded": "Maharashtra",
2175
+ "confidence": "high",
2176
+ "num_candidates": 3,
2177
+ "alt_states": "",
2178
+ "queries": [
2179
+ "Mahad, Maharashtra, India"
2180
+ ]
2181
+ },
2182
+ "Maihar||Madhya Pradesh": {
2183
+ "lat": 24.2437541,
2184
+ "lon": 81.0446912,
2185
+ "area_km2": 6428.9,
2186
+ "state_geocoded": "Madhya Pradesh",
2187
+ "confidence": "high",
2188
+ "num_candidates": 2,
2189
+ "alt_states": "",
2190
+ "queries": [
2191
+ "Maihar, Madhya Pradesh, India"
2192
+ ]
2193
+ },
2194
+ "Malegaon||Maharashtra": {
2195
+ "lat": 20.5576062,
2196
+ "lon": 74.5246514,
2197
+ "area_km2": 1181.3,
2198
+ "state_geocoded": "Maharashtra",
2199
+ "confidence": "high",
2200
+ "num_candidates": 5,
2201
+ "alt_states": "",
2202
+ "queries": [
2203
+ "Malegaon, Maharashtra, India"
2204
+ ]
2205
+ },
2206
+ "Mandi Gobindgarh||Punjab": {
2207
+ "lat": 30.6693384,
2208
+ "lon": 76.2974678,
2209
+ "area_km2": 1.1,
2210
+ "state_geocoded": "Punjab",
2211
+ "confidence": "high",
2212
+ "num_candidates": 2,
2213
+ "alt_states": "",
2214
+ "queries": [
2215
+ "Mandi Gobindgarh, Punjab, India"
2216
+ ]
2217
+ },
2218
+ "Mandideep||Madhya Pradesh": {
2219
+ "lat": 23.093838,
2220
+ "lon": 77.5114296,
2221
+ "area_km2": 1.1,
2222
+ "state_geocoded": "Madhya Pradesh",
2223
+ "confidence": "high",
2224
+ "num_candidates": 3,
2225
+ "alt_states": "",
2226
+ "queries": [
2227
+ "Mandideep, Madhya Pradesh, India"
2228
+ ]
2229
+ },
2230
+ "Mandikhera(Nuh)||Haryana": {
2231
+ "lat": 27.897075,
2232
+ "lon": 76.9922014,
2233
+ "area_km2": 69.7,
2234
+ "state_geocoded": "Haryana",
2235
+ "confidence": "high",
2236
+ "num_candidates": 1,
2237
+ "alt_states": "",
2238
+ "queries": [
2239
+ "Mandikhera(Nuh), Haryana, India"
2240
+ ]
2241
+ },
2242
+ "Manesar||Haryana": {
2243
+ "lat": 28.3247096,
2244
+ "lon": 76.9263787,
2245
+ "area_km2": 459.2,
2246
+ "state_geocoded": "Haryana",
2247
+ "confidence": "high",
2248
+ "num_candidates": 2,
2249
+ "alt_states": "",
2250
+ "queries": [
2251
+ "Manesar, Haryana, India"
2252
+ ]
2253
+ },
2254
+ "Mangalore||Karnataka": {
2255
+ "lat": 12.8698101,
2256
+ "lon": 74.8430082,
2257
+ "area_km2": 1230.0,
2258
+ "state_geocoded": "Karnataka",
2259
+ "confidence": "high",
2260
+ "num_candidates": 1,
2261
+ "alt_states": "",
2262
+ "queries": [
2263
+ "Mangalore, Karnataka, India"
2264
+ ]
2265
+ },
2266
+ "Manguraha||Bihar": {
2267
+ "lat": 26.3583278,
2268
+ "lon": 85.3281977,
2269
+ "area_km2": 0.0,
2270
+ "state_geocoded": "Bihar",
2271
+ "confidence": "high",
2272
+ "num_candidates": 1,
2273
+ "alt_states": "",
2274
+ "queries": [
2275
+ "Manguraha, Bihar, India"
2276
+ ]
2277
+ },
2278
+ "Meerut||Uttar Pradesh": {
2279
+ "lat": 29.0018557,
2280
+ "lon": 77.7679671,
2281
+ "area_km2": 4003.5,
2282
+ "state_geocoded": "Uttar Pradesh",
2283
+ "confidence": "high",
2284
+ "num_candidates": 3,
2285
+ "alt_states": "",
2286
+ "queries": [
2287
+ "Meerut, Uttar Pradesh, India"
2288
+ ]
2289
+ },
2290
+ "Mehsana||Gujarat": {
2291
+ "lat": 23.6012628,
2292
+ "lon": 72.3741516,
2293
+ "area_km2": 1.4,
2294
+ "state_geocoded": "Gujarat",
2295
+ "confidence": "high",
2296
+ "num_candidates": 3,
2297
+ "alt_states": "",
2298
+ "queries": [
2299
+ "Mehsana, Gujarat, India"
2300
+ ]
2301
+ },
2302
+ "Milupara||Chhattisgarh": {
2303
+ "lat": null,
2304
+ "lon": null,
2305
+ "area_km2": null,
2306
+ "state_geocoded": null,
2307
+ "confidence": "not_found",
2308
+ "num_candidates": 0,
2309
+ "alt_states": "",
2310
+ "queries": [
2311
+ "Milupara, Chhattisgarh, India",
2312
+ "Milupara, India"
2313
+ ]
2314
+ },
2315
+ "Mira-Bhayandar||Maharashtra": {
2316
+ "lat": 19.3183904,
2317
+ "lon": 72.8991697,
2318
+ "area_km2": 0.0,
2319
+ "state_geocoded": "Maharashtra",
2320
+ "confidence": "high",
2321
+ "num_candidates": 1,
2322
+ "alt_states": "",
2323
+ "queries": [
2324
+ "Mira-Bhayandar, Maharashtra, India"
2325
+ ]
2326
+ },
2327
+ "Moradabad||Uttar Pradesh": {
2328
+ "lat": 28.8796553,
2329
+ "lon": 78.8095335,
2330
+ "area_km2": 3209.8,
2331
+ "state_geocoded": "Uttar Pradesh",
2332
+ "confidence": "high",
2333
+ "num_candidates": 3,
2334
+ "alt_states": "",
2335
+ "queries": [
2336
+ "Moradabad, Uttar Pradesh, India"
2337
+ ]
2338
+ },
2339
+ "Motihari||Bihar": {
2340
+ "lat": 26.6506888,
2341
+ "lon": 84.9114654,
2342
+ "area_km2": 32.6,
2343
+ "state_geocoded": "Bihar",
2344
+ "confidence": "high",
2345
+ "num_candidates": 2,
2346
+ "alt_states": "",
2347
+ "queries": [
2348
+ "Motihari, Bihar, India"
2349
+ ]
2350
+ },
2351
+ "Mumbai||Maharashtra": {
2352
+ "lat": 19.054999,
2353
+ "lon": 72.8692035,
2354
+ "area_km2": 1192.5,
2355
+ "state_geocoded": "Maharashtra",
2356
+ "confidence": "high",
2357
+ "num_candidates": 1,
2358
+ "alt_states": "",
2359
+ "queries": [
2360
+ "Mumbai, Maharashtra, India"
2361
+ ]
2362
+ },
2363
+ "Munger||Bihar": {
2364
+ "lat": 25.2202864,
2365
+ "lon": 86.5161484,
2366
+ "area_km2": 2928.1,
2367
+ "state_geocoded": "Bihar",
2368
+ "confidence": "high",
2369
+ "num_candidates": 4,
2370
+ "alt_states": "",
2371
+ "queries": [
2372
+ "Munger, Bihar, India"
2373
+ ]
2374
+ },
2375
+ "Muzaffarnagar||Uttar Pradesh": {
2376
+ "lat": 29.4496979,
2377
+ "lon": 77.7429333,
2378
+ "area_km2": 4757.8,
2379
+ "state_geocoded": "Uttar Pradesh",
2380
+ "confidence": "high",
2381
+ "num_candidates": 3,
2382
+ "alt_states": "",
2383
+ "queries": [
2384
+ "Muzaffarnagar, Uttar Pradesh, India"
2385
+ ]
2386
+ },
2387
+ "Muzaffarpur||Bihar": {
2388
+ "lat": 26.1482548,
2389
+ "lon": 85.3316097,
2390
+ "area_km2": 4779.6,
2391
+ "state_geocoded": "Bihar",
2392
+ "confidence": "high",
2393
+ "num_candidates": 3,
2394
+ "alt_states": "",
2395
+ "queries": [
2396
+ "Muzaffarpur, Bihar, India"
2397
+ ]
2398
+ },
2399
+ "Mysuru||Karnataka": {
2400
+ "lat": 12.3041464,
2401
+ "lon": 76.6529521,
2402
+ "area_km2": 131.4,
2403
+ "state_geocoded": "Karnataka",
2404
+ "confidence": "high",
2405
+ "num_candidates": 2,
2406
+ "alt_states": "",
2407
+ "queries": [
2408
+ "Mysuru, Karnataka, India"
2409
+ ]
2410
+ },
2411
+ "Nagaon||Assam": {
2412
+ "lat": 26.3313646,
2413
+ "lon": 92.7524763,
2414
+ "area_km2": 7513.8,
2415
+ "state_geocoded": "Assam",
2416
+ "confidence": "high",
2417
+ "num_candidates": 3,
2418
+ "alt_states": "",
2419
+ "queries": [
2420
+ "Nagaon, Assam, India"
2421
+ ]
2422
+ },
2423
+ "Nagapattinam||Tamil Nadu": {
2424
+ "lat": 10.6026203,
2425
+ "lon": 79.7619348,
2426
+ "area_km2": 3278.8,
2427
+ "state_geocoded": "Tamil Nadu",
2428
+ "confidence": "high",
2429
+ "num_candidates": 3,
2430
+ "alt_states": "",
2431
+ "queries": [
2432
+ "Nagapattinam, Tamil Nadu, India"
2433
+ ]
2434
+ },
2435
+ "Nagaur||Rajasthan": {
2436
+ "lat": 26.9873443,
2437
+ "lon": 73.7389011,
2438
+ "area_km2": 18385.1,
2439
+ "state_geocoded": "Rajasthan",
2440
+ "confidence": "high",
2441
+ "num_candidates": 3,
2442
+ "alt_states": "",
2443
+ "queries": [
2444
+ "Nagaur, Rajasthan, India"
2445
+ ]
2446
+ },
2447
+ "Nagpur||Maharashtra": {
2448
+ "lat": 21.1498134,
2449
+ "lon": 79.0820556,
2450
+ "area_km2": 375.7,
2451
+ "state_geocoded": "Maharashtra",
2452
+ "confidence": "high",
2453
+ "num_candidates": 2,
2454
+ "alt_states": "",
2455
+ "queries": [
2456
+ "Nagpur, Maharashtra, India"
2457
+ ]
2458
+ },
2459
+ "Naharlagun||Arunachal Pradesh": {
2460
+ "lat": 27.1308555,
2461
+ "lon": 93.709712,
2462
+ "area_km2": 1.1,
2463
+ "state_geocoded": "Arunachal Pradesh",
2464
+ "confidence": "high",
2465
+ "num_candidates": 3,
2466
+ "alt_states": "",
2467
+ "queries": [
2468
+ "Naharlagun, Arunachal Pradesh, India"
2469
+ ]
2470
+ },
2471
+ "Nalbari||Assam": {
2472
+ "lat": 26.3533632,
2473
+ "lon": 91.3983662,
2474
+ "area_km2": 1789.6,
2475
+ "state_geocoded": "Assam",
2476
+ "confidence": "high",
2477
+ "num_candidates": 2,
2478
+ "alt_states": "",
2479
+ "queries": [
2480
+ "Nalbari, Assam, India"
2481
+ ]
2482
+ },
2483
+ "Namakkal||Tamil Nadu": {
2484
+ "lat": 11.3033889,
2485
+ "lon": 78.118604,
2486
+ "area_km2": 5708.1,
2487
+ "state_geocoded": "Tamil Nadu",
2488
+ "confidence": "high",
2489
+ "num_candidates": 3,
2490
+ "alt_states": "",
2491
+ "queries": [
2492
+ "Namakkal, Tamil Nadu, India"
2493
+ ]
2494
+ },
2495
+ "Nanded||Maharashtra": {
2496
+ "lat": 19.0942729,
2497
+ "lon": 77.4832628,
2498
+ "area_km2": 27752.0,
2499
+ "state_geocoded": "Maharashtra",
2500
+ "confidence": "high",
2501
+ "num_candidates": 2,
2502
+ "alt_states": "",
2503
+ "queries": [
2504
+ "Nanded, Maharashtra, India"
2505
+ ]
2506
+ },
2507
+ "Nandesari||Gujarat": {
2508
+ "lat": 22.4178037,
2509
+ "lon": 73.0949186,
2510
+ "area_km2": 1.1,
2511
+ "state_geocoded": "Gujarat",
2512
+ "confidence": "high",
2513
+ "num_candidates": 1,
2514
+ "alt_states": "",
2515
+ "queries": [
2516
+ "Nandesari, Gujarat, India"
2517
+ ]
2518
+ },
2519
+ "Narnaul||Haryana": {
2520
+ "lat": 28.0438456,
2521
+ "lon": 76.1062015,
2522
+ "area_km2": 1113.5,
2523
+ "state_geocoded": "Haryana",
2524
+ "confidence": "high",
2525
+ "num_candidates": 2,
2526
+ "alt_states": "",
2527
+ "queries": [
2528
+ "Narnaul, Haryana, India"
2529
+ ]
2530
+ },
2531
+ "Nashik||Maharashtra": {
2532
+ "lat": 20.0112475,
2533
+ "lon": 73.7902364,
2534
+ "area_km2": 1185.5,
2535
+ "state_geocoded": "Maharashtra",
2536
+ "confidence": "high",
2537
+ "num_candidates": 3,
2538
+ "alt_states": "",
2539
+ "queries": [
2540
+ "Nashik, Maharashtra, India"
2541
+ ]
2542
+ },
2543
+ "Navi Mumbai||Maharashtra": {
2544
+ "lat": 19.0308262,
2545
+ "lon": 73.0198537,
2546
+ "area_km2": 159.7,
2547
+ "state_geocoded": "Maharashtra",
2548
+ "confidence": "high",
2549
+ "num_candidates": 1,
2550
+ "alt_states": "",
2551
+ "queries": [
2552
+ "Navi Mumbai, Maharashtra, India"
2553
+ ]
2554
+ },
2555
+ "Nayagarh||Odisha": {
2556
+ "lat": 20.2393682,
2557
+ "lon": 85.050728,
2558
+ "area_km2": 7685.4,
2559
+ "state_geocoded": "Odisha",
2560
+ "confidence": "high",
2561
+ "num_candidates": 2,
2562
+ "alt_states": "",
2563
+ "queries": [
2564
+ "Nayagarh, Odisha, India"
2565
+ ]
2566
+ },
2567
+ "Noida||Uttar Pradesh": {
2568
+ "lat": 28.5706333,
2569
+ "lon": 77.3272147,
2570
+ "area_km2": 543.0,
2571
+ "state_geocoded": "Uttar Pradesh",
2572
+ "confidence": "high",
2573
+ "num_candidates": 1,
2574
+ "alt_states": "",
2575
+ "queries": [
2576
+ "Noida, Uttar Pradesh, India"
2577
+ ]
2578
+ },
2579
+ "Ooty||Tamil Nadu": {
2580
+ "lat": 11.4126769,
2581
+ "lon": 76.7030504,
2582
+ "area_km2": 77.3,
2583
+ "state_geocoded": "Tamil Nadu",
2584
+ "confidence": "high",
2585
+ "num_candidates": 1,
2586
+ "alt_states": "",
2587
+ "queries": [
2588
+ "Ooty, Tamil Nadu, India"
2589
+ ]
2590
+ },
2591
+ "Pali||Rajasthan": {
2592
+ "lat": 25.4552211,
2593
+ "lon": 73.419389,
2594
+ "area_km2": 19971.6,
2595
+ "state_geocoded": "Rajasthan",
2596
+ "confidence": "high",
2597
+ "num_candidates": 2,
2598
+ "alt_states": "",
2599
+ "queries": [
2600
+ "Pali, Rajasthan, India"
2601
+ ]
2602
+ },
2603
+ "Palkalaiperur||Tamil Nadu": {
2604
+ "lat": null,
2605
+ "lon": null,
2606
+ "area_km2": null,
2607
+ "state_geocoded": null,
2608
+ "confidence": "not_found",
2609
+ "num_candidates": 0,
2610
+ "alt_states": "",
2611
+ "queries": [
2612
+ "Palkalaiperur, Tamil Nadu, India",
2613
+ "Palkalaiperur, India"
2614
+ ]
2615
+ },
2616
+ "Palwal||Haryana": {
2617
+ "lat": 28.0599426,
2618
+ "lon": 77.3223422,
2619
+ "area_km2": 1985.7,
2620
+ "state_geocoded": "Haryana",
2621
+ "confidence": "high",
2622
+ "num_candidates": 3,
2623
+ "alt_states": "",
2624
+ "queries": [
2625
+ "Palwal, Haryana, India"
2626
+ ]
2627
+ },
2628
+ "Pampore||Jammu and Kashmir": {
2629
+ "lat": 34.01092,
2630
+ "lon": 74.91303,
2631
+ "area_km2": 3.7,
2632
+ "state_geocoded": "Jammu and Kashmir",
2633
+ "confidence": "high",
2634
+ "num_candidates": 2,
2635
+ "alt_states": "",
2636
+ "queries": [
2637
+ "Pampore, Jammu and Kashmir, India"
2638
+ ]
2639
+ },
2640
+ "Panchgaon||Haryana": {
2641
+ "lat": 21.9363716,
2642
+ "lon": 79.1973421,
2643
+ "area_km2": 15.3,
2644
+ "state_geocoded": "Madhya Pradesh",
2645
+ "confidence": "low_ambiguous",
2646
+ "num_candidates": 5,
2647
+ "alt_states": "Maharashtra, Uttarakhand",
2648
+ "queries": [
2649
+ "Panchgaon, Haryana, India",
2650
+ "Panchgaon, India"
2651
+ ]
2652
+ },
2653
+ "Panchkula||Haryana": {
2654
+ "lat": 30.6975401,
2655
+ "lon": 76.8551066,
2656
+ "area_km2": 1084.9,
2657
+ "state_geocoded": "Haryana",
2658
+ "confidence": "high",
2659
+ "num_candidates": 3,
2660
+ "alt_states": "",
2661
+ "queries": [
2662
+ "Panchkula, Haryana, India"
2663
+ ]
2664
+ },
2665
+ "Panipat||Haryana": {
2666
+ "lat": 29.3912753,
2667
+ "lon": 76.9771675,
2668
+ "area_km2": 1099.3,
2669
+ "state_geocoded": "Haryana",
2670
+ "confidence": "high",
2671
+ "num_candidates": 3,
2672
+ "alt_states": "",
2673
+ "queries": [
2674
+ "Panipat, Haryana, India"
2675
+ ]
2676
+ },
2677
+ "Parbhani||Maharashtra": {
2678
+ "lat": 19.2901981,
2679
+ "lon": 76.6026443,
2680
+ "area_km2": 11459.1,
2681
+ "state_geocoded": "Maharashtra",
2682
+ "confidence": "high",
2683
+ "num_candidates": 2,
2684
+ "alt_states": "",
2685
+ "queries": [
2686
+ "Parbhani, Maharashtra, India"
2687
+ ]
2688
+ },
2689
+ "Pathardih||Jharkhand": {
2690
+ "lat": 23.6753417,
2691
+ "lon": 86.4282846,
2692
+ "area_km2": 18.1,
2693
+ "state_geocoded": "Jharkhand",
2694
+ "confidence": "high",
2695
+ "num_candidates": 2,
2696
+ "alt_states": "",
2697
+ "queries": [
2698
+ "Pathardih, Jharkhand, India"
2699
+ ]
2700
+ },
2701
+ "Patiala||Punjab": {
2702
+ "lat": 30.2092778,
2703
+ "lon": 76.3397231,
2704
+ "area_km2": 7159.2,
2705
+ "state_geocoded": "Punjab",
2706
+ "confidence": "high",
2707
+ "num_candidates": 3,
2708
+ "alt_states": "",
2709
+ "queries": [
2710
+ "Patiala, Punjab, India"
2711
+ ]
2712
+ },
2713
+ "Patna||Bihar": {
2714
+ "lat": 25.6093239,
2715
+ "lon": 85.1235252,
2716
+ "area_km2": 314.3,
2717
+ "state_geocoded": "Bihar",
2718
+ "confidence": "high",
2719
+ "num_candidates": 3,
2720
+ "alt_states": "",
2721
+ "queries": [
2722
+ "Patna, Bihar, India"
2723
+ ]
2724
+ },
2725
+ "Perundurai||Tamil Nadu": {
2726
+ "lat": 11.2539029,
2727
+ "lon": 77.6288316,
2728
+ "area_km2": 1.2,
2729
+ "state_geocoded": "Tamil Nadu",
2730
+ "confidence": "high",
2731
+ "num_candidates": 4,
2732
+ "alt_states": "",
2733
+ "queries": [
2734
+ "Perundurai, Tamil Nadu, India"
2735
+ ]
2736
+ },
2737
+ "Pimpri Chinchwad||Maharashtra": {
2738
+ "lat": 18.6279288,
2739
+ "lon": 73.8009829,
2740
+ "area_km2": 1195.6,
2741
+ "state_geocoded": "Maharashtra",
2742
+ "confidence": "high",
2743
+ "num_candidates": 1,
2744
+ "alt_states": "",
2745
+ "queries": [
2746
+ "Pimpri Chinchwad, Maharashtra, India"
2747
+ ]
2748
+ },
2749
+ "Pimpri-Chinchwad||Maharashtra": {
2750
+ "lat": 18.6279288,
2751
+ "lon": 73.8009829,
2752
+ "area_km2": 1195.6,
2753
+ "state_geocoded": "Maharashtra",
2754
+ "confidence": "high",
2755
+ "num_candidates": 1,
2756
+ "alt_states": "",
2757
+ "queries": [
2758
+ "Pimpri-Chinchwad, Maharashtra, India"
2759
+ ]
2760
+ },
2761
+ "Pithampur||Madhya Pradesh": {
2762
+ "lat": 22.6105576,
2763
+ "lon": 75.6790283,
2764
+ "area_km2": 1164.7,
2765
+ "state_geocoded": "Madhya Pradesh",
2766
+ "confidence": "high",
2767
+ "num_candidates": 5,
2768
+ "alt_states": "",
2769
+ "queries": [
2770
+ "Pithampur, Madhya Pradesh, India"
2771
+ ]
2772
+ },
2773
+ "Pratapgarh||Rajasthan": {
2774
+ "lat": 24.0232221,
2775
+ "lon": 74.6250275,
2776
+ "area_km2": 8447.8,
2777
+ "state_geocoded": "Rajasthan",
2778
+ "confidence": "high",
2779
+ "num_candidates": 1,
2780
+ "alt_states": "",
2781
+ "queries": [
2782
+ "Pratapgarh, Rajasthan, India"
2783
+ ]
2784
+ },
2785
+ "Prayagraj||Uttar Pradesh": {
2786
+ "lat": 25.4381302,
2787
+ "lon": 81.8338005,
2788
+ "area_km2": 1139.4,
2789
+ "state_geocoded": "Uttar Pradesh",
2790
+ "confidence": "high",
2791
+ "num_candidates": 3,
2792
+ "alt_states": "",
2793
+ "queries": [
2794
+ "Prayagraj, Uttar Pradesh, India"
2795
+ ]
2796
+ },
2797
+ "Puducherry||Puducherry": {
2798
+ "lat": 11.9340568,
2799
+ "lon": 79.8306447,
2800
+ "area_km2": 1234.4,
2801
+ "state_geocoded": "Puducherry",
2802
+ "confidence": "high",
2803
+ "num_candidates": 2,
2804
+ "alt_states": "",
2805
+ "queries": [
2806
+ "Puducherry, Puducherry, India"
2807
+ ]
2808
+ },
2809
+ "Pudukottai||Tamil Nadu": {
2810
+ "lat": 10.3826515,
2811
+ "lon": 78.8191259,
2812
+ "area_km2": 20.4,
2813
+ "state_geocoded": "Tamil Nadu",
2814
+ "confidence": "high",
2815
+ "num_candidates": 4,
2816
+ "alt_states": "",
2817
+ "queries": [
2818
+ "Pudukottai, Tamil Nadu, India"
2819
+ ]
2820
+ },
2821
+ "Pune||Maharashtra": {
2822
+ "lat": 18.5213738,
2823
+ "lon": 73.8545071,
2824
+ "area_km2": 1196.3,
2825
+ "state_geocoded": "Maharashtra",
2826
+ "confidence": "high",
2827
+ "num_candidates": 2,
2828
+ "alt_states": "",
2829
+ "queries": [
2830
+ "Pune, Maharashtra, India"
2831
+ ]
2832
+ },
2833
+ "Purnia||Bihar": {
2834
+ "lat": 25.7758723,
2835
+ "lon": 87.4087667,
2836
+ "area_km2": 6710.8,
2837
+ "state_geocoded": "Bihar",
2838
+ "confidence": "high",
2839
+ "num_candidates": 3,
2840
+ "alt_states": "",
2841
+ "queries": [
2842
+ "Purnia, Bihar, India"
2843
+ ]
2844
+ },
2845
+ "Raichur||Karnataka": {
2846
+ "lat": 16.0547194,
2847
+ "lon": 76.9003647,
2848
+ "area_km2": 16379.9,
2849
+ "state_geocoded": "Karnataka",
2850
+ "confidence": "high",
2851
+ "num_candidates": 3,
2852
+ "alt_states": "",
2853
+ "queries": [
2854
+ "Raichur, Karnataka, India"
2855
+ ]
2856
+ },
2857
+ "Raipur||Chhattisgarh": {
2858
+ "lat": 21.2380912,
2859
+ "lon": 81.6336993,
2860
+ "area_km2": 1176.0,
2861
+ "state_geocoded": "Chhattisgarh",
2862
+ "confidence": "high",
2863
+ "num_candidates": 3,
2864
+ "alt_states": "",
2865
+ "queries": [
2866
+ "Raipur, Chhattisgarh, India"
2867
+ ]
2868
+ },
2869
+ "Rairangpur||Odisha": {
2870
+ "lat": 22.215745,
2871
+ "lon": 86.2325462,
2872
+ "area_km2": 769.8,
2873
+ "state_geocoded": "Odisha",
2874
+ "confidence": "high",
2875
+ "num_candidates": 2,
2876
+ "alt_states": "",
2877
+ "queries": [
2878
+ "Rairangpur, Odisha, India"
2879
+ ]
2880
+ },
2881
+ "Rajamahendravaram||Andhra Pradesh": {
2882
+ "lat": 17.0050454,
2883
+ "lon": 81.7804732,
2884
+ "area_km2": 1206.5,
2885
+ "state_geocoded": "Andhra Pradesh",
2886
+ "confidence": "high",
2887
+ "num_candidates": 1,
2888
+ "alt_states": "",
2889
+ "queries": [
2890
+ "Rajamahendravaram, Andhra Pradesh, India"
2891
+ ]
2892
+ },
2893
+ "Rajgir||Bihar": {
2894
+ "lat": 25.0299973,
2895
+ "lon": 85.4207368,
2896
+ "area_km2": 5.6,
2897
+ "state_geocoded": "Bihar",
2898
+ "confidence": "high",
2899
+ "num_candidates": 2,
2900
+ "alt_states": "",
2901
+ "queries": [
2902
+ "Rajgir, Bihar, India"
2903
+ ]
2904
+ },
2905
+ "Rajkot||Gujarat": {
2906
+ "lat": 22.3053263,
2907
+ "lon": 70.8028377,
2908
+ "area_km2": 1167.3,
2909
+ "state_geocoded": "Gujarat",
2910
+ "confidence": "high",
2911
+ "num_candidates": 2,
2912
+ "alt_states": "",
2913
+ "queries": [
2914
+ "Rajkot, Gujarat, India"
2915
+ ]
2916
+ },
2917
+ "Rajsamand||Rajasthan": {
2918
+ "lat": 25.2892459,
2919
+ "lon": 73.8241077,
2920
+ "area_km2": 13369.1,
2921
+ "state_geocoded": "Rajasthan",
2922
+ "confidence": "high",
2923
+ "num_candidates": 1,
2924
+ "alt_states": "",
2925
+ "queries": [
2926
+ "Rajsamand, Rajasthan, India"
2927
+ ]
2928
+ },
2929
+ "Ramanagara||Karnataka": {
2930
+ "lat": 12.720006,
2931
+ "lon": 77.3184199,
2932
+ "area_km2": 6498.8,
2933
+ "state_geocoded": "Karnataka",
2934
+ "confidence": "high",
2935
+ "num_candidates": 3,
2936
+ "alt_states": "",
2937
+ "queries": [
2938
+ "Ramanagara, Karnataka, India"
2939
+ ]
2940
+ },
2941
+ "Ramanathapuram||Tamil Nadu": {
2942
+ "lat": 9.5205576,
2943
+ "lon": 78.5184635,
2944
+ "area_km2": 13019.7,
2945
+ "state_geocoded": "Tamil Nadu",
2946
+ "confidence": "high",
2947
+ "num_candidates": 2,
2948
+ "alt_states": "",
2949
+ "queries": [
2950
+ "Ramanathapuram, Tamil Nadu, India"
2951
+ ]
2952
+ },
2953
+ "Ranipet||Tamil Nadu": {
2954
+ "lat": 12.9186243,
2955
+ "lon": 79.4081921,
2956
+ "area_km2": 4279.2,
2957
+ "state_geocoded": "Tamil Nadu",
2958
+ "confidence": "high",
2959
+ "num_candidates": 2,
2960
+ "alt_states": "",
2961
+ "queries": [
2962
+ "Ranipet, Tamil Nadu, India"
2963
+ ]
2964
+ },
2965
+ "Ratlam||Madhya Pradesh": {
2966
+ "lat": 23.50222,
2967
+ "lon": 74.9551534,
2968
+ "area_km2": 11080.6,
2969
+ "state_geocoded": "Madhya Pradesh",
2970
+ "confidence": "high",
2971
+ "num_candidates": 3,
2972
+ "alt_states": "",
2973
+ "queries": [
2974
+ "Ratlam, Madhya Pradesh, India"
2975
+ ]
2976
+ },
2977
+ "Rishikesh||Uttarakhand": {
2978
+ "lat": 30.1086537,
2979
+ "lon": 78.2916193,
2980
+ "area_km2": 68.2,
2981
+ "state_geocoded": "Uttarakhand",
2982
+ "confidence": "high",
2983
+ "num_candidates": 2,
2984
+ "alt_states": "",
2985
+ "queries": [
2986
+ "Rishikesh, Uttarakhand, India"
2987
+ ]
2988
+ },
2989
+ "Rohtak||Haryana": {
2990
+ "lat": 28.9010899,
2991
+ "lon": 76.5801935,
2992
+ "area_km2": 1104.5,
2993
+ "state_geocoded": "Haryana",
2994
+ "confidence": "high",
2995
+ "num_candidates": 4,
2996
+ "alt_states": "",
2997
+ "queries": [
2998
+ "Rohtak, Haryana, India"
2999
+ ]
3000
+ },
3001
+ "Rourkela||Odisha": {
3002
+ "lat": 22.2309255,
3003
+ "lon": 84.8678705,
3004
+ "area_km2": 1167.9,
3005
+ "state_geocoded": "Odisha",
3006
+ "confidence": "high",
3007
+ "num_candidates": 2,
3008
+ "alt_states": "",
3009
+ "queries": [
3010
+ "Rourkela, Odisha, India"
3011
+ ]
3012
+ },
3013
+ "Rupnagar||Punjab": {
3014
+ "lat": 31.0917102,
3015
+ "lon": 76.5289701,
3016
+ "area_km2": 3298.1,
3017
+ "state_geocoded": "Punjab",
3018
+ "confidence": "high",
3019
+ "num_candidates": 3,
3020
+ "alt_states": "",
3021
+ "queries": [
3022
+ "Rupnagar, Punjab, India"
3023
+ ]
3024
+ },
3025
+ "Sagar||Madhya Pradesh": {
3026
+ "lat": 23.8083076,
3027
+ "lon": 78.758254,
3028
+ "area_km2": 18735.1,
3029
+ "state_geocoded": "Madhya Pradesh",
3030
+ "confidence": "high",
3031
+ "num_candidates": 3,
3032
+ "alt_states": "",
3033
+ "queries": [
3034
+ "Sagar, Madhya Pradesh, India"
3035
+ ]
3036
+ },
3037
+ "Saharsa||Bihar": {
3038
+ "lat": 25.8330757,
3039
+ "lon": 86.6143751,
3040
+ "area_km2": 3016.1,
3041
+ "state_geocoded": "Bihar",
3042
+ "confidence": "high",
3043
+ "num_candidates": 3,
3044
+ "alt_states": "",
3045
+ "queries": [
3046
+ "Saharsa, Bihar, India"
3047
+ ]
3048
+ },
3049
+ "Salem||Tamil Nadu": {
3050
+ "lat": 11.6469616,
3051
+ "lon": 78.2106958,
3052
+ "area_km2": 9574.8,
3053
+ "state_geocoded": "Tamil Nadu",
3054
+ "confidence": "high",
3055
+ "num_candidates": 3,
3056
+ "alt_states": "",
3057
+ "queries": [
3058
+ "Salem, Tamil Nadu, India"
3059
+ ]
3060
+ },
3061
+ "Samastipur||Bihar": {
3062
+ "lat": 25.7747885,
3063
+ "lon": 85.8672314,
3064
+ "area_km2": 6036.5,
3065
+ "state_geocoded": "Bihar",
3066
+ "confidence": "high",
3067
+ "num_candidates": 3,
3068
+ "alt_states": "",
3069
+ "queries": [
3070
+ "Samastipur, Bihar, India"
3071
+ ]
3072
+ },
3073
+ "Sangli||Maharashtra": {
3074
+ "lat": 17.1726928,
3075
+ "lon": 74.5867654,
3076
+ "area_km2": 21345.0,
3077
+ "state_geocoded": "Maharashtra",
3078
+ "confidence": "high",
3079
+ "num_candidates": 2,
3080
+ "alt_states": "",
3081
+ "queries": [
3082
+ "Sangli, Maharashtra, India"
3083
+ ]
3084
+ },
3085
+ "Sasaram||Bihar": {
3086
+ "lat": 24.9509656,
3087
+ "lon": 84.0148733,
3088
+ "area_km2": 1143.9,
3089
+ "state_geocoded": "Bihar",
3090
+ "confidence": "high",
3091
+ "num_candidates": 2,
3092
+ "alt_states": "",
3093
+ "queries": [
3094
+ "Sasaram, Bihar, India"
3095
+ ]
3096
+ },
3097
+ "Satara||Maharashtra": {
3098
+ "lat": 17.6361289,
3099
+ "lon": 74.2982781,
3100
+ "area_km2": 17571.3,
3101
+ "state_geocoded": "Maharashtra",
3102
+ "confidence": "high",
3103
+ "num_candidates": 3,
3104
+ "alt_states": "",
3105
+ "queries": [
3106
+ "Satara, Maharashtra, India"
3107
+ ]
3108
+ },
3109
+ "Satna||Madhya Pradesh": {
3110
+ "lat": 24.6954445,
3111
+ "lon": 80.7770348,
3112
+ "area_km2": 11943.9,
3113
+ "state_geocoded": "Madhya Pradesh",
3114
+ "confidence": "high",
3115
+ "num_candidates": 3,
3116
+ "alt_states": "",
3117
+ "queries": [
3118
+ "Satna, Madhya Pradesh, India"
3119
+ ]
3120
+ },
3121
+ "Sawai Madhopur||Rajasthan": {
3122
+ "lat": 26.2290186,
3123
+ "lon": 76.3043561,
3124
+ "area_km2": 10797.1,
3125
+ "state_geocoded": "Rajasthan",
3126
+ "confidence": "high",
3127
+ "num_candidates": 3,
3128
+ "alt_states": "",
3129
+ "queries": [
3130
+ "Sawai Madhopur, Rajasthan, India"
3131
+ ]
3132
+ },
3133
+ "Shillong||Meghalaya": {
3134
+ "lat": 25.5759931,
3135
+ "lon": 91.8827872,
3136
+ "area_km2": 1138.0,
3137
+ "state_geocoded": "Meghalaya",
3138
+ "confidence": "high",
3139
+ "num_candidates": 2,
3140
+ "alt_states": "",
3141
+ "queries": [
3142
+ "Shillong, Meghalaya, India"
3143
+ ]
3144
+ },
3145
+ "Shivamogga||Karnataka": {
3146
+ "lat": 13.9326093,
3147
+ "lon": 75.574978,
3148
+ "area_km2": 1224.6,
3149
+ "state_geocoded": "Karnataka",
3150
+ "confidence": "high",
3151
+ "num_candidates": 2,
3152
+ "alt_states": "",
3153
+ "queries": [
3154
+ "Shivamogga, Karnataka, India"
3155
+ ]
3156
+ },
3157
+ "Sikar||Rajasthan": {
3158
+ "lat": 27.6624156,
3159
+ "lon": 75.0279971,
3160
+ "area_km2": 16671.7,
3161
+ "state_geocoded": "Rajasthan",
3162
+ "confidence": "high",
3163
+ "num_candidates": 3,
3164
+ "alt_states": "",
3165
+ "queries": [
3166
+ "Sikar, Rajasthan, India"
3167
+ ]
3168
+ },
3169
+ "Silchar||Assam": {
3170
+ "lat": 24.830302,
3171
+ "lon": 92.7875689,
3172
+ "area_km2": 1.1,
3173
+ "state_geocoded": "Assam",
3174
+ "confidence": "high",
3175
+ "num_candidates": 3,
3176
+ "alt_states": "",
3177
+ "queries": [
3178
+ "Silchar, Assam, India"
3179
+ ]
3180
+ },
3181
+ "Siliguri||West Bengal": {
3182
+ "lat": 26.7164127,
3183
+ "lon": 88.4309916,
3184
+ "area_km2": 84.5,
3185
+ "state_geocoded": "West Bengal",
3186
+ "confidence": "high",
3187
+ "num_candidates": 1,
3188
+ "alt_states": "",
3189
+ "queries": [
3190
+ "Siliguri, West Bengal, India"
3191
+ ]
3192
+ },
3193
+ "Singrauli||Madhya Pradesh": {
3194
+ "lat": 24.2431343,
3195
+ "lon": 82.3827672,
3196
+ "area_km2": 9649.6,
3197
+ "state_geocoded": "Madhya Pradesh",
3198
+ "confidence": "high",
3199
+ "num_candidates": 2,
3200
+ "alt_states": "",
3201
+ "queries": [
3202
+ "Singrauli, Madhya Pradesh, India"
3203
+ ]
3204
+ },
3205
+ "Sirohi||Rajasthan": {
3206
+ "lat": 24.8114047,
3207
+ "lon": 72.8300257,
3208
+ "area_km2": 9818.5,
3209
+ "state_geocoded": "Rajasthan",
3210
+ "confidence": "high",
3211
+ "num_candidates": 3,
3212
+ "alt_states": "",
3213
+ "queries": [
3214
+ "Sirohi, Rajasthan, India"
3215
+ ]
3216
+ },
3217
+ "Sirsa||Haryana": {
3218
+ "lat": 29.6063041,
3219
+ "lon": 74.9036568,
3220
+ "area_km2": 6850.0,
3221
+ "state_geocoded": "Haryana",
3222
+ "confidence": "high",
3223
+ "num_candidates": 3,
3224
+ "alt_states": "",
3225
+ "queries": [
3226
+ "Sirsa, Haryana, India"
3227
+ ]
3228
+ },
3229
+ "Sivasagar||Assam": {
3230
+ "lat": 26.9834936,
3231
+ "lon": 94.6394226,
3232
+ "area_km2": 1124.3,
3233
+ "state_geocoded": "Assam",
3234
+ "confidence": "high",
3235
+ "num_candidates": 2,
3236
+ "alt_states": "",
3237
+ "queries": [
3238
+ "Sivasagar, Assam, India"
3239
+ ]
3240
+ },
3241
+ "Siwan||Bihar": {
3242
+ "lat": 26.131008,
3243
+ "lon": 84.3910745,
3244
+ "area_km2": 4153.8,
3245
+ "state_geocoded": "Bihar",
3246
+ "confidence": "high",
3247
+ "num_candidates": 3,
3248
+ "alt_states": "",
3249
+ "queries": [
3250
+ "Siwan, Bihar, India"
3251
+ ]
3252
+ },
3253
+ "Solapur||Maharashtra": {
3254
+ "lat": 17.8499067,
3255
+ "lon": 75.2763203,
3256
+ "area_km2": 30031.8,
3257
+ "state_geocoded": "Maharashtra",
3258
+ "confidence": "high",
3259
+ "num_candidates": 3,
3260
+ "alt_states": "",
3261
+ "queries": [
3262
+ "Solapur, Maharashtra, India"
3263
+ ]
3264
+ },
3265
+ "Sonipat||Haryana": {
3266
+ "lat": 28.9953758,
3267
+ "lon": 77.0233627,
3268
+ "area_km2": 1103.5,
3269
+ "state_geocoded": "Haryana",
3270
+ "confidence": "high",
3271
+ "num_candidates": 3,
3272
+ "alt_states": "",
3273
+ "queries": [
3274
+ "Sonipat, Haryana, India"
3275
+ ]
3276
+ },
3277
+ "Sri Ganganagar||Rajasthan": {
3278
+ "lat": 29.4605539,
3279
+ "lon": 73.5850528,
3280
+ "area_km2": 25862.2,
3281
+ "state_geocoded": "Rajasthan",
3282
+ "confidence": "high",
3283
+ "num_candidates": 2,
3284
+ "alt_states": "",
3285
+ "queries": [
3286
+ "Sri Ganganagar, Rajasthan, India"
3287
+ ]
3288
+ },
3289
+ "Sri Vijaya Puram||Andaman and Nicobar Islands": {
3290
+ "lat": 11.6645348,
3291
+ "lon": 92.7390448,
3292
+ "area_km2": 1235.6,
3293
+ "state_geocoded": "Andaman and Nicobar Islands",
3294
+ "confidence": "high",
3295
+ "num_candidates": 1,
3296
+ "alt_states": "",
3297
+ "queries": [
3298
+ "Sri Vijaya Puram, Andaman and Nicobar Islands, India"
3299
+ ]
3300
+ },
3301
+ "Srinagar||Jammu and Kashmir": {
3302
+ "lat": 34.0747444,
3303
+ "lon": 74.8204443,
3304
+ "area_km2": 1045.1,
3305
+ "state_geocoded": "Jammu and Kashmir",
3306
+ "confidence": "high",
3307
+ "num_candidates": 4,
3308
+ "alt_states": "",
3309
+ "queries": [
3310
+ "Srinagar, Jammu and Kashmir, India"
3311
+ ]
3312
+ },
3313
+ "Suakati||Odisha": {
3314
+ "lat": null,
3315
+ "lon": null,
3316
+ "area_km2": null,
3317
+ "state_geocoded": null,
3318
+ "confidence": "not_found",
3319
+ "num_candidates": 0,
3320
+ "alt_states": "",
3321
+ "queries": [
3322
+ "Suakati, Odisha, India",
3323
+ "Suakati, India"
3324
+ ]
3325
+ },
3326
+ "Surat||Gujarat": {
3327
+ "lat": 21.2094892,
3328
+ "lon": 72.8317058,
3329
+ "area_km2": 1176.2,
3330
+ "state_geocoded": "Gujarat",
3331
+ "confidence": "high",
3332
+ "num_candidates": 2,
3333
+ "alt_states": "",
3334
+ "queries": [
3335
+ "Surat, Gujarat, India"
3336
+ ]
3337
+ },
3338
+ "Tensa||Odisha": {
3339
+ "lat": 21.8782061,
3340
+ "lon": 85.1842998,
3341
+ "area_km2": 7.5,
3342
+ "state_geocoded": "Odisha",
3343
+ "confidence": "high",
3344
+ "num_candidates": 3,
3345
+ "alt_states": "",
3346
+ "queries": [
3347
+ "Tensa, Odisha, India"
3348
+ ]
3349
+ },
3350
+ "Thane||Maharashtra": {
3351
+ "lat": 19.3653598,
3352
+ "lon": 73.3685437,
3353
+ "area_km2": 8862.5,
3354
+ "state_geocoded": "Maharashtra",
3355
+ "confidence": "high",
3356
+ "num_candidates": 2,
3357
+ "alt_states": "",
3358
+ "queries": [
3359
+ "Thane, Maharashtra, India"
3360
+ ]
3361
+ },
3362
+ "Thanjavur||Tamil Nadu": {
3363
+ "lat": 10.659037,
3364
+ "lon": 79.2014278,
3365
+ "area_km2": 10126.8,
3366
+ "state_geocoded": "Tamil Nadu",
3367
+ "confidence": "high",
3368
+ "num_candidates": 3,
3369
+ "alt_states": "",
3370
+ "queries": [
3371
+ "Thanjavur, Tamil Nadu, India"
3372
+ ]
3373
+ },
3374
+ "Thiruvananthapuram||Kerala": {
3375
+ "lat": 8.4882267,
3376
+ "lon": 76.947551,
3377
+ "area_km2": 1247.9,
3378
+ "state_geocoded": "Kerala",
3379
+ "confidence": "high",
3380
+ "num_candidates": 3,
3381
+ "alt_states": "",
3382
+ "queries": [
3383
+ "Thiruvananthapuram, Kerala, India"
3384
+ ]
3385
+ },
3386
+ "Thoothukudi||Tamil Nadu": {
3387
+ "lat": 8.8457035,
3388
+ "lon": 77.9938178,
3389
+ "area_km2": 9102.8,
3390
+ "state_geocoded": "Tamil Nadu",
3391
+ "confidence": "high",
3392
+ "num_candidates": 2,
3393
+ "alt_states": "",
3394
+ "queries": [
3395
+ "Thoothukudi, Tamil Nadu, India"
3396
+ ]
3397
+ },
3398
+ "Thrissur||Kerala": {
3399
+ "lat": 10.5270099,
3400
+ "lon": 76.214621,
3401
+ "area_km2": 1240.4,
3402
+ "state_geocoded": "Kerala",
3403
+ "confidence": "high",
3404
+ "num_candidates": 2,
3405
+ "alt_states": "",
3406
+ "queries": [
3407
+ "Thrissur, Kerala, India"
3408
+ ]
3409
+ },
3410
+ "Tiruchirappalli||Tamil Nadu": {
3411
+ "lat": 10.8071144,
3412
+ "lon": 78.6880939,
3413
+ "area_km2": 138.4,
3414
+ "state_geocoded": "Tamil Nadu",
3415
+ "confidence": "high",
3416
+ "num_candidates": 2,
3417
+ "alt_states": "",
3418
+ "queries": [
3419
+ "Tiruchirappalli, Tamil Nadu, India"
3420
+ ]
3421
+ },
3422
+ "Tirumala||Andhra Pradesh": {
3423
+ "lat": 13.6868214,
3424
+ "lon": 79.3524064,
3425
+ "area_km2": 76.6,
3426
+ "state_geocoded": "Andhra Pradesh",
3427
+ "confidence": "high",
3428
+ "num_candidates": 2,
3429
+ "alt_states": "",
3430
+ "queries": [
3431
+ "Tirumala, Andhra Pradesh, India"
3432
+ ]
3433
+ },
3434
+ "Tirunelveli||Tamil Nadu": {
3435
+ "lat": 8.5495014,
3436
+ "lon": 77.5805178,
3437
+ "area_km2": 8032.2,
3438
+ "state_geocoded": "Tamil Nadu",
3439
+ "confidence": "high",
3440
+ "num_candidates": 3,
3441
+ "alt_states": "",
3442
+ "queries": [
3443
+ "Tirunelveli, Tamil Nadu, India"
3444
+ ]
3445
+ },
3446
+ "Tirupati||Andhra Pradesh": {
3447
+ "lat": 13.6316368,
3448
+ "lon": 79.4231711,
3449
+ "area_km2": 1226.1,
3450
+ "state_geocoded": "Andhra Pradesh",
3451
+ "confidence": "high",
3452
+ "num_candidates": 5,
3453
+ "alt_states": "",
3454
+ "queries": [
3455
+ "Tirupati, Andhra Pradesh, India"
3456
+ ]
3457
+ },
3458
+ "Tirupur||Tamil Nadu": {
3459
+ "lat": 11.1671878,
3460
+ "lon": 77.3472673,
3461
+ "area_km2": 0.0,
3462
+ "state_geocoded": "Tamil Nadu",
3463
+ "confidence": "high",
3464
+ "num_candidates": 4,
3465
+ "alt_states": "",
3466
+ "queries": [
3467
+ "Tirupur, Tamil Nadu, India"
3468
+ ]
3469
+ },
3470
+ "Tonk||Rajasthan": {
3471
+ "lat": 26.1223198,
3472
+ "lon": 75.6632235,
3473
+ "area_km2": 11785.5,
3474
+ "state_geocoded": "Rajasthan",
3475
+ "confidence": "high",
3476
+ "num_candidates": 3,
3477
+ "alt_states": "",
3478
+ "queries": [
3479
+ "Tonk, Rajasthan, India"
3480
+ ]
3481
+ },
3482
+ "Tumakuru||Karnataka": {
3483
+ "lat": 13.4192512,
3484
+ "lon": 76.8810004,
3485
+ "area_km2": 22393.8,
3486
+ "state_geocoded": "Karnataka",
3487
+ "confidence": "high",
3488
+ "num_candidates": 3,
3489
+ "alt_states": "",
3490
+ "queries": [
3491
+ "Tumakuru, Karnataka, India"
3492
+ ]
3493
+ },
3494
+ "Tumidih||Chhattisgarh": {
3495
+ "lat": null,
3496
+ "lon": null,
3497
+ "area_km2": null,
3498
+ "state_geocoded": null,
3499
+ "confidence": "not_found",
3500
+ "num_candidates": 0,
3501
+ "alt_states": "",
3502
+ "queries": [
3503
+ "Tumidih, Chhattisgarh, India",
3504
+ "Tumidih, India"
3505
+ ]
3506
+ },
3507
+ "Udaipur||Rajasthan": {
3508
+ "lat": 24.578721,
3509
+ "lon": 73.6862571,
3510
+ "area_km2": 1147.4,
3511
+ "state_geocoded": "Rajasthan",
3512
+ "confidence": "high",
3513
+ "num_candidates": 3,
3514
+ "alt_states": "",
3515
+ "queries": [
3516
+ "Udaipur, Rajasthan, India"
3517
+ ]
3518
+ },
3519
+ "Udupi||Karnataka": {
3520
+ "lat": 13.5269784,
3521
+ "lon": 74.8731879,
3522
+ "area_km2": 6798.2,
3523
+ "state_geocoded": "Karnataka",
3524
+ "confidence": "high",
3525
+ "num_candidates": 2,
3526
+ "alt_states": "",
3527
+ "queries": [
3528
+ "Udupi, Karnataka, India"
3529
+ ]
3530
+ },
3531
+ "Ujjain||Madhya Pradesh": {
3532
+ "lat": 23.1885131,
3533
+ "lon": 75.7716562,
3534
+ "area_km2": 1159.7,
3535
+ "state_geocoded": "Madhya Pradesh",
3536
+ "confidence": "high",
3537
+ "num_candidates": 2,
3538
+ "alt_states": "",
3539
+ "queries": [
3540
+ "Ujjain, Madhya Pradesh, India"
3541
+ ]
3542
+ },
3543
+ "Ulhasnagar||Maharashtra": {
3544
+ "lat": 19.2236329,
3545
+ "lon": 73.1671515,
3546
+ "area_km2": 24.8,
3547
+ "state_geocoded": "Maharashtra",
3548
+ "confidence": "high",
3549
+ "num_candidates": 2,
3550
+ "alt_states": "",
3551
+ "queries": [
3552
+ "Ulhasnagar, Maharashtra, India"
3553
+ ]
3554
+ },
3555
+ "Vadodara||Gujarat": {
3556
+ "lat": 22.2973142,
3557
+ "lon": 73.1942567,
3558
+ "area_km2": 1167.3,
3559
+ "state_geocoded": "Gujarat",
3560
+ "confidence": "high",
3561
+ "num_candidates": 2,
3562
+ "alt_states": "",
3563
+ "queries": [
3564
+ "Vadodara, Gujarat, India"
3565
+ ]
3566
+ },
3567
+ "Vapi||Gujarat": {
3568
+ "lat": 20.3735482,
3569
+ "lon": 72.9084376,
3570
+ "area_km2": 1.2,
3571
+ "state_geocoded": "Gujarat",
3572
+ "confidence": "high",
3573
+ "num_candidates": 2,
3574
+ "alt_states": "",
3575
+ "queries": [
3576
+ "Vapi, Gujarat, India"
3577
+ ]
3578
+ },
3579
+ "Varanasi||Uttar Pradesh": {
3580
+ "lat": 25.3356491,
3581
+ "lon": 83.0076292,
3582
+ "area_km2": 1140.3,
3583
+ "state_geocoded": "Uttar Pradesh",
3584
+ "confidence": "high",
3585
+ "num_candidates": 2,
3586
+ "alt_states": "",
3587
+ "queries": [
3588
+ "Varanasi, Uttar Pradesh, India"
3589
+ ]
3590
+ },
3591
+ "Vatva||Gujarat": {
3592
+ "lat": 22.9589978,
3593
+ "lon": 72.6297981,
3594
+ "area_km2": 1.1,
3595
+ "state_geocoded": "Gujarat",
3596
+ "confidence": "high",
3597
+ "num_candidates": 2,
3598
+ "alt_states": "",
3599
+ "queries": [
3600
+ "Vatva, Gujarat, India"
3601
+ ]
3602
+ },
3603
+ "Vellore||Tamil Nadu": {
3604
+ "lat": 12.9021849,
3605
+ "lon": 79.061104,
3606
+ "area_km2": 4497.9,
3607
+ "state_geocoded": "Tamil Nadu",
3608
+ "confidence": "high",
3609
+ "num_candidates": 3,
3610
+ "alt_states": "",
3611
+ "queries": [
3612
+ "Vellore, Tamil Nadu, India"
3613
+ ]
3614
+ },
3615
+ "Vijayapura||Karnataka": {
3616
+ "lat": 16.814415,
3617
+ "lon": 75.8933856,
3618
+ "area_km2": 17793.8,
3619
+ "state_geocoded": "Karnataka",
3620
+ "confidence": "high",
3621
+ "num_candidates": 3,
3622
+ "alt_states": "",
3623
+ "queries": [
3624
+ "Vijayapura, Karnataka, India"
3625
+ ]
3626
+ },
3627
+ "Vijayawada||Andhra Pradesh": {
3628
+ "lat": 16.5115306,
3629
+ "lon": 80.6160469,
3630
+ "area_km2": 1209.6,
3631
+ "state_geocoded": "Andhra Pradesh",
3632
+ "confidence": "high",
3633
+ "num_candidates": 4,
3634
+ "alt_states": "",
3635
+ "queries": [
3636
+ "Vijayawada, Andhra Pradesh, India"
3637
+ ]
3638
+ },
3639
+ "Virar||Maharashtra": {
3640
+ "lat": 19.4497996,
3641
+ "lon": 72.8120613,
3642
+ "area_km2": 18.6,
3643
+ "state_geocoded": "Maharashtra",
3644
+ "confidence": "high",
3645
+ "num_candidates": 4,
3646
+ "alt_states": "",
3647
+ "queries": [
3648
+ "Virar, Maharashtra, India"
3649
+ ]
3650
+ },
3651
+ "Virudhunagar||Tamil Nadu": {
3652
+ "lat": 9.4926289,
3653
+ "lon": 77.8631831,
3654
+ "area_km2": 7762.9,
3655
+ "state_geocoded": "Tamil Nadu",
3656
+ "confidence": "high",
3657
+ "num_candidates": 2,
3658
+ "alt_states": "",
3659
+ "queries": [
3660
+ "Virudhunagar, Tamil Nadu, India"
3661
+ ]
3662
+ },
3663
+ "Visakhapatnam||Andhra Pradesh": {
3664
+ "lat": 17.6935526,
3665
+ "lon": 83.2921297,
3666
+ "area_km2": 1202.0,
3667
+ "state_geocoded": "Andhra Pradesh",
3668
+ "confidence": "high",
3669
+ "num_candidates": 2,
3670
+ "alt_states": "",
3671
+ "queries": [
3672
+ "Visakhapatnam, Andhra Pradesh, India"
3673
+ ]
3674
+ },
3675
+ "Vrindavan||Uttar Pradesh": {
3676
+ "lat": 27.5753726,
3677
+ "lon": 77.6938045,
3678
+ "area_km2": 69.9,
3679
+ "state_geocoded": "Uttar Pradesh",
3680
+ "confidence": "high",
3681
+ "num_candidates": 2,
3682
+ "alt_states": "",
3683
+ "queries": [
3684
+ "Vrindavan, Uttar Pradesh, India"
3685
+ ]
3686
+ },
3687
+ "Yadgir||Karnataka": {
3688
+ "lat": 16.5744123,
3689
+ "lon": 76.9254434,
3690
+ "area_km2": 10663.6,
3691
+ "state_geocoded": "Karnataka",
3692
+ "confidence": "high",
3693
+ "num_candidates": 1,
3694
+ "alt_states": "",
3695
+ "queries": [
3696
+ "Yadgir, Karnataka, India"
3697
+ ]
3698
+ },
3699
+ "Yamuna Nagar||Haryana": {
3700
+ "lat": 30.1389108,
3701
+ "lon": 77.301064,
3702
+ "area_km2": 0.0,
3703
+ "state_geocoded": "Haryana",
3704
+ "confidence": "high",
3705
+ "num_candidates": 1,
3706
+ "alt_states": "",
3707
+ "queries": [
3708
+ "Yamuna Nagar, Haryana, India"
3709
+ ]
3710
+ }
3711
+ }
cpcb_clean_report.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CPCB Ground-Truth Cleaning Report
2
+
3
+ - Input: `merged_cpcb_data.csv` — **1,549,637 rows**, 34 columns
4
+ - Output: `merged_cpcb_clean.csv` — **972,562 rows**, 20 columns
5
+ - Net removed: **577,075 rows** (37.2%)
6
+
7
+ ## Rows removed, by reason
8
+ | step | rows |
9
+ |---|---|
10
+ | dropped rows with no lat/lon (unusable in node graph) | 26,296 |
11
+ | negative concentrations set to NULL | 0 |
12
+ | dropped rows where ALL 7 target pollutants are null | 546,277 |
13
+ | dropped duplicate (station,lat,lon,date) rows | 4,502 |
14
+
15
+ ## Columns dropped (garbage / redundant / met)
16
+ `SourceFile`, `FileYear`, `State_Raw`, `AT (°C)`, `RH (%)`, `WS (m/s)`, `WD (deg)`, `RF (mm)`, `TOT-RF (mm)`, `SR (W/mt2)`, `BP (mmHg)`, `VWS (m/s)`, `Year`, `Month`
17
+
18
+ ## Kept columns
19
+ `date`, `station`, `city`, `state`, `state_hint`, `state_mismatch_flag`, `geocode_confidence`, `agency`, `lat`, `lon`, `coverage_area_km2`, `pm25`, `pm10`, `no2`, `so2`, `co`, `o3`, `nh3`, `no`, `nox_ppb`
20
+
21
+ ## Pollutant coverage after cleaning (non-null %)
22
+ | pollutant | non-null % | target? |
23
+ |---|---|---|
24
+ | pm25 | 93.2% | yes |
25
+ | pm10 | 88.5% | yes |
26
+ | no2 | 96.6% | yes |
27
+ | so2 | 94.1% | yes |
28
+ | co | 94.6% | yes |
29
+ | o3 | 91.7% | yes |
30
+ | nh3 | 80.1% | yes |
31
+ | no | 95.0% | aux |
32
+ | nox_ppb | 96.0% | aux |
33
+
34
+ ## Year coverage
35
+ | year | rows |
36
+ |---|---|
37
+ | 2009 | 4,057 |
38
+ | 2010 | 4,725 |
39
+ | 2011 | 6,596 |
40
+ | 2012 | 6,700 |
41
+ | 2013 | 6,094 |
42
+ | 2014 | 5,553 |
43
+ | 2015 | 8,524 |
44
+ | 2016 | 12,644 |
45
+ | 2017 | 18,444 |
46
+ | 2018 | 39,186 |
47
+ | 2019 | 60,018 |
48
+ | 2020 | 76,712 |
49
+ | 2021 | 96,640 |
50
+ | 2022 | 115,967 |
51
+ | 2023 | 156,676 |
52
+ | 2024 | 177,757 |
53
+ | 2025 | 176,269 |
54
+
55
+ ## Geocode confidence (rows)
56
+ | confidence | rows |
57
+ |---|---|
58
+ | high | 841,064 |
59
+ | medium_state_mismatch | 126,158 |
60
+ | low_ambiguous | 5,340 |
61
+
62
+ > `not_found` cities were dropped (no coordinates). Hand-add lat/lon for any that matter: Bileipada, DU Delhi, Kunjemura, Milupara, Palkalaiperur, Suakati, Tumidih.
63
+
64
+ ## State mismatches
65
+ - **9,588 rows** flagged (folder state ≠ geocoded state). `state` = geocoded (primary); `state_hint` = folder; flag kept. **Do not auto-resolve** — mixed cause: some folder-wrong (Bhilai/Bilaspur/Korba → Chhattisgarh, geocode correct), some geocode-wrong (Chhal, Panchgaon). Manual review needed; coordinates (not state) drive the node graph.
66
+
67
+ ## Notes
68
+ - Pollutant NULLs are **left null** (missing ≠ 0). Do not impute; they mask in training.
69
+ - `nox_ppb` is in **ppb** (all others µg/m³, CO in mg/m³) — unit differs, kept separate.
70
+ - Timestamps treated as IST calendar dates (CPCB is local IST) — aligns with `node_observations_daily` date convention.
duplicate_downloads.csv ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ kept_file,skipped_file
2
+ C:\Users\offrk\Desktop\cpcb\India CPCB\AP_Rajiv_Gandhi_Park__Vijayawada_-_APPCB\Rajiv_Gandhi_Park__Vijayawada_-_APPCB_2023.csv,C:\Users\offrk\Desktop\cpcb\India CPCB\AP_Rajiv_Gandhi_Park__Vijayawada_-_APPCB\Rajiv_Gandhi_Park__Vijayawada_-_APPCB_2023 (1).csv
3
+ C:\Users\offrk\Desktop\cpcb\India CPCB\AP_Rajiv_Gandhi_Park__Vijayawada_-_APPCB\Rajiv_Gandhi_Park__Vijayawada_-_APPCB_2024.csv,C:\Users\offrk\Desktop\cpcb\India CPCB\AP_Rajiv_Gandhi_Park__Vijayawada_-_APPCB\Rajiv_Gandhi_Park__Vijayawada_-_APPCB_2024 (1).csv
4
+ C:\Users\offrk\Desktop\cpcb\India CPCB\AP_Rajiv_Gandhi_Park__Vijayawada_-_APPCB\Rajiv_Gandhi_Park__Vijayawada_-_APPCB_2025.csv,C:\Users\offrk\Desktop\cpcb\India CPCB\AP_Rajiv_Gandhi_Park__Vijayawada_-_APPCB\Rajiv_Gandhi_Park__Vijayawada_-_APPCB_2025 (1).csv
5
+ C:\Users\offrk\Desktop\cpcb\India CPCB\delhi_IIT_Delhi__Delhi_-_IITM\IIT_Delhi__Delhi_-_IITM_2025.csv,C:\Users\offrk\Desktop\cpcb\India CPCB\delhi_IIT_Delhi__Delhi_-_IITM\IIT_Delhi__Delhi_-_IITM_2025 (1).csv
6
+ C:\Users\offrk\Desktop\cpcb\India CPCB\Maharashtra_Ram_Nagar__Nagpur_-_MPCB\Ram_Nagar__Nagpur_-_MPCB_2017.csv,C:\Users\offrk\Desktop\cpcb\India CPCB\Maharashtra_Ram_Nagar__Nagpur_-_MPCB\Ram_Nagar__Nagpur_-_MPCB_2017 (1).csv
7
+ C:\Users\offrk\Desktop\cpcb\India CPCB\Maharashtra_Ram_Nagar__Nagpur_-_MPCB\Ram_Nagar__Nagpur_-_MPCB_2023.csv,C:\Users\offrk\Desktop\cpcb\India CPCB\Maharashtra_Ram_Nagar__Nagpur_-_MPCB\Ram_Nagar__Nagpur_-_MPCB_2023 (1).csv
8
+ C:\Users\offrk\Desktop\cpcb\India CPCB\Maharashtra_Ram_Nagar__Nagpur_-_MPCB\Ram_Nagar__Nagpur_-_MPCB_2024.csv,C:\Users\offrk\Desktop\cpcb\India CPCB\Maharashtra_Ram_Nagar__Nagpur_-_MPCB\Ram_Nagar__Nagpur_-_MPCB_2024 (1).csv
9
+ C:\Users\offrk\Desktop\cpcb\India CPCB\Maharashtra_Ram_Nagar__Nagpur_-_MPCB\Ram_Nagar__Nagpur_-_MPCB_2025.csv,C:\Users\offrk\Desktop\cpcb\India CPCB\Maharashtra_Ram_Nagar__Nagpur_-_MPCB\Ram_Nagar__Nagpur_-_MPCB_2025 (1).csv
eda_report.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CPCB Data Pipeline -- EDA Report
2
+ Generated: 2026-07-15T10:29:41
3
+
4
+ ## Overview
5
+ - Total CSV files scanned: **4468**
6
+ - Duplicate-download files skipped (Chrome ' (1).csv' re-downloads): **8**
7
+ - Files failed to load: **0**
8
+ - Total merged rows: **1,549,637**
9
+ - Total rows after column cleanup: **1,549,637**
10
+ - Unique cities: **307**
11
+ - Unique (city, state) pairs geocoded: **308**
12
+ - Unique states (raw folder prefix): **31**
13
+ - Unique stations: **566**
14
+
15
+ ## Year Coverage
16
+ - 2009 to 2025
17
+
18
+ | Year | Rows |
19
+ |---|---|
20
+ | 2009 | 4,761 |
21
+ | 2010 | 5,902 |
22
+ | 2011 | 8,400 |
23
+ | 2012 | 8,906 |
24
+ | 2013 | 9,125 |
25
+ | 2014 | 8,581 |
26
+ | 2015 | 10,283 |
27
+ | 2016 | 17,449 |
28
+ | 2017 | 165,300 |
29
+ | 2018 | 137,436 |
30
+ | 2019 | 139,674 |
31
+ | 2020 | 142,618 |
32
+ | 2021 | 147,705 |
33
+ | 2022 | 148,619 |
34
+ | 2023 | 191,874 |
35
+ | 2024 | 196,971 |
36
+ | 2025 | 206,033 |
37
+
38
+ ## Geocoding Confidence (DO NOT assume perfect coords)
39
+ | Confidence | # Cities | Meaning |
40
+ |---|---|---|
41
+ | high | 293 | single unambiguous match, state confirmed |
42
+ | not_found | 7 | Nominatim returned nothing |
43
+ | medium_state_mismatch | 5 | top match's state disagrees with folder hint |
44
+ | low_ambiguous | 3 | multiple candidates found across different states |
45
+
46
+ Full city-level detail (lat/lon/candidates/queries tried) in `cities_needs_review.csv` for anything not `high`. **Manually verify those before trusting them in AtmosIQ's node graph.**
47
+
48
+ ## Data Quality: State-Prefix Mismatches
49
+ Folder-name state prefix vs geocoded actual state disagreed for **69** unique station/city combos. Full list in `state_mismatch_audit.csv`. Sample:
50
+
51
+ | Folder State (raw) | Geocoded State | City | Station |
52
+ |---|---|---|---|
53
+ | assam | Meghalaya | Byrnihat | Central Academy for SFS |
54
+ | assam | Meghalaya | Byrnihat | Central Academy for SFS |
55
+ | assam | Meghalaya | Byrnihat | Central Academy for SFS |
56
+ | assam | Meghalaya | Byrnihat | Central Academy for SFS |
57
+ | assam | Meghalaya | Byrnihat | Central Academy for SFS |
58
+ | assam | Meghalaya | Byrnihat | Central Academy for SFS |
59
+ | assam | Meghalaya | Byrnihat | Central Academy for SFS |
60
+ | assam | Meghalaya | Byrnihat | Central Academy for SFS |
61
+ | assam | Meghalaya | Byrnihat | Central Academy for SFS |
62
+ | bihar | Chhattisgarh | Bhilai | 32Bungalows |
63
+ | bihar | Chhattisgarh | Bhilai | 32Bungalows |
64
+ | bihar | Chhattisgarh | Bhilai | 32Bungalows |
65
+ | bihar | Chhattisgarh | Bhilai | 32Bungalows |
66
+ | bihar | Chhattisgarh | Bhilai | 32Bungalows |
67
+ | bihar | Chhattisgarh | Bhilai | 32Bungalows |
68
+
69
+ ## Columns Dropped
70
+ - VOC/organic columns (sparse by CPCB design): Benzene (µg/m³), Toluene (µg/m³), Xylene (µg/m³), O Xylene (µg/m³), Eth-Benzene (µg/m³), MP-Xylene (µg/m³)
71
+ - Auto-dropped (>95% NaN dataset-wide): none
72
+
73
+ ## Missing Value % by Column (before cleanup)
74
+ | Column | % Missing |
75
+ |---|---|
76
+ | VWS (m/s) | 88.1% |
77
+ | BP (mmHg) | 69.3% |
78
+ | RF (mm) | 61.9% |
79
+ | AT (°C) | 58.5% |
80
+ | SR (W/mt2) | 50.7% |
81
+ | NH3 (µg/m³) | 49.1% |
82
+ | RH (%) | 45.7% |
83
+ | WS (m/s) | 45.3% |
84
+ | WD (deg) | 44.7% |
85
+ | PM10 (µg/m³) | 43.4% |
86
+ | Ozone (µg/m³) | 41.4% |
87
+ | PM2.5 (µg/m³) | 40.5% |
88
+ | SO2 (µg/m³) | 40.4% |
89
+ | CO (mg/m³) | 39.6% |
90
+ | NO (µg/m³) | 39.4% |
91
+ | NOx (ppb) | 38.7% |
92
+ | NO2 (µg/m³) | 38.4% |
93
+ | TOT-RF (mm) | 14.0% |
94
+ | State_Geocoded | 11.5% |
95
+ | state_mismatch_flag | 11.5% |
96
+ | lat | 1.7% |
97
+ | lon | 1.7% |
98
+ | coverage_area_km2 | 1.7% |
99
+ | City | 0.2% |
100
+ | geocode_confidence | 0.2% |
101
+ | FileYear | 0.2% |
102
+ | Agency | 0.2% |
103
+ | Timestamp | 0.0% |
104
+ | Station | 0.0% |
105
+ | State_Hint | 0.0% |
106
+ | State_Raw | 0.0% |
107
+ | SourceFile | 0.0% |
108
+
109
+ ## Cities Not Geocoded
110
+ 7 (city, state) pairs failed geocoding (need manual lat/lon): Bileipada, DU Delhi, Kunjemura, Milupara, Palkalaiperur, Suakati, Tumidih
111
+
112
+ ## Filenames That Didn't Match Expected Pattern
113
+ 9 files -- review naming manually:
114
+
115
+ - `C:\Users\offrk\Desktop\cpcb\India CPCB\Odisha_Talcher_Coalfields_Talcher_-_OSPCB\Talcher_Coalfields_Talcher_-_OSPCB_2017.csv`
116
+ - `C:\Users\offrk\Desktop\cpcb\India CPCB\Odisha_Talcher_Coalfields_Talcher_-_OSPCB\Talcher_Coalfields_Talcher_-_OSPCB_2018.csv`
117
+ - `C:\Users\offrk\Desktop\cpcb\India CPCB\Odisha_Talcher_Coalfields_Talcher_-_OSPCB\Talcher_Coalfields_Talcher_-_OSPCB_2019.csv`
118
+ - `C:\Users\offrk\Desktop\cpcb\India CPCB\Odisha_Talcher_Coalfields_Talcher_-_OSPCB\Talcher_Coalfields_Talcher_-_OSPCB_2020.csv`
119
+ - `C:\Users\offrk\Desktop\cpcb\India CPCB\Odisha_Talcher_Coalfields_Talcher_-_OSPCB\Talcher_Coalfields_Talcher_-_OSPCB_2021.csv`
120
+ - `C:\Users\offrk\Desktop\cpcb\India CPCB\Odisha_Talcher_Coalfields_Talcher_-_OSPCB\Talcher_Coalfields_Talcher_-_OSPCB_2022.csv`
121
+ - `C:\Users\offrk\Desktop\cpcb\India CPCB\Odisha_Talcher_Coalfields_Talcher_-_OSPCB\Talcher_Coalfields_Talcher_-_OSPCB_2023.csv`
122
+ - `C:\Users\offrk\Desktop\cpcb\India CPCB\Odisha_Talcher_Coalfields_Talcher_-_OSPCB\Talcher_Coalfields_Talcher_-_OSPCB_2024.csv`
123
+ - `C:\Users\offrk\Desktop\cpcb\India CPCB\Odisha_Talcher_Coalfields_Talcher_-_OSPCB\Talcher_Coalfields_Talcher_-_OSPCB_2025.csv`
merged_cpcb_clean.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96597a77f3608e92c1f329457589df1f239525a2d0deb095f4de69e5a5dc2347
3
+ size 158995448
merged_cpcb_data.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f262b29b154462235b76de5909813cadd173e07b08332d675e6c7d1a6015201
3
+ size 493851760
state_mismatch_audit.csv ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ State_Raw,State_Geocoded,City,Station,SourceFile
2
+ assam,Meghalaya,Byrnihat,Central Academy for SFS,C:\Users\offrk\Desktop\cpcb\India CPCB\assam_Central_Academy_for_SFS__Byrnihat_-_PCBA\Central_Academy_for_SFS__Byrnihat_-_PCBA_2017.csv
3
+ assam,Meghalaya,Byrnihat,Central Academy for SFS,C:\Users\offrk\Desktop\cpcb\India CPCB\assam_Central_Academy_for_SFS__Byrnihat_-_PCBA\Central_Academy_for_SFS__Byrnihat_-_PCBA_2018.csv
4
+ assam,Meghalaya,Byrnihat,Central Academy for SFS,C:\Users\offrk\Desktop\cpcb\India CPCB\assam_Central_Academy_for_SFS__Byrnihat_-_PCBA\Central_Academy_for_SFS__Byrnihat_-_PCBA_2019.csv
5
+ assam,Meghalaya,Byrnihat,Central Academy for SFS,C:\Users\offrk\Desktop\cpcb\India CPCB\assam_Central_Academy_for_SFS__Byrnihat_-_PCBA\Central_Academy_for_SFS__Byrnihat_-_PCBA_2020.csv
6
+ assam,Meghalaya,Byrnihat,Central Academy for SFS,C:\Users\offrk\Desktop\cpcb\India CPCB\assam_Central_Academy_for_SFS__Byrnihat_-_PCBA\Central_Academy_for_SFS__Byrnihat_-_PCBA_2021.csv
7
+ assam,Meghalaya,Byrnihat,Central Academy for SFS,C:\Users\offrk\Desktop\cpcb\India CPCB\assam_Central_Academy_for_SFS__Byrnihat_-_PCBA\Central_Academy_for_SFS__Byrnihat_-_PCBA_2022.csv
8
+ assam,Meghalaya,Byrnihat,Central Academy for SFS,C:\Users\offrk\Desktop\cpcb\India CPCB\assam_Central_Academy_for_SFS__Byrnihat_-_PCBA\Central_Academy_for_SFS__Byrnihat_-_PCBA_2023.csv
9
+ assam,Meghalaya,Byrnihat,Central Academy for SFS,C:\Users\offrk\Desktop\cpcb\India CPCB\assam_Central_Academy_for_SFS__Byrnihat_-_PCBA\Central_Academy_for_SFS__Byrnihat_-_PCBA_2024.csv
10
+ assam,Meghalaya,Byrnihat,Central Academy for SFS,C:\Users\offrk\Desktop\cpcb\India CPCB\assam_Central_Academy_for_SFS__Byrnihat_-_PCBA\Central_Academy_for_SFS__Byrnihat_-_PCBA_2025.csv
11
+ bihar,Chhattisgarh,Bhilai,32Bungalows,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_32Bungalows__Bhilai_-_CECB\32Bungalows__Bhilai_-_CECB_2017.csv
12
+ bihar,Chhattisgarh,Bhilai,32Bungalows,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_32Bungalows__Bhilai_-_CECB\32Bungalows__Bhilai_-_CECB_2018.csv
13
+ bihar,Chhattisgarh,Bhilai,32Bungalows,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_32Bungalows__Bhilai_-_CECB\32Bungalows__Bhilai_-_CECB_2019.csv
14
+ bihar,Chhattisgarh,Bhilai,32Bungalows,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_32Bungalows__Bhilai_-_CECB\32Bungalows__Bhilai_-_CECB_2020.csv
15
+ bihar,Chhattisgarh,Bhilai,32Bungalows,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_32Bungalows__Bhilai_-_CECB\32Bungalows__Bhilai_-_CECB_2021.csv
16
+ bihar,Chhattisgarh,Bhilai,32Bungalows,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_32Bungalows__Bhilai_-_CECB\32Bungalows__Bhilai_-_CECB_2022.csv
17
+ bihar,Chhattisgarh,Bhilai,32Bungalows,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_32Bungalows__Bhilai_-_CECB\32Bungalows__Bhilai_-_CECB_2023.csv
18
+ bihar,Chhattisgarh,Bhilai,32Bungalows,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_32Bungalows__Bhilai_-_CECB\32Bungalows__Bhilai_-_CECB_2024.csv
19
+ bihar,Chhattisgarh,Bhilai,32Bungalows,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_32Bungalows__Bhilai_-_CECB\32Bungalows__Bhilai_-_CECB_2025.csv
20
+ bihar,Chhattisgarh,Bhilai,Civic Center,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Civic_Center__Bhilai_-_Bhilai_Steel_Plant\Civic_Center__Bhilai_-_Bhilai_Steel_Plant_2021.csv
21
+ bihar,Chhattisgarh,Bhilai,Civic Center,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Civic_Center__Bhilai_-_Bhilai_Steel_Plant\Civic_Center__Bhilai_-_Bhilai_Steel_Plant_2022.csv
22
+ bihar,Chhattisgarh,Bhilai,Civic Center,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Civic_Center__Bhilai_-_Bhilai_Steel_Plant\Civic_Center__Bhilai_-_Bhilai_Steel_Plant_2023.csv
23
+ bihar,Chhattisgarh,Bhilai,Civic Center,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Civic_Center__Bhilai_-_Bhilai_Steel_Plant\Civic_Center__Bhilai_-_Bhilai_Steel_Plant_2024.csv
24
+ bihar,Chhattisgarh,Bhilai,Civic Center,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Civic_Center__Bhilai_-_Bhilai_Steel_Plant\Civic_Center__Bhilai_-_Bhilai_Steel_Plant_2025.csv
25
+ bihar,Chhattisgarh,Bhilai,Hathkhoj,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Hathkhoj__Bhilai_-_CECB\Hathkhoj__Bhilai_-_CECB_2017.csv
26
+ bihar,Chhattisgarh,Bhilai,Hathkhoj,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Hathkhoj__Bhilai_-_CECB\Hathkhoj__Bhilai_-_CECB_2018.csv
27
+ bihar,Chhattisgarh,Bhilai,Hathkhoj,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Hathkhoj__Bhilai_-_CECB\Hathkhoj__Bhilai_-_CECB_2019.csv
28
+ bihar,Chhattisgarh,Bhilai,Hathkhoj,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Hathkhoj__Bhilai_-_CECB\Hathkhoj__Bhilai_-_CECB_2020.csv
29
+ bihar,Chhattisgarh,Bhilai,Hathkhoj,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Hathkhoj__Bhilai_-_CECB\Hathkhoj__Bhilai_-_CECB_2021.csv
30
+ bihar,Chhattisgarh,Bhilai,Hathkhoj,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Hathkhoj__Bhilai_-_CECB\Hathkhoj__Bhilai_-_CECB_2022.csv
31
+ bihar,Chhattisgarh,Bhilai,Hathkhoj,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Hathkhoj__Bhilai_-_CECB\Hathkhoj__Bhilai_-_CECB_2023.csv
32
+ bihar,Chhattisgarh,Bhilai,Hathkhoj,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Hathkhoj__Bhilai_-_CECB\Hathkhoj__Bhilai_-_CECB_2024.csv
33
+ bihar,Chhattisgarh,Bhilai,Hathkhoj,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Hathkhoj__Bhilai_-_CECB\Hathkhoj__Bhilai_-_CECB_2025.csv
34
+ bihar,Chhattisgarh,Bilaspur,Mangala,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Mangala__Bilaspur_-_NTPC\Mangala__Bilaspur_-_NTPC_2017.csv
35
+ bihar,Chhattisgarh,Bilaspur,Mangala,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Mangala__Bilaspur_-_NTPC\Mangala__Bilaspur_-_NTPC_2018.csv
36
+ bihar,Chhattisgarh,Bilaspur,Mangala,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Mangala__Bilaspur_-_NTPC\Mangala__Bilaspur_-_NTPC_2019.csv
37
+ bihar,Chhattisgarh,Bilaspur,Mangala,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Mangala__Bilaspur_-_NTPC\Mangala__Bilaspur_-_NTPC_2020.csv
38
+ bihar,Chhattisgarh,Bilaspur,Mangala,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Mangala__Bilaspur_-_NTPC\Mangala__Bilaspur_-_NTPC_2021.csv
39
+ bihar,Chhattisgarh,Bilaspur,Mangala,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Mangala__Bilaspur_-_NTPC\Mangala__Bilaspur_-_NTPC_2022.csv
40
+ bihar,Chhattisgarh,Bilaspur,Mangala,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Mangala__Bilaspur_-_NTPC\Mangala__Bilaspur_-_NTPC_2023.csv
41
+ bihar,Chhattisgarh,Bilaspur,Mangala,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Mangala__Bilaspur_-_NTPC\Mangala__Bilaspur_-_NTPC_2024.csv
42
+ bihar,Chhattisgarh,Bilaspur,Mangala,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Mangala__Bilaspur_-_NTPC\Mangala__Bilaspur_-_NTPC_2025.csv
43
+ bihar,Himachal Pradesh,Chhal,Nawapara SECL Colony,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Nawapara_SECL_Colony__Chhal_-_CECB\Nawapara_SECL_Colony__Chhal_-_CECB_2017.csv
44
+ bihar,Himachal Pradesh,Chhal,Nawapara SECL Colony,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Nawapara_SECL_Colony__Chhal_-_CECB\Nawapara_SECL_Colony__Chhal_-_CECB_2018.csv
45
+ bihar,Himachal Pradesh,Chhal,Nawapara SECL Colony,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Nawapara_SECL_Colony__Chhal_-_CECB\Nawapara_SECL_Colony__Chhal_-_CECB_2019.csv
46
+ bihar,Himachal Pradesh,Chhal,Nawapara SECL Colony,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Nawapara_SECL_Colony__Chhal_-_CECB\Nawapara_SECL_Colony__Chhal_-_CECB_2020.csv
47
+ bihar,Himachal Pradesh,Chhal,Nawapara SECL Colony,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Nawapara_SECL_Colony__Chhal_-_CECB\Nawapara_SECL_Colony__Chhal_-_CECB_2021.csv
48
+ bihar,Himachal Pradesh,Chhal,Nawapara SECL Colony,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Nawapara_SECL_Colony__Chhal_-_CECB\Nawapara_SECL_Colony__Chhal_-_CECB_2022.csv
49
+ bihar,Himachal Pradesh,Chhal,Nawapara SECL Colony,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Nawapara_SECL_Colony__Chhal_-_CECB\Nawapara_SECL_Colony__Chhal_-_CECB_2023.csv
50
+ bihar,Himachal Pradesh,Chhal,Nawapara SECL Colony,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Nawapara_SECL_Colony__Chhal_-_CECB\Nawapara_SECL_Colony__Chhal_-_CECB_2024.csv
51
+ bihar,Himachal Pradesh,Chhal,Nawapara SECL Colony,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Nawapara_SECL_Colony__Chhal_-_CECB\Nawapara_SECL_Colony__Chhal_-_CECB_2025.csv
52
+ bihar,Chhattisgarh,Korba,Rampur,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Rampur__Korba_-_CECB\Rampur__Korba_-_CECB_2017.csv
53
+ bihar,Chhattisgarh,Korba,Rampur,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Rampur__Korba_-_CECB\Rampur__Korba_-_CECB_2018.csv
54
+ bihar,Chhattisgarh,Korba,Rampur,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Rampur__Korba_-_CECB\Rampur__Korba_-_CECB_2019.csv
55
+ bihar,Chhattisgarh,Korba,Rampur,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Rampur__Korba_-_CECB\Rampur__Korba_-_CECB_2020.csv
56
+ bihar,Chhattisgarh,Korba,Rampur,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Rampur__Korba_-_CECB\Rampur__Korba_-_CECB_2021.csv
57
+ bihar,Chhattisgarh,Korba,Rampur,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Rampur__Korba_-_CECB\Rampur__Korba_-_CECB_2022.csv
58
+ bihar,Chhattisgarh,Korba,Rampur,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Rampur__Korba_-_CECB\Rampur__Korba_-_CECB_2023.csv
59
+ bihar,Chhattisgarh,Korba,Rampur,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Rampur__Korba_-_CECB\Rampur__Korba_-_CECB_2024.csv
60
+ bihar,Chhattisgarh,Korba,Rampur,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Rampur__Korba_-_CECB\Rampur__Korba_-_CECB_2025.csv
61
+ bihar,Chhattisgarh,Korba,Urja Nagar,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Urja_Nagar__Korba_-_CECB\Urja_Nagar__Korba_-_CECB_2017.csv
62
+ bihar,Chhattisgarh,Korba,Urja Nagar,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Urja_Nagar__Korba_-_CECB\Urja_Nagar__Korba_-_CECB_2018.csv
63
+ bihar,Chhattisgarh,Korba,Urja Nagar,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Urja_Nagar__Korba_-_CECB\Urja_Nagar__Korba_-_CECB_2019.csv
64
+ bihar,Chhattisgarh,Korba,Urja Nagar,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Urja_Nagar__Korba_-_CECB\Urja_Nagar__Korba_-_CECB_2020.csv
65
+ bihar,Chhattisgarh,Korba,Urja Nagar,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Urja_Nagar__Korba_-_CECB\Urja_Nagar__Korba_-_CECB_2021.csv
66
+ bihar,Chhattisgarh,Korba,Urja Nagar,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Urja_Nagar__Korba_-_CECB\Urja_Nagar__Korba_-_CECB_2022.csv
67
+ bihar,Chhattisgarh,Korba,Urja Nagar,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Urja_Nagar__Korba_-_CECB\Urja_Nagar__Korba_-_CECB_2023.csv
68
+ bihar,Chhattisgarh,Korba,Urja Nagar,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Urja_Nagar__Korba_-_CECB\Urja_Nagar__Korba_-_CECB_2024.csv
69
+ bihar,Chhattisgarh,Korba,Urja Nagar,C:\Users\offrk\Desktop\cpcb\India CPCB\bihar_Urja_Nagar__Korba_-_CECB\Urja_Nagar__Korba_-_CECB_2025.csv
70
+ haryana,Madhya Pradesh,Panchgaon,Amity University,C:\Users\offrk\Desktop\cpcb\India CPCB\haryana_Amity_University__Panchgaon_-_IITM\Amity_University__Panchgaon_-_IITM_2025.csv