-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhowtheyworktogether.html
More file actions
30 lines (30 loc) · 2.14 KB
/
howtheyworktogether.html
File metadata and controls
30 lines (30 loc) · 2.14 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
<!DOCTYPE HTML>
<html>
<head>
<title>Project Scope Collaboration</title>
<link href="pblwebsite.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="center">
<a href="index.html">
<img src ="headerlogotransparent.png" alt="Logo" class= "center" style="max-width: 30%; max-height: 30%">
</a>
<button onclick="window.location.href = 'computerscientist.html';" class="schoolprojectsbutton">Computer Scientist</button>
<button onclick="window.location.href = 'ecologist.html';" class="schoolprojectsbutton">Ecologist</button>
<button onclick="window.location.href = 'howtheyworktogether.html';" class="schoolprojectsbutton">How They Work Together</button>
</div>
<h1>How They Work Together</h1>
<h3>Explanation</h3>
<p>
A common problem a computer scientist has to deal with is the storage, compilation, and processing of huge datasets. Ecologists frequently collect data out in the field about organisms and the environment. To draw conclusions about the data, they need a way to visualize the data and search for patterns in it. The computer scientist can help with this, by developing a program to process and visualize data provided by the ecologist.
</p>
<div class="center">
<img src="mappingpic.PNG" alt="Data Mapping" style ="height: 20%;width:20%;">
<img src="mappingpic2.png" alt="Data Mapping" style ="height: 20%;width:20%;margin-left:160px;">
</div>
<h3>Real Life Scenario</h3>
<p>
An ecologist searches for a problem in the environment. They take a survey on the quality of a stream before and after deforestation. They do multiple tests such as a salinity test, phosphorus test, etc. The ecologist returns the data to the computer scientist. The computer scientist then develops a program to process all of the data. Once complete, the data is entered in and together the ecologist and computer scientist are able to identify a trend between deforetation and stream quality using the data visually displayed through the computer program. From there, the ecologist can draw conclusions and do further research into the issue.
</p>
</body>
</html>