Skip to content

Commit a56c667

Browse files
committed
Merge pull request #27 from lossyrob/master
New splash page.
2 parents af4c69b + 0478b05 commit a56c667

35 files changed

+871
-14
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ _site/
22
*~
33
#*
44
.#*
5-
*#
5+
*#
6+
Gemfile.lock

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source 'https://rubygems.org'
2+
gem 'github-pages'

_layouts/frontpage.html

Lines changed: 145 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,149 @@
22
layout: default
33
---
44

5-
{% include frontpage-header.txt %}
6-
7-
<div class="wrapper">
8-
{% include topbar.txt %}
9-
10-
{% include frontpage-content.txt %}
11-
12-
<div class="push"></div>
5+
<!DOCTYPE html>
6+
<html lang="en">
7+
<head>
8+
<title>GeoTrellis – Fast raster processing</title>
9+
<meta charset="utf-8">
10+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
11+
<meta name="description" content="An open source geographic data processing engine for high performance applications">
12+
<meta name="author" content="Azavea">
13+
14+
<link href="favicon.ico" rel="icon" type="image/ico">
15+
<link href="http://fonts.googleapis.com/css?family=Signika:400,300,600,700" rel="stylesheet" type="text/css">
16+
<link href="resources/stylesheets/vendor/bootstrap.min.css" rel="stylesheet" media="screen">
17+
<link href="resources/stylesheets/vendor/fontello.css" rel="stylesheet">
18+
<link href="resources/stylesheets/main.css" rel="stylesheet">
19+
20+
<script src="resources/javascript/jquery-1.9.1.min.js"></script>
21+
<script src="resources/javascript/bootstrap.min.js"></script>
22+
</head>
23+
<body>
24+
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
25+
<div class="navbar-header">
26+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
27+
<span class="sr-only">Toggle navigation</span>
28+
<span class="icon-bar"></span>
29+
<span class="icon-bar"></span>
30+
<span class="icon-bar"></span>
31+
</button>
32+
<a class="navbar-brand" href="http://geotrellis.github.io"><span></span> GeoTrellis</a>
33+
</div>
34+
<div class="collapse navbar-collapse navbar-ex1-collapse">
35+
<ul class="nav navbar-nav navbar-right">
36+
<li class="dropdown">
37+
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
38+
<ul class="dropdown-menu">
39+
<li><a href="http://geotrellis.github.io/overviews/">Overview</a></li>
40+
<li><a href="http://geotrellis.github.io/gettingstarted/">Getting Started</a></li>
41+
<li><a href="http://geotrellis.github.io/tutorials/">Tutorials</a></li>
42+
<li><a href="https://github.com/geotrellis/geotrellis/wiki">Wiki</a></li>
43+
<li class="divider"></li>
44+
<li><a href="http://geotrellis.github.io/operations/">Operations</a></li>
45+
<li><a href="http://geotrellis.github.io/glossary/">Glossary</a></li>
46+
<li class="divider"></li>
47+
<li><a href="http://geotrellis.github.io/scaladocs/latest/#package">Scala Docs</a></li>
48+
</ul>
49+
</li>
50+
<li class="nav-btn"><a href="https://github.com/geotrellis/geotrellis/">Get it on GitHub</a></li>
51+
</ul>
52+
</div>
53+
</nav>
54+
<div class="jumbotron">
55+
<div class="container">
56+
<h1>GeoTrellis</h1>
57+
<p>Fast raster processing for the web and the cluster.</p>
58+
<p>
59+
<a class="btn btn-primary btn-lg" role="button" href="#what-is-geotrellis">What is GeoTrellis?</a>
60+
<a class="btn btn-primary btn-lg" role="button" href="http://geotrellis.github.io/gettingstarted/">Get Started</a>
61+
</p>
62+
</div>
1363
</div>
14-
15-
{% include frontpage-footer.txt %}
64+
<div id="what-is-geotrellis">
65+
<div class="container">
66+
<div class="row">
67+
<div class="col-sm-4">
68+
<h3>I/O</h3>
69+
<p>GeoTrellis provides data types for working with rasters in the Scala language, as well as fast reading and writing of these data types to disk.</p>
70+
</div>
71+
<div class="col-sm-4">
72+
<h3>Operations</h3>
73+
<p>GeoTrellis provides a number of operations to manipulate raster data, including cropping/warping, Map Algebra operations, and rendering operations, as well as vector to raster operations such as Kernel Density and vectorization of raster data.</p>
74+
</div>
75+
<div class="col-sm-4">
76+
<h3>Web Service Utilities</h3>
77+
<p>GeoTrellis includes a set of utilities to help developers create useful, high performing web services that load and manipulate raster data.</p>
78+
</div>
79+
</div>
80+
<hr/>
81+
<h2>How to use <strong>GeoTrellis</strong></h2>
82+
<div class="row">
83+
<div class="col-sm-8">
84+
<div class="setup-container">
85+
<img src="images/setup_01.jpg" />
86+
</div>
87+
</div>
88+
<div class="col-sm-4">
89+
<h3><strong>Real-time</strong>, web speed REST services</h3>
90+
<p>GeoTrellis can help build web applications that work with raster data. It provides a set of functionality to aid the translation of queries into GeoTrellis operations, that load raster data, operate on your data, and render the results of those operations in a format useful to return to the client.</p>
91+
</div>
92+
</div>
93+
<hr class="half" />
94+
<div class="row">
95+
<div class="col-sm-8">
96+
<div class="setup-container">
97+
<img src="images/setup_02.jpg" />
98+
</div>
99+
</div>
100+
<div class="col-sm-4">
101+
<h3><strong>Fast</strong> batch processing</h3>
102+
<p>GeoTrellis can also be used to do fast batch processing of large raster data. Currently GeoTrellis uses Akka clustering to distribute data across a cluster; in the next version of GeoTrellis, we will be running on the Spark system.</p>
103+
</div>
104+
</div>
105+
</div>
106+
</div>
107+
<div id="case-studies">
108+
<div class="container">
109+
<div class="row">
110+
<div class="col-sm-4">
111+
<h3>Case Studies</h3>
112+
<p>Build radically engaging applications. Explore applications that leverage the high performance geoprocessing capabilities of GeoTrellis.</p>
113+
</div>
114+
<div class="col-sm-3 col-sm-offset-2">
115+
<a class="case-study" href="http://transit.geotrellis.com/">
116+
<img src="images/case-study_01.jpg" />
117+
<h4>GeoTrellis Transit</h4>
118+
</a>
119+
</div>
120+
<div class="col-sm-3">
121+
<a class="case-study" href="http://demo.geotrellis.com/chatta/">
122+
<img src="images/case-study_02.jpg" />
123+
<h4>Chattanooga Models</h4>
124+
</a>
125+
</div>
126+
</div>
127+
</div>
128+
</div>
129+
130+
<script type="text/javascript">
131+
jQuery(document).ready(function() {
132+
$(function() {
133+
$('a[data-toggle="tooltip"]').tooltip();
134+
$('a[href*=#]:not([href=#])').click(function() {
135+
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
136+
var target = $(this.hash);
137+
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
138+
if (target.length) {
139+
$('html,body').animate({
140+
scrollTop: target.offset().top
141+
}, 1000);
142+
return false;
143+
}
144+
}
145+
});
146+
});
147+
});
148+
</script>
149+
</body>
150+
</html>

images/bg-static.png

70.6 KB
Loading

images/case-study_01.jpg

29 KB
Loading

images/case-study_02.jpg

93.2 KB
Loading

images/logo-geotrellis.png

882 Bytes
Loading

images/logo-icon.png

59.8 KB
Loading

images/setup_01.jpg

42.3 KB
Loading

images/setup_02.jpg

46.1 KB
Loading

0 commit comments

Comments
 (0)