<% #include "html.h" %> <% /* Global functions */ %> <% void print_header(void) { %> Content-Type: text/html; charset=UTF-8 <% } %> <% void print_nav(const page_t *page, const page_t *cur) { %> <% const char *class = page == cur ? " class=\"cur\"" : ""; %> ><%= page->name %> <% } %> <% void print_screen(char *name) { %> <%= name %> <% } %> <% void print_page(const page_t *page) { %> AWeather<% if (page->name) printf(" - %s", page->name); %> <% if (page->desc) { %> <% } %>

AWeather

pileus.org

<% page->print(); %>
<% } %> <% /* Normal Pages */ %> <% void print_about(void) { %>

AWeather is a free/open source application which has been designed to integrate and visualize high-quality meteorological data using an interactive Virtual Globe interface suitable for a wide range of users including weather enthusiasts, academics, and professionals. It is designed to provide more information than is typically available from weather widgets and simple desktop applications. At the same time, it strives to be simpler and easier to use than existing meteorological software packages such as GEMPAK and IDV. Currently AWeather only displays data provided by the United States National Weather Service.


Features

Working

Planned

Licencing

AWeather is free software licensed under the terms of the GNU GPL. As such, it can be used by any individuals or organizations without any license fees or royalties.

<% } %> <% void print_news(void) { %>
2013-01-28
AWeather 0.8 released:
2012-12-11
New Website! New Mailing list!
2012-02-16
AWeather 0.7 released:
2012-01-10
AWeather 0.6.3 released: (p.s. AWeather 0.6.2 doesn't exist, you never heard of it, and neither have I)
2011-11-25
AWeather 0.6.1 released:
2011-11-03
AWeather 0.6 released: This release was a little bit faster than previous releases. Hopefully additional improvements to the alerts plugin can be made incrementally during the 0.x.x releases.
2011-09-12
AWeather 0.5.2 released: Improved organization of the Wiki
2011-08-25
AWeather 0.5.1 released:

See also: Older news, gitweb

<% } %> <% void print_oldnews(void) { %> < News
2011-06-19
AWeather 0.5 released: Forked RSL: Update: AWeather 0.5 is also compatible with the newly released RSL v1.41
2011-06-13
Started work on this new website. Lots of progress in AWeather as well:
2010-05-17
AWeather 0.4.1:
2010-05-14
AWeather 0.4:
2009-11-09
AWeather 0.3.0 released, based on libgis but still rather buggy.
2009-10-24
AWeather 0.2.3 (maintenance release).
Added a Application menu entry and a few build/runtime fixes.
2009-09-02
The source repository has been migrated to Git. A lot of progress is being made on libgis, which is now able to display a virtual globe using data from NASA servers.
<% } %> <% void print_manual(void) { %>
<% print_file("manual.inc"); %>
<% } %> <% void print_screenshots(void) { %>

AWeather provides a consistent user interface that allows the user to zoom in from a high level view of the entire Earth down to regional and mesoscale views.

<% } %> <% void print_download(void) { %>

Stable releases

While AWeather won't be considered stable until version 1.0, these are as close to stable as you can get until then

Unstable releases

Pre-releases, betas, and other hazardous software

Check out the files directory for any potential updates

Pre-releases are labeled with a -p0 and are mainly built for testing the Windows and Mac packages

Development code

Development code is available from Git (and gitweb: AWeather, Grits, RSL)

git clone <%= GIT_AWEATHER %>
git clone <%= GIT_GRITS %>
git clone <%= GIT_RSL %>

Repositories for packaging and this website (and gitweb: Packaging, Website)

git clone <%= GIT_PKG %>
git clone <%= GIT_WEB %>
<% } %> <% void print_development(void) { %>

The AWeather development wiki is the main resource for development material.

Bug report and feature requests

List of current issues

Add a new issue

How to contribute?

Architecture Overview

Building AWeather

See the install wiki page for more details

<% } %> <% void print_grits(void) { %>

Grits is a Virtual Globe library developed along side AWeather, but desigend to be usable by other program as well. It is differentiated from other Virtual Globes such as Google Earth, NASA World Wind, and KDE Marble in that it is developed primairily as a library that is used by other programs, such as AWeather, rather than providing it's own user interface.

<% } %> <% void print_rsl(void) { %>

Radar Software Library

AWeather has at times needed a custom version of the TRMM Radar Software Library for accessing Level-II radar files. However, most of the changes have since been incorporated into RSL Version 1.41, which can also be used with AWeather. Some remaining changes exist though and are mostly related to code organization and compiler warnings.

Download

NASA/TRMM version

AWeather's version

<% } %> <% /* Footer Pages */ %> <% void print_contact(void) { %>

Contact

Questions? Comments? Trouble compiling AWeather?

Lists
Mailing list | Archived messages
Bugs
Issue Tracker (sign in to add a new issue)
IRC
#pileus@irc.freenode.net
<% } %> <% /* Special Pages */ %> <% void print_index(void) { %>

AWeather is a free real-time weather data viewer designed for weather enthusiasts. AWeather is not a weather widget/dockapp that displays a pre-computed forecast. It is designed to be an easy to use program that integrates a variety of meteorological data in simple unified interface; see the about page for more details.


Features:

<% print_screen("stormbased"); %>
AWeather showing storm based warnings
on top of Level-II radar imagery
AWeather Download Version <%= VERSION %> Download

<%= VERSION_DESC %>

<% } %> <% void print_notfound(void) { %>

Error 404 - Page Not found!


This page does not exist!

If Andy screwed up, feel free to tell him, otherwise, go away

<% } %> <% void print_sitemap(const page_t **pages) { %> <% for (int i = 0; pages[i]; i++) { %> <% for (int j = 0; pages[i][j].link; j++) { %> <% if (pages[i][j].prio >= 0) { %> <%% "%s%s", PREFIX, pages[i][j].link %> <%% "%3.1f", pages[i][j].prio %> <% } } } %> <% } %>