]> Pileus Git - ~andy/aweather-web/blob - html.ct
Update for ubuntu packages
[~andy/aweather-web] / html.ct
1 <% #include "html.h" %>
2
3 <% /* Global functions */ %>
4 <% void print_header(void) { %>
5 Content-Type: text/html; charset=UTF-8
6
7 <% } %>
8
9 <% void print_nav(const page_t *page, const page_t *cur) { %>
10         <% const char *class = page == cur ? " class=\"cur\"" : ""; %>
11         <a href="<%= page->link %>"<%= class %>><%= page->name %></a>
12 <% } %>
13
14 <% void print_screen(char *name) { %>
15         <a href="screens/<%= name %>.png">
16                 <img src="screens/<%= name %>_s.jpg" alt="<%= name %>" class="screen" />
17         </a>
18 <% } %>
19
20 <% void print_page(const page_t *page) { %>
21 <?xml version="1.0" encoding="UTF-8"?>
22 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
23 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
24         <head>
25                 <title>AWeather<% if (page->name) printf(" - %s", page->name); %></title>
26                 <link rel="shortcut icon" href="images/aweather.ico" />
27                 <link href="data/global.css" rel="stylesheet" type="text/css" />
28                 <meta http-equiv="X-UA-Compatible" content="IE=9" />
29                 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
30                 <meta name="keywords" content="weather, radar, nexrad, level-ii, virtual globe, grits, rsl" />
31                 <% if (page->desc) { %>
32                 <meta name="description" content="<%= page->desc %>" />
33                 <% } %>
34                 <meta name="google-site-verification" content="-SZkTpNRWHrpESTGNZ8Pshnz4zKbwfKv54NoavUKK_Y" />
35                 <meta name="y_key" content="abe8287921b25151" />
36         </head>
37         <body>
38                 <div class="top">
39                         <a href="."><img class="logo" src="images/logo.png" alt="AWeather" /></a>
40                         <h1 class="title"><a href=".">AWeather</a></h1>
41                         <h2 class="nav">
42                                 <% for (int i = 0; header[i].link; i++) print_nav(&header[i], page); %>
43                                 <span class="sep"></span>
44                                 <% for (int i = 0; other[i].link;  i++) print_nav(&other[i],  page); %>
45                         </h2>
46                 </div>
47                 <div class="content">
48                         <!--
49                                 <p class="msg">This site is currently under construction.</p>
50                                 <p class="msg" style="font-size:8pt; font-weight:normal;">
51                                   If I had an animated GIF of a guy with a shovel, I would put it here.</p>
52                         -->
53                         <% page->print(); %>
54                         <div style="clear:both;"></div>
55                 </div>
56                 <p class="footer">
57                         Copyright © 2011 Andy Spencer
58                         <% for (int i = 0; footer[i].link; i++) { %>
59                                 | <% print_nav(&footer[i], page); %>
60                         <% } %>
61                 </p>
62         </body>
63 </html>
64 <% } %>
65
66 <% /* Normal Pages */ %>
67 <% void print_about(void) { %>
68         <p class="intro">
69                 AWeather is a free/open source application which has been
70                 designed to integrate and visualize high-quality meteorological
71                 data using an interactive Virtual Globe interface suitable for
72                 a wide range of users including weather enthusiasts, academics,
73                 and professionals.
74
75                 It is designed to provide more information than is typically
76                 available from weather widgets and simple desktop applications.
77                 At the same time, it strives to be simpler and easier to use
78                 than existing meteorological software packages such as GEMPAK
79                 and IDV.
80         </p>
81         <hr />
82
83         <h2>Features</h2>
84         <div class="col">
85                 <h3>Working</h3>
86                 <ul>
87                         <li>High quality data sources<ul>
88                                 <li>Level-II archives</li>
89                                 <li>Conus NEXRAD imagery</li>
90                                 <li>Volume display of dBZ iso surfaces</li>
91                         </ul></li>
92                         <li>Virtual Globe base rendering<ul>
93                                 <li>Including terrain, satellite, and map imagery</li>
94                         </ul></li>
95                         <li>Real-time and offline mode</li>
96                         <li>Auto-updating</li>
97                         <li>Fullscreen mode</li>
98                 </ul>
99         </div>
100         <div class="col">
101                 <h3>Planned</h3>
102                 <ul>
103                         <li>Additional data sources<ul>
104                                 <li>Watch/warning/advisory boxes</li>
105                                 <li>Surface data (temp., humidity, etc)</li>
106                         </ul></li>
107                         <li>Derived NEXRAD data<ul>
108                                 <li>Storm relative motion</li>
109                                 <li>Compost reflective</li>
110                                 <li>Echo tops</li>
111                         </ul></li>
112                         <li>Vertical cross sections</li>
113                         <li>Animation</li>
114                 </ul>
115         </div>
116
117         <div style="clear:both;"></div>
118         <h2>Licencing</h2>
119         <p>AWeather is free software licensed under the terms of the
120            <a href="http://www.gnu.org/licenses/gpl.html">GNU GPL</a>.
121            As such, it can be used by any individuals or organizations
122            without any license fees or royalties.</p>
123 <% } %>
124
125 <% void print_news(void) { %>
126         <p class="quote">Now that it's spring again, progress on AWeather is continuing.</p>
127         <dl class="news">
128                 <dt>2011-08-25</dt>
129                 <dd>
130                         AWeather 0.5.1 released: <ul>
131                                 <li>Bugfix release</li>
132                                 <li>Updated sat/map/elev to provide better data</li>
133                                 <li>First release with <a href="<%= DEBIAN_HOME %>">Debian</a>, 
134                                                    and <a href="<%= UBUNTU_HOME %>">Ubuntu</a> packages</li>
135                         </ul>
136                 </dd>
137
138                 <dt>2011-06-19</dt>
139                 <dd>
140                         AWeather 0.5 released: <ul>
141                                 <li>Support for volume rendering (isosurfaces)</li>
142                                 <li>Automatic updating</li>
143                                 <li>Fullscreen mode</li>
144                                 <li>Dropped GtkGLExt</li>
145                         </ul>
146                         Forked RSL:<ul>
147                                 <li>Added additional radars</li>
148                                 <li>Fixed lots of bugs</li>
149                                 <li>General code cleanup</li>
150                                 <li>Available from <a href="files/">files</a> directory
151                                     and <a href="<%= GW_RSL %>">git</a></li>
152                         </ul>
153                         <b>Update:</b> AWeather 0.5 is also compatible with the
154                         newly released RSL v1.41
155                 </dd>
156
157                 <dt>2011-06-13</dt>
158                 <dd>Started work on this new website. Lots of progress in AWeather as well:<ul>
159                         <li>Merged support for isosurfaces to the main branch (Finally!)</li>
160                         <li>Added an option to automatically refresh after a timeout</li>
161                         <li>New fullscreen mode</li>
162                 </ul></dd>
163
164                 <dt>2010-05-17</dt>
165                 <dd>AWeather 0.4.1:<ul>
166                         <li>Win32 fixes and improved debug support</li>
167                         <li>Fix bug with daylight savings time</li>
168                         <li>Function to clear old cache entries</li>
169                 </ul></dd>
170
171                 <dt>2010-05-14</dt>
172                 <dd>AWeather 0.4:<ul>
173                         <li>Conus radar images</li>
174                         <li>Multiple radars support</li>
175                         <li>Gentoo, Ubuntu, MS Windows and source packages are available</li>
176                 </ul></dd>
177
178                 <dt>2009-11-09</dt>
179                 <dd>AWeather 0.3.0 released, based on libgis but still rather
180                     buggy.</dd>
181
182                 <dt>2009-10-24</dt>
183                 <dd>AWeather 0.2.3 (maintenance release).<br/>
184                     Added a Application menu entry and a few build/runtime fixes.</dd>
185
186                 <dt>2009-09-02</dt>
187                 <dd>The source repository has been migrated to Git. A lot of
188                     progress is being made on libgis, which is now able to display
189                     a virtual globe using data from NASA servers.</dd>
190         </dl>
191         <p class="note">See also: AWeather's <a href="<%= GW_AWEATHER %>">gitweb</a></p>
192 <% } %>
193
194 <% void print_screenshots(void) { %>
195         <p>
196                 AWeather provides a consistent user interface that allows the
197                 user to zoom in from a high level view of the entire Earth down
198                 to regional and mesoscale views.
199         </p>
200
201         <ul class="gallery">
202                 <li>
203                         <% print_screen("synop"); %>
204                         High level view using Grits
205                 </li>
206                 <li>
207                         <% print_screen("region"); %>
208                         Regional view over the midwest
209                 </li>
210                 <li>
211                         <% print_screen("meso"); %>
212                         Mesoscale view of a tornadic system
213                 </li>
214                 <li>
215                         <% print_screen("iso"); %>
216                         Close up showing a 52.5 dBZ isosurface
217                 </li>
218         </ul>
219 <% } %>
220
221 <% void print_download(void) { %>
222         <h2>Stable releases</h2>
223         <p class="note">
224                 While AWeather won't be considered stable until version 1.0,
225                 these are as close to stable as you can get until then
226         </p>
227         <ul>
228                 <li class="linux"><dl class="inline">
229                         <dt>Source code</dt>
230                         <dd>
231                         <a href="files/aweather-<%= VERSION %>.tar.gz">aweather-<%= VERSION %>.tar.gz</a>,
232                         <a href="../grits/grits-<%= VERSION %>.tar.gz">grits-<%= VERSION %>.tar.gz</a>,
233                         <a href="files/rsl-1.40.tar.gz">rsl-1.40.tar.gz</a>
234                         </dd>
235
236                         <dt>Gentoo</dt>
237                         <dd><span class="code">emerge sci-geosciences/aweather</span> from the sunrise overlay</dd>
238
239                         <dt>Debian</dt>
240                         <dd><span class="code">apt-get install aweather</span> from Debian sid</dd>
241
242                         <dt>Ubuntu</dt>
243                         <dd><span class="code">apt-get install aweather</span> from Ubuntu oneiric</dd>
244                 </dl></li>
245                 <li class="windows"><dl class="inline">
246                         <dt>Windows</dt>
247                         <dd><a href="files/aweather-<%= VERSION_WIN32 %>-gtk.exe">aweather-<%= VERSION_WIN32 %>-gtk.exe</a>
248                                 (Use this unless you know what you're doing)</dd>
249
250                         <dt>Without GTK</dt>
251                         <dd><a href="files/aweather-<%= VERSION_WIN32 %>.exe">aweather-<%= VERSION_WIN32 %>.exe</a></dd>
252                 </dl></li>
253                 <li class="macos" style="padding-top: .8em; padding-bottom: .8em"><dl class="inline">
254                         <dt>Mac OS X</dt>
255                         <dd>Coming soon (Mac OS developer? <a href="/code/issues/1">Help out</a>)</dd>
256                 </dl></li>
257         </ul>
258
259         <h2>Unstable releases</h2>
260         <p class="note">Pre-releases, betas, and other hazardous software</p>
261         <div style="margin-left: 30px;">
262                 <p>Check out the <a href="files">files</a> directory for any potential updates</p>
263                 <p>Pre-releases are labeled with a -p0 and are mainly built for testing the Windows packages</p>
264         </div>
265
266         <h2>Development code</h2>
267         <p class="note">
268                 Development code is available from Git
269                 (and gitweb:
270                  <a href="<%= GW_AWEATHER %>">AWeather</a>,
271                  <a href="<%= GW_GRITS    %>">Grits</a>,
272                  <a href="<%= GW_RSL      %>">RSL</a>)
273         </p>
274         <div style="margin-left: 30px;">
275                 <div class="code">git clone <%= GIT_AWEATHER %></div>
276                 <div class="code">git clone <%= GIT_GRITS    %></div>
277                 <div class="code">git clone <%= GIT_RSL      %></div>
278         </div>
279 <% } %>
280
281 <% void print_development(void) { %>
282         <!-- Open source mumbo jumbo.. -->
283
284         <p class="note" style="clear: both;">
285                 The AWeather <a href="<%= WIKI_INDEX %>">development wiki</a>
286                 is the main resource for development material.
287         </p>
288
289         <h2>Bug report and feature requests</h2>
290         <div style="margin-left: 30px;">
291                 <p><a href="<%= BUG_LIST %>">List of current issues</a></p>
292                 <p><a href="<%= BUG_NEW  %>">Add a new issue</a></p>
293         </div>
294
295         <h2>How to contribute?</h2>
296         <ul>
297                 <li>Locate or host Meteorological and Geospatial data feeds</li>
298                 <li>Maintain a Mac OS, Windows, or Linux installer</li>
299                 <li>Test AWeather and submit bug reports</li>
300                 <li>Make better logo!</li>
301         </ul>
302
303         <h2>Architecture Overview</h2>
304         <ul>
305                 <li>Built on top of GObject and GTK+</li>
306                 <li>Uses the <a href="grits">Grits</a> "Virtual Globe" library<ul>
307                         <li>Handles most of the graphics work using OpenGL for rendering</li>
308                         <li>Provides some other generic functionality, such as data access</li>
309                         <li>Also provides the plugins API used by AWeather</li>
310                 </ul></li>
311                 <li>AWeather itself is a front-end for Grits along with a
312                     bundle of weather related plugins</li>
313         </ul>
314
315         <h2>Building AWeather</h2>
316         <p class="note">See the <a href="<%= WIKI_INSTALL %>">install</a>
317                 wiki page for more details</p>
318         <ul>
319                 <li>AWeather has direct dependencies on Grits, RSL, among other things</li>
320                 <li>Currently building and running AWeather requires the
321                     exact same version of Grits to be installed<br />
322                     (This may change in the near future as the software stabilizes)</li>
323         </ul>
324 <% } %>
325
326 <% void print_grits(void) { %>
327         <p>
328                 Grits is a Virtual Globe library developed along side AWeather,
329                 but desigend to be usable by other program as well.
330
331                 It is differentiated from other Virtual Globes such as Google
332                 Earth, NASA World Wind, and KDE Marble in that it is developed
333                 primairily as a library that is used by other programs, such as
334                 AWeather, rather than providing it's own user interface.
335         </p>
336
337         <ul class="gallery">
338                 <li>
339                         <% print_screen("grits"); %>
340                         Grits without any plugins
341
342                 </li>
343                 <li>
344                         <% print_screen("plugins"); %>
345                         Satellite and Environment plugins
346                 </li>
347                 <li>
348                         <% print_screen("terrain"); %>
349                         Elevation plugin showing a mountain
350                 </li>
351         </ul>
352 <% } %>
353
354 <% void print_rsl(void) { %>
355         <h2>Radar Software Library</h2>
356         AWeather has at times needed a custom version of the
357         <a href="<%= RSL_WEB %>">TRMM Radar Software Library</a>
358         for accessing Level-II radar files. However, most of the changes have
359         since been incorporated into RSL Version 1.41, which can also be used
360         with AWeather. Some remaining changes exist though and are mostly
361         related to code organization and compiler warnings.
362
363         <h2>Download</h2>
364         <div class="col">
365                 <h3>NASA/TRMM version</h3>
366                 <ul>
367                         <li><a href="<%= RSL_WEB %>">TRMM RSL Website</a></li>
368                         <li><a href="<%= RSL_FTP RSL_TAR %>"><%= RSL_TAR %></a></li>
369                 </ul>
370         </div>
371         <div class="col">
372                 <h3>AWeather's version</h3>
373                 <ul>
374                         <li><a href="files/rsl-1.40.tar.gz">rsl-1.40.tar.gz</a></li>
375                         <li><a href="<%= GW_RSL %>">Gitweb</a></li>
376                         <li><div class="code">git clone <%= GIT_RSL %></div></li>
377                 </ul>
378         </div>
379 <% } %>
380
381 <% /* Footer Pages */ %>
382 <% void print_contact(void) { %>
383         <h1>Contact</h1>
384         <p class="note">Questions? Comments? Trouble compiling AWeather?</p>
385         <dl class="inline small">
386                 <dt>Bugs</dt> <dd><a href="<%= BUG_LIST %>">Issue Tracker</a> (sign in to add a new issue)</dd>
387                 <dt>Email</dt><dd><a href="mailto:andy753421@gmail.com">Andy Spencer</a></dd>
388                 <dt>IRC</dt>  <dd>#rhlug@irc.freenode.net</dd>
389         </dl>
390 <% } %>
391
392 <% /* Special Pages */ %>
393 <% void print_index(void) { %>
394         <p class="intro">
395                 AWeather is a free real-time weather data viewer designed for weather enthusiasts.
396                 AWeather is not a weather widget/dockapp that displays a pre-computed forecast.
397                 It is designed to be an easy to use program that integrates a
398                 variety of meteorological data in simple unified interface;
399                 see the <a href="about">about</a> page for more details.
400         </p>
401         <hr />
402         <ul style="float: left;">
403                 <li>Detailed Level-II NEXRAD radar<ul>
404                         <li>3D volume rendering</li>
405                         <li>Dual-pole support</li>
406                 </ul></li>
407                 <li>Online and offline modes<ul>
408                         <li>Data caching</li>
409                         <li>Automatic updating</li>
410                 </ul></li>
411                 <li>Surface and map overlays</li>
412                 <li>Terrain rendering</li>
413         </ul>
414         <div style="float: left; margin-left: 20px;">
415                 <% print_screen("meso"); %>
416         </div>
417         <a href="download" class="download" style="float: right;">
418                 <span>Download</span>
419                 <span>AWeather <%= VERSION %></span>
420                 <img src="images/dl-arrow.png" alt="Download" />
421         </a>
422         <p style="text-align: center;"><%= VERSION_DESC %></p>
423 <% } %>
424
425 <% void print_notfound(void) { %>
426         <h1>Error 404 - Page Not found!</h1>
427         <br />
428         <p>This page does not exist!
429         <p>If Andy screwed up, feel free to <a href="contact">tell him</a>,
430            otherwise, go away</p>
431 <% } %>
432
433 <% void print_sitemap(const page_t **pages) { %>
434 <?xml version='1.0' encoding='UTF-8'?>
435 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
436         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
437         xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
438                             http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
439         <% for (int i = 0; pages[i];         i++) { %>
440         <% for (int j = 0; pages[i][j].link; j++) { %>
441         <% if  (pages[i][j].prio >= 0) { %>
442         <url>
443                 <loc><%% "%s%s", PREFIX, pages[i][j].link %></loc>
444                 <priority><%% "%3.1f", pages[i][j].prio %></priority>
445         </url>
446         <% } } } %>
447 </urlset>
448 <% } %>