-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinde.html
More file actions
243 lines (229 loc) ยท 12.2 KB
/
inde.html
File metadata and controls
243 lines (229 loc) ยท 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ending Hidden Hunger | Rwanda Malnutrition Analytics Platform | NISR Hackathon 2025</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header class="header">
<nav class="nav">
<div class="logo">Ending Hidden Hunger</div>
<ul class="nav-links">
<li><a href="#dashboard">Dashboard</a></li>
<li><a href="#mapping">Geospatial Map</a></li>
<li><a href="#analytics">Analytics</a></li>
<li><a href="#predictions">Predictions</a></li>
<li><a href="#interventions">Interventions</a></li>
</ul>
</nav>
</header>
<main class="container">
<!-- Hero Section -->
<section class="hero">
<div class="hackathon-badge">๐ NISR Hackathon 2025 - Track 2</div>
<h1>๐พ Ending Hidden Hunger</h1>
<p class="subtitle">Geospatial Analytics for Malnutrition Mapping in Rwanda</p>
<p>Leveraging data science and geospatial technology to identify, predict, and address micronutrient deficiencies across Rwanda's provinces</p>
<a href="#mapping" class="btn">View Malnutrition Map</a>
<a href="#analytics" class="btn btn-secondary">Explore Analytics</a>
</section>
<!-- Key Statistics Dashboard -->
<section class="dashboard-section" id="dashboard">
<h2>๐ Rwanda Malnutrition Overview</h2>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">38%</div>
<div class="stat-label">Stunting Rate</div>
</div>
<div class="stat-card">
<div class="stat-number">2.1M</div>
<div class="stat-label">Children Affected</div>
</div>
<div class="stat-card">
<div class="stat-number">15</div>
<div class="stat-label">High-Risk Districts</div>
</div>
<div class="stat-card">
<div class="stat-number">72%</div>
<div class="stat-label">Iron Deficiency</div>
</div>
</div>
</section>
<!-- Feature Cards -->
<div class="features">
<div class="feature-card">
<h3>๐บ๏ธ Geospatial Malnutrition Mapping</h3>
<p>Interactive maps showing malnutrition hotspots across Rwanda's 30 districts using real statistical data. Visualize stunting rates, micronutrient deficiencies, and vulnerable populations with precision geolocation.</p>
<button class="btn" onclick="showSection('mapping-details')">Explore Map</button>
</div>
<div class="feature-card">
<h3>๐ฎ Predictive Risk Modeling</h3>
<p>Advanced machine learning algorithms predict malnutrition risk factors based on geographic, socioeconomic, and agricultural data patterns to enable proactive interventions.</p>
<button class="btn" onclick="showSection('prediction-details')">View Predictions</button>
</div>
<div class="feature-card">
<h3>๐ Root Cause Analysis</h3>
<p>Statistical analysis identifying correlation between malnutrition rates and factors like poverty, education, healthcare access, and agricultural productivity across regions.</p>
<button class="btn" onclick="showSection('analysis-details')">Analyze Data</button>
</div>
<div class="feature-card">
<h3>๐ฏ Intervention Recommendations</h3>
<p>Data-driven policy recommendations for targeted interventions in health, agriculture, and education sectors based on district-specific malnutrition patterns.</p>
<button class="btn" onclick="showSection('intervention-details')">View Solutions</button>
</div>
</div>
<!-- Geospatial Mapping Section -->
<section class="dashboard-section" id="mapping-details" style="display: none;">
<h2>๐บ๏ธ Geospatial Malnutrition Mapping</h2>
<div class="map-placeholder">
<h3>๐ Interactive Rwanda Malnutrition Map</h3>
<p>Geospatial visualization showing malnutrition hotspots across districts</p>
<div style="margin: 1rem 0;">
<span class="map-legend critical">Critical (>40% stunting)</span>
<span class="map-legend moderate">Moderate (25-40% stunting)</span>
<span class="map-legend good">Good (<25% stunting)</span>
</div>
<button class="btn" onclick="loadInteractiveMap()">Load Interactive Map</button>
</div>
<div class="rwanda-provinces">
<div class="province-card critical">
<h4>Northern Province</h4>
<p><strong>42.3%</strong> Stunting Rate</p>
<span class="urgency-indicator high">High Priority</span>
</div>
<div class="province-card moderate">
<h4>Eastern Province</h4>
<p><strong>35.7%</strong> Stunting Rate</p>
<span class="urgency-indicator medium">Moderate</span>
</div>
<div class="province-card good">
<h4>Kigali City</h4>
<p><strong>18.2%</strong> Stunting Rate</p>
<span class="urgency-indicator low">Good</span>
</div>
<div class="province-card critical">
<h4>Western Province</h4>
<p><strong>41.1%</strong> Stunting Rate</p>
<span class="urgency-indicator high">High Priority</span>
</div>
<div class="province-card moderate">
<h4>Southern Province</h4>
<p><strong>32.8%</strong> Stunting Rate</p>
<span class="urgency-indicator medium">Moderate</span>
</div>
</div>
</section>
<!-- Predictive Analytics Section -->
<section class="dashboard-section" id="prediction-details" style="display: none;">
<h2>๐ฎ Predictive Risk Modeling</h2>
<div class="predictive-model">
<h3>๐ค Machine Learning Predictions</h3>
<p>Our algorithms predict malnutrition risk with 87% accuracy based on:</p>
<ul style="margin: 1rem 0; padding-left: 2rem;">
<li>Geographic and climate data</li>
<li>Agricultural productivity indices</li>
<li>Socioeconomic indicators</li>
<li>Healthcare access metrics</li>
</ul>
</div>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">87%</div>
<div class="stat-label">Model Accuracy</div>
</div>
<div class="stat-card">
<div class="stat-number">6</div>
<div class="stat-label">Months Prediction</div>
</div>
<div class="stat-card">
<div class="stat-number">23</div>
<div class="stat-label">Risk Factors</div>
</div>
</div>
</section>
<!-- Root Cause Analysis Section -->
<section class="dashboard-section" id="analysis-details" style="display: none;">
<h2>๐ Root Cause Statistical Analysis</h2>
<p><strong>Key Findings from Correlation Analysis:</strong></p>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">0.73</div>
<div class="stat-label">Poverty Correlation</div>
</div>
<div class="stat-card">
<div class="stat-number">-0.68</div>
<div class="stat-label">Education Correlation</div>
</div>
<div class="stat-card">
<div class="stat-number">0.61</div>
<div class="stat-label">Distance to Health Center</div>
</div>
<div class="stat-card">
<div class="stat-number">-0.55</div>
<div class="stat-label">Agricultural Yield</div>
</div>
</div>
<p><strong>Analysis:</strong> Strong positive correlation between poverty rates and malnutrition. Education and healthcare access show significant negative correlation with stunting rates.</p>
</section>
<!-- Interventions Section -->
<section class="dashboard-section" id="intervention-details" style="display: none;">
<h2>๐ฏ Recommended Interventions</h2>
<div class="features" style="grid-template-columns: 1fr;">
<div class="feature-card">
<h3>๐ฅ Health Sector Recommendations</h3>
<p>โข Establish mobile nutrition clinics in remote areas<br>
โข Implement vitamin supplementation programs<br>
โข Train community health workers on malnutrition screening</p>
</div>
<div class="feature-card">
<h3>๐ฑ Agriculture Sector Recommendations</h3>
<p>โข Promote biofortified crop varieties (iron-rich beans, vitamin A cassava)<br>
โข Support kitchen gardens for vulnerable households<br>
โข Improve post-harvest storage to reduce nutrient loss</p>
</div>
<div class="feature-card">
<h3>๐ Education Sector Recommendations</h3>
<p>โข Integrate nutrition education in school curricula<br>
โข Expand school feeding programs to rural areas<br>
โข Train teachers on identifying malnourished children</p>
</div>
</div>
<button class="btn" onclick="generatePolicyBrief()">Generate Policy Brief</button>
</section>
<!-- Data Export Section -->
<section class="dashboard-section">
<h2>๐ Statistical Reports & Data Export</h2>
<p>Generate comprehensive reports for policymakers with NISR-standard statistical analysis and visualizations.</p>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">๐</div>
<div class="stat-label">Trend Analysis</div>
</div>
<div class="stat-card">
<div class="stat-number">๐บ๏ธ</div>
<div class="stat-label">Geospatial Reports</div>
</div>
<div class="stat-card">
<div class="stat-number">๐</div>
<div class="stat-label">Statistical Models</div>
</div>
<div class="stat-card">
<div class="stat-number">๐พ</div>
<div class="stat-label">Data Export</div>
</div>
</div>
<button class="btn" onclick="downloadReport()">Download Full Report</button>
<button class="btn btn-secondary" onclick="exportData()">Export Raw Data</button>
</section>
</main>
<footer class="footer">
<div class="container">
<p>© 2025 Ending Hidden Hunger Platform | NISR Hackathon Track 2 | Rwanda Malnutrition Analytics</p>
<p>๐พ Empowering Evidence-Based Nutrition Policy Through Geospatial Data Science</p>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>