forked from capstone-coal/capstone-coal.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (97 loc) · 4.64 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
---
---
{% include header.html %}
<!-- carousel -->
<!-- images should be 900x600 px -->
<div id="coalCarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#coalCarousel" data-slide-to="0" class="active"></li>
<li data-target="#coalCarousel" data-slide-to="1"></li>
<li data-target="#coalCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="images/carousel-escondida.jpg" />
<div class="container">
<div class="carousel-caption">
<h1>Analyze Imagery</h1>
<p>Load and process georeferenced hyperspectral imagery.</p>
</div>
</div>
</div>
<div class="item">
<img src="images/carousel-hypercube.png" />
<div class="container">
<div class="carousel-caption">
<h1>Identify Minerals</h1>
<p>Classify land cover using spectral reflectance curves.</p>
</div>
</div>
</div>
<div class="item">
<img src="images/carousel-gis.png" />
<div class="container">
<div class="carousel-caption">
<h1>Map Mines</h1>
<p>Locate mines and other surface features.</p>
</div>
</div>
</div>
<a class="left carousel-control" href="#coalCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#coalCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- overview -->
<h1>Coal and Open-pit surface mining impacts on American Lands (COAL)</h1>
<p>COAL is a <b>Python</b> library for processing <b>hyperspectral imagery</b> from remote sensing devices such as the Airborne Visible/InfraRed Imaging Spectrometer (AVIRIS). COAL is being developed as a 2016 – 2017 senior capstone collaboration between scientists at the Jet Propulsion Laboratory (JPL) and computer science students at Oregon State University (OSU). COAL aims to provide a suite of algorithms for <b>classifying</b> land cover, <b>identifying</b> mines and other geographic features, and <b>correlating</b> them with environmental data sets. COAL is <b>Free and Open Source Software</b> under the terms of the Apache License Version 2.0.</p>
<!-- site map -->
<div class="row">
<!-- documentation -->
<div class="col-lg-4">
<h2>Docs</h2>
<p>Read the <a href="docs">documentation</a> to learn how to install and use the Python COAL package <a class="external" href="https://pypi.python.org/pypi/pycoal"><code>pycoal</code></a>.</p>
<p>For more information:</p>
<ul>
<li>Browse the <a class="external" href="https://pycoal.readthedocs.io/en/latest/">API reference</a> for detailed class and method documentation,</li>
<li>Visit our <a class="external" href="https://github.com/capstone-coal">GitHub Organization</a> for the source code and issue tracker, or</li>
<li>View development documentation on our <a class="external" href="https://github.com/capstone-coal/pycoal/wiki">wiki</a>.</li>
</ul>
</div>
<!-- blog -->
<div class="col-lg-4">
<h2>Blog</h2>
<p>Our most recent posts:</p>
<ul>
{% for post in site.posts limit:5 %}
<li><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></li>
{% endfor %}
</ul>
<p>View all of our posts on our <a href="blog">blog</a>.</p>
</div>
<!-- team -->
<div class="col-lg-4">
<h2>Team</h2>
<p>Jet Propulsion Laboratory:</p>
<ul>
<li>Lewis John McGibbney, Ph.D.</li>
<li>Kim Whitehall, Ph.D.</li>
</ul>
<p>Oregon State University:</p>
<ul>
<li>Taylor Alexander Brown</li>
<li>Heidi Ann Clayton</li>
<li>Xiaomei Wang</li>
</ul>
<p>Read <a href="team">about our team</a> to contact us or learn more.</p>
</div>
</div>
<!-- closing -->
<!-- <h2></h2> -->
<!-- <p></p> -->
{% include footer.html %}