-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
87 lines (80 loc) · 3.23 KB
/
demo.html
File metadata and controls
87 lines (80 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aton4ST Demo</title>
<!-- Link to demo.css -->
<link rel="stylesheet" href="css/demo.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
</head>
<body>
<!-- Header Section -->
<header>
<img src="img/aton4stlogo.jpg" alt="Aton4ST Logo" class="logo">
<nav>
<a href="index.html">Home</a>
<a href="features.html">Features</a>
<a href="demo.html">Demo</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<!-- Demo Container -->
<div class="data-container">
<!-- Demo Video Section -->
<section id="demo-video" class="info-card">
<h2 class="card-title">Aton4ST Platform Overview</h2>
<div class="video-embed">
<iframe src="https://www.youtube.com/embed/WDOlBf7iTUY"
title="Aton4ST Demo Placeholder" frameborder="0"></iframe>
</div>
</section>
<!-- Climate Analysis Section -->
<section class="info-card">
<h3 class="card-title">Climate Analysis Engine</h3>
<div class="climate-analysis-trigger">
<h3>Run Server-Side Analysis</h3>
<button onclick="runClimateAnalysis()">Analyze Mock Dataset</button>
<h4>Analysis Results:</h4>
<pre id="analysis-results" class="message bot">Click button to run analysis...</pre>
</div>
</section>
<!-- Interactive Demo Section -->
<div class="dashboard-grid">
<!-- Climate Dashboard -->
<div class="graph-container">
<h3 class="graph-title">Real-time Climate Metrics</h3>
<div class="chart-container">
<canvas id="climateChart"></canvas>
</div>
</div>
<!-- Climate Chatbot -->
<div class="graph-container">
<h4 class="graph-title">Climate Data Assistant</h4>
<div class="chat-history" id="climateChat">
<div class="message bot"><strong>Bot:</strong> Ask me about climate trends or Earth observation data!</div>
</div>
<div class="chat-input">
<input type="text" id="climateQuery" placeholder="Type your climate question..."
onkeydown="if(event.key === 'Enter') sendClimateQuery()">
<button onclick="sendClimateQuery()">Ask</button>
</div>
</div>
</div>
</div>
<!-- Globe Scene -->
<div id="globe-scene" class="graph-container">
<canvas id="climateGlobe"></canvas>
</div>
<!-- Footer Section -->
<footer>
<p>© 2025 Aton4ST. Democratizing Space Science.</p>
<a href="#">License</a> | <a href="#">Privacy</a>
</footer>
<!-- Demo Script -->
<script src="js/demo.js"></script>
<script src="js/scilib-integration.js"></script>
</body>
</html>