-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (59 loc) · 3.31 KB
/
Copy pathindex.html
File metadata and controls
70 lines (59 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Salzburg Tree Cover Change Detection</title>
<link rel="stylesheet" href="style.css">
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.css" />
<!-- Chart.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.9.1/chart.min.js"></script>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="header-content">
<h1>Salzburg Tree Cover Change Detection</h1>
<p>Interactive Map of Tree Cover between 2018–2024 using Sentinel-2 Land Use/Land Cover (LULC) Data</p>
</div>
</div>
<div class="container">
<div id="map">
<!-- Map legend overlay -->
<div class="map-legend">
<h4>Tree Cover Loss (2018–2024)</h4>
<div class="legend-item"><div class="legend-color" style="background: #f1c40f;"></div><span>1–2%</span></div>
<div class="legend-item"><div class="legend-color" style="background: #e67e22;"></div><span>2–3%</span></div>
<div class="legend-item"><div class="legend-color" style="background: #e74c3c;"></div><span>3–4%</span></div>
</div>
<!-- Info button -->
<button class="info-button" onclick="showInfoModal()">i</button>
</div>
</div>
<!-- Info Modal -->
<div class="info-modal" id="infoModal" onclick="hideInfoModal()">
<div class="info-modal-content" onclick="event.stopPropagation()">
<button class="close-button" onclick="hideInfoModal()">×</button>
<h3>Project Overview</h3>
<p>This WebGIS application presents tree cover change analysis across Salzburg's 6 districts between 2018 and 2024 using Sentinel-2 10m Land Use/Land Cover (LULC) data. Click on any region to view more detailed statistics and trends from over the study period
<p>You can view this information again at any time by clicking <strong>'i'</strong> in the bottom right corner of the map.</p>
<h3>Regional Tree Cover Trends</h3>
<div class="modal-chart-container">
<canvas id="summaryChart"></canvas>
</div>
<h3>Methodology</h3>
<p><strong>Source:</strong> <a href="https://livingatlas.arcgis.com/landcoverexplorer/" target="_blank">Esri Sentinel-2 Land Cover Explorer</a></p>
<p><strong>Analysis Period:</strong> 2018–2024</p>
<p><strong>Resolution of data:</strong> 10m pixel resolution</p>
<p><strong>Change Detection:</strong> Pixel-based classification comparison using rasterio, pandas and numpy. <p> The analysis script can be viewed <a href="!!!!Github link PUT HERE!!!" target="_blank">here</a>.</p>
</div>
</div>
<!-- Leaflet JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.min.js"></script>
<script src="main.js"></script>
</body>
</html>