File: simple_dump.pl

package info (click to toggle)
libgeo-metar-perl 1.14-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 112 kB
  • ctags: 12
  • sloc: perl: 682; makefile: 37
file content (12 lines) | stat: -rw-r--r-- 241 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

# $Id: simple_dump.pl,v 1.2 1999/11/19 00:10:57 jzawodn Exp $

# Example script for METAR.pm.

use Geo::METAR;

my $m = new Geo::METAR;
$m->metar("KFDY 251450Z 21012G21KT 8SM OVC065 04/M01 A3010 RMK 57014");
$m->dump;
exit;