-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (86 loc) · 4.33 KB
/
index.html
File metadata and controls
99 lines (86 loc) · 4.33 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
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<title>OpenSextant - Open geospatial and temporal extraction capability</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="The MITRE Corporation" />
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/bootstrap-responsive.css" />
<!--[if lt IE 9]><script src="js/html5shiv.js"></script><![endif]-->
<link rel="shortcut icon" href="ico/sextant_16.png" />
</head><body>
<div class="container">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li><a href="about.html">About</a></li>
<li><a href="https://github.com/OpenSextant/">GitHub</a></li>
<li><a href="mailto:admin@opensextant.org">Contact</a></li>
</ul>
<h3 class="muted"><a href="index.html"><img src="ico/sextant_32.png" style="width: 1.5em" /> OpenSextant</a></h3>
</div>
<hr />
<div class="container-narrow">
<div class="jumbotron">
<img src="ico/sextant_256.png"/>
<h3>OpenSextant</h3>
<p class="lead">
Geospatial and temporal extraction capability
</p>
<a class="btn btn-large btn-success" href="downloads.html">Download Now</a>
</div>
</div>
<hr />
<div class="row-fluid marketing">
<div class="span6">
<h4><a href="https://github.com/OpenSextant/opensextant">OpenSextant</a></h4>
<p>
Open geospatial and temporal extraction capability
</p>
<iframe src="http://ghbtns.com/github-btn.html?user=opensextant&repo=opensextant&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=opensextant&repo=opensextant&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<h4><a href="https://github.com/OpenSextant/SolrTextTagger">SolrTextTagger</a></h4>
<p>
A text tagger based on Lucene / Solr, using FST technology
</p>
<iframe src="http://ghbtns.com/github-btn.html?user=opensextant&repo=SolrTextTagger&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=opensextant&repo=SolrTextTagger&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
</div>
<div class="span6">
<h4><a href="https://github.com/OpenSextant/geodesy">geodesy</a></h4>
<p>Geodetic primitive library
</p>
<iframe src="http://ghbtns.com/github-btn.html?user=opensextant&repo=geodesy&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=opensextant&repo=geodesy&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<h4><a href="https://github.com/OpenSextant/giscore">giscore</a></h4>
<p>
GIS file data format streaming input and output library
</p>
<iframe src="http://ghbtns.com/github-btn.html?user=opensextant&repo=giscore&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=opensextant&repo=giscore&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
</div>
</div>
<hr />
<div class="footer">
<p class="pull-right">Code licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0 License</a>.</p>
</div>
</div> <!-- /container -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<script>
$(function () {
$('.colorize').hover(function () {
$(this)
.find('.gray').hide().end()
.find('.color').show();
}, function () {
$(this)
.find('.gray').show().end()
.find('.color').hide();
});
});
</script>
</body></html>