-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
71 lines (71 loc) · 4.84 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About QIceRadar</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
<script>
document.addEventListener("DOMContentLoaded", function() {
document.body.classList.add("dark-mode");
});
</script>
</head>
<body>
<header class="bg-primary text-white py-3">
<div class="container">
<div class="d-flex justify-content-between align-items-center">
<h1>About QIceRadar</h1>
<button class="hamburger" id="hamburger-btn">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
<nav id="navbar" class="nav-desktop">
<ul class="nav">
<li class="nav-item"><a href="index.html" class="nav-link text-white">Home</a></li>
<li class="nav-item"><a href="maps.html" class="nav-link text-white">Maps</a></li>
<li class="nav-item"><a href="csvs.html" class="nav-link text-white">CSV Data</a></li>
<li class="nav-item"><a href="instructions.html" class="nav-link text-white">Getting Started</a></li>
<li class="nav-item"><a href="about.html" class="nav-link text-white">About</a></li>
</ul>
</nav>
</div>
</div>
</header>
<main class="container my-5">
<section class="about p-4 bg-white shadow rounded">
<h1>About QIceRadar</h1>
<p>The QIceRadar project aims to visualize and provide access to the vast amounts of data collected by various institutions on Antarctic research. Despite the wealth of data, accessibility and usability remain challenges. By showcasing the data availability and statistics, we strive to make this information more fair and accessible to researchers and the public alike.</p>
<h2>Importance of Data Availability</h2>
<p>Data is crucial for advancing scientific research. The lack of accessible data can hinder progress and limit the potential for new discoveries. Our project highlights the gaps in data availability and encourages institutions to share their data more openly.</p>
<h2>Making Data More Fair</h2>
<p>We believe that data should be FAIR: Findable, Accessible, Interoperable, and Reusable. By providing a platform that aggregates and visualizes data from different institutions, we aim to promote these principles and facilitate better research outcomes.</p>
<h2>Highlighting Data Sharing</h2>
<p>QIceRadar specifically showcases which institutions are making their data public by:</p>
<ul>
<li><strong>Data Availability Maps:</strong> Visualizing the geographic areas where data from different institutions is available.</li>
<li><strong>Institution-Specific Layers:</strong> Displaying data from each institution separately, highlighting those that contribute openly.</li>
<li><strong>Comparative Analysis:</strong> Providing statistics and visual comparisons of data availability between institutions, promoting transparency and encouraging more data sharing.</p>
</ul>
<h2>Long-Term Implications</h2>
<ul>
<li><strong>Enhanced Collaboration:</strong> Easier access to data fosters global research collaboration.</li>
<li><strong>Data-Driven Decision Making:</strong> Policymakers and organizations can make informed decisions based on robust datasets.</li>
<li><strong>Educational Resource:</strong> Serves as a valuable tool for educators and students, promoting data literacy.</li>
<li><strong>Encouraging Open Science:</strong> Sets a precedent for open data in other scientific fields.</li>
<li><strong>Innovation and Technological Advancement:</strong> Accessible data accelerates innovation and new discoveries.</li>
</ul>
</section>
</main>
<footer class="bg-dark text-white text-center py-3">
<p>© University of Washington - Applied Physics Laboratory 2024</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>