add these back as well

This commit is contained in:
minima 2006-11-02 14:08:29 +00:00
parent b4ab8d5020
commit 6342eaedd9
5 changed files with 1078 additions and 0 deletions

18
Geo/TAF/Changes Normal file
View File

@ -0,0 +1,18 @@
Revision history for Perl extension Geo::TAF.
1.01 Fri Jan 31 15:08:17 2003
- original version; created by h2xs 1.22 with options
--skip-exporter --skip-autoloader -Xb 5.5.0 -n Geo::TAF
1.02 Mon Feb 3 01:28:00 2003
- fixed some uninitialised data errors in TAF.pm
- included example scgi_weather.pl
1.03 Mon Feb 3 17:00:00 2003
- swapped BKN with SCT
- added dayend function in Geo::TAF::EN
- detail changes to example/scgi_weather.pl
- added some tests
1.04 Mon Feb 3 17:40:00 2003
- fix typo in scgi_weather.pl

11
Geo/TAF/MANIFEST Normal file
View File

@ -0,0 +1,11 @@
Changes
Makefile.PL
MANIFEST
README
TAF.pm
example/cmd_chunks.pl
example/cmd_taf.pl
example/fetch_weather.pl
example/cgi_weather.pl
example/scgi_weather.pl
t/1.t

12
Geo/TAF/Makefile.PL Normal file
View File

@ -0,0 +1,12 @@
use 5.005;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'Geo::TAF',
'VERSION_FROM' => 'TAF.pm', # finds $VERSION
'PREREQ_PM' => {}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'TAF.pm', # retrieve abstract from module
AUTHOR => 'Dirk Koopman <djk@localdomain>') : ()),
);

34
Geo/TAF/README Normal file
View File

@ -0,0 +1,34 @@
Geo/TAF version 1.01
====================
Geo::TAF decodes aviation METAR and TAF weather forecast code
strings into English or, if you sub-class, some other language.
METAR (Routine Aviation weather Report) and TAF (Terminal Area
weather Report) are ascii strings containing codes describing
the weather at airports and weather bureaus around the world.
This module attempts to decode these reports into a form of
English that is hopefully more understandable than the reports
themselves.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
None
COPYRIGHT AND LICENCE
Copyright (C) 2003 Dirk Koopman G1TLH
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

1003
Geo/TAF/TAF.pm Normal file

File diff suppressed because it is too large Load Diff