-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
83 lines (71 loc) · 3.49 KB
/
about.html
File metadata and controls
83 lines (71 loc) · 3.49 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
<!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><a href="index.html">Home</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li class="active"><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 />
<h3>OpenSextant</h3>
<p>The Open Spatial Extraction and Tagging (OpenSextant) software provides an unstructured textual data geotagging and geocoding capability. The U.S. Government Joint Improvised Explosive Device Defeat Organization (JIEDDO) developed this capability in coordination with other U.S. government agencies and is pleased to provide this as open source software using an Apache 2.0 license. The software relies upon the open source General Architecture for Text Engineering (GATE) natural language processing software and the Apache Solr search software. Please see below for instructions on how to access the source code and binaries.
OpenSextant Suite</p>
<p>This suite is various projects for geospatial and temporal extraction. The core module is OpenSextantToolbox which produces a GATE plugin and a toolkit for controlling the overall extraction and geocoding pipeline using that plugin.</p>
<hr />
<h3>Modules</h3>
<p>
Commons -- Common parent classes, data model and core utilities. TBD
</p>
<p>
Xponents -- Extractors
<ul>
<li> XText document conversion (to plain text)
<li> XCoord coordinate extraction
<li> XTemporal date/time extraction
<li> FlexPat </li>
<li> OpenSextantToolbox -- A GATE-based plugin and various main programs for geotagging/geocoding Gazetteer -- A Solr-based gazetteer supporting mainly NGA Geonames, USGS place data, and adhoc catalogs. LanguageResources -- Linguistic tuning data doc -- Documentation, user manuals, developer guides
</li>
</ul>
<h3>Peer Projects</h3>
<ul>
<li> SolrTextTagger -- A text tagging solution for high-volume word lists or data sets</li>
<li> GISCore -- An API manages GIS data formats. </li>
<li> geodesy geodetic primitives and routines used by OpenSextant and GISCore</li>
</ul>
<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>