-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·97 lines (78 loc) · 4.72 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<!-- head starts-->
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129453432-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129453432-1');
</script>
<!-- Title Displayed on Tab on Browser-->
<title>Home - ICEBERG</title>
<link rel="shortcut icon" type="image/png" href="img/logo/iceberg.png"/>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="css/custom.css" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
</head>
<!-- head ends-->
<!-- body starts-->
<body>
<div id="header_nav"></div>
<!-- Home Page starts -->
<div class="container" id="body" hidden>
<div class="container row text-justify">
<div class="col-4">
<img class="" border="2" src="img/logo/iceberg.png"/>
</div>
<div class="col-8 marginTop-46">
<h1 class="colorDarkBlue">ICEBERG</h1>
<h3 class="colorDarkCyan">
Imagery Cyber-infrastructure and Extensible Building blocks to Enhance Research in the Geosciences.
</h3>
</div>
</div>
<div class="container row text-justify">
</div>
<!-- Introduction starts -->
<div class="container row marginTop-16 text-justify">
<!-- <h3>MOTIVATION</h3> -->
<p>
Satellite imagery is rapidly transforming the way we see the planet, including our ability to study the most remote parts of the Arctic and Antarctic. Satellite imagery can help us map networks of rivers, study changes in the flow and thickness of glaciers, identify rock and soil types, and even find animals like penguins and seals. Because the availability of imagery in polar areas has increased rapidly over the last decade, we are now faced with a challenge: How do we scale-up the scientific discoveries that have been enabled by satellite imagery to larger spatial scales?
</p>
<div class="container row">
<img class="row w-100p h-100p paddingBottom-8" src="img/Petermann_Credit_Lynch.jpg"/>
</div>
<p>
Moving from small pilot-studies to pan-Arctic or pan-Antarctic analyses of geological and biological processes requires new infrastructure to link scientists, satellite imagery, and high performance computers. This new imagery-computing superhighway will make it easier for scientists to study processes at much larger spatial scales than has been previously possible. Our project, called ICEBERG — Imagery Cyberinfrastructure and Extensible Building-Blocks to Enhance Research in the Geosciences, aims to build the cyberinfrastructure required to make the most of satellite imagery for geosciences, starting with researcher working in polar areas, where much of this science is already underway, and then branching out to the entire EarthCube community.
See the ICEBERG codebase on GitHub, <a href="https://github.com/iceberg-project" target="_blank">https://github.com/iceberg-project</a>
</p>
</div>
<!-- Introduction ends -->
<!-- About starts -->
<div class="container row marginTop-16 text-justify">
<h3>ABOUT US</h3>
<p>
ICEBERG is supported by the NSF EarthCube program <a href="https://www.nsf.gov/awardsearch/showAward?AWD_ID=1740595&HistoricalAwards=false">1740595</a>. More information about our project and its relationship to EarthCube can be found at our <a href="https://www.earthcube.org/group/iceberg-imagery-cyberinfrastructure-extensible-building-blocks-enhance-research-geosciences">EarthCube site</a>.
</p>
</div>
<!-- About ends -->
<!-- <hr/> -->
</div>
<!-- Home Page ends -->
<div id="footer"></div>
<!-- This should be at the end of the body tag -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js" integrity="sha384-a5N7Y/aK3qNeh15eJKGWxsqtnX/wWdSZSKp+81YjTmS15nvnvxKHuzaWwXHDli+4" crossorigin="anonymous"></script>
<script src="js/custom.js"></script>
</body>
<!-- body ends-->
</html>