forked from akshay-anil22/nasa-pace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocd.html
176 lines (170 loc) · 6.36 KB
/
ocd.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PACE Mission</title>
<link rel="stylesheet" href="ocd.css" />
<link rel="stylesheet" href="header.css" />
</head>
<body>
<header>
<div class="container">
<h1>P.A.C.E</h1>
<nav class="navbar">
<ul>
<li>
<a href="/pacemain/pacehome.html#overview" class="nav-item"
>Mission Overview</a
>
</li>
<li>
<a href="/pacemain/pacehome.html#objectives" class="nav-item"
>Objectives</a
>
</li>
<li>
<a href="/pacemain/pacehome.html#instruments" class="nav-item"
>Instruments</a
>
</li>
<li>
<a href="/pacemain/pacehome.html#data-impact" class="nav-item"
>Quizs</a
>
</li>
<li>
<a href="/pacemain/pacehome.html#resources" class="nav-item"
>Resources</a
>
</li>
</ul>
</nav>
</div>
</header>
<h1 class="highlighted-text-shadow">OCEAN COLOUR RADIOMETER</h1>
<h3 class="text">
NASA’s Ocean Color Radiometer (OCR) on the PACE satellite is like the
ocean’s color detector. It looks at how sunlight bounces off the water and
tracks changes in color caused by things like phytoplankton and minerals.
By studying these shifts, scientists can figure out what’s in the water
and in what amounts, which helps them understand ocean health and how
marine ecosystems are doing.
</h3>
<p style="color: orange" class="query">
What all does the radiometer measures?
</p>
<div class="notification-container">
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle">Chlorophyll Concentration:</div>
<div class="notibody">
Phytoplankton have chlorophyll, which absorbs sunlight for
photosynthesis. The Ocean Color Radiometer measures how much light is
absorbed at specific wavelengths to estimate the amount of chlorophyll
and phytoplankton in the water
</div>
</div>
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle">Sediments and Light</div>
<div class="notibody">
The way light scatters tells us how clear or cloudy the water is,
showing whether there are sediments or organic matter present in the
ocean
</div>
</div>
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle">Dissolved Organic Material:</div>
<div class="notibody">
Colored dissolved organic matter (CDOM) also affects how light is
absorbed and reflected, changing the ocean's color and giving us clues
about the organic material in the water
</div>
</div>
</div>
<br /><br />
<p style="color: orange" class="query">What functions does OCR performs?</p>
<div class="notification-container">
<div>
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle">Monitoring Phytoplankton</div>
<div class="notibody">
Phytoplankton are tiny plants in the ocean that absorb carbon
dioxide during photosynthesis. By tracking their numbers, scientists
can see how much carbon dioxide the ocean takes in, which helps us
understand climate change.
</div>
</div>
<br /><br />
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle">Studying Marine Ecosystems</div>
<div class="notibody">
The Ocean Color Radiometer helps scientists map where phytoplankton
are found and how much they produce. This information is important
for understanding the health of marine ecosystems, including fish
populations.
</div>
</div>
</div>
<div>
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle">Tracking Ocean Health</div>
<div class="notibody">
Changes in ocean color can show us how clean or polluted the water
is. It helps identify issues like warming waters, pollution, or
overfishing.
</div>
</div>
<br /><br />
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle">Fisheries Management</div>
<div class="notibody">
Data about phytoplankton and other marine resources helps manage
fisheries. It provides information about food availability for fish
and other sea creatures.
</div>
</div>
</div>
<div>
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle">Climate Modeling</div>
<div class="notibody">
Phytoplankton are important for regulating the Earth's climate. By
studying these tiny plants, scientists can improve climate models
and predict how the oceans will react to future changes.
</div>
</div>
<br /><br />
<div class="notification">
<div class="notiglow"></div>
<div class="notiborderglow"></div>
<div class="notititle">Evaluating Water Quality</div>
<div class="notibody">
The Ocean Color Radiometer helps check water quality by detecting
harmful algal blooms (HABs). This information is vital for
protecting public health and marine life.
</div>
</div>
</div>
</div>
<footer>
<div id="footerclass"></div>
<script src="footer.js"></script>
</footer>
</body>
</html>