• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Geo/H15-Jul-2020-6,6804,292

t/H03-May-2022-9,1248,663

BUFR.xsH A D02-Feb-20198.9 KiB257174

ChangesH A D15-Jul-20206.1 KiB133132

LICENCEH A D14-Mar-201017.6 KiB341281

MANIFESTH A D15-Jul-20203.2 KiB147146

META.jsonH A D15-Jul-20201.3 KiB5554

META.ymlH A D15-Jul-2020776 3635

Makefile.PLH A D12-Feb-20191.5 KiB4137

READMEH A D15-Feb-20192 KiB6845

bufr_reencode.plH A D03-May-20225.9 KiB18657

bufralter.plH A D03-May-202215.7 KiB463249

bufrencode.plH A D03-May-202210.1 KiB324125

bufrextract.plH A D03-May-20228.8 KiB26090

bufrread.plH A D03-May-202223.9 KiB607315

bufrresolve.plH A D03-May-20228.9 KiB25582

README

1Geo::BUFR
2=========
3
4Library for handling of WMO (World Meteorological Organization) BUFR
5files.
6
7
8INSTALLATION
9
10To install this module type the following:
11
12   perl Makefile.PL
13   make
14   make test
15   make install
16
17This will install the module in the standard locations. You will most
18probably require root privileges to install in standard system
19directories. To install in a non-standard directory like /home/cpan,
20specify the directory during the 'perl Makefile.PL' stage:
21
22   perl Makefile.PL INSTALL_BASE=/home/cpan
23
24After installing, in order for Perl to find the module when executing
25programs, you are adviced to modify the environment variable $PERL5LIB,
26e.g.
27
28   export PERL5LIB=/home/cpan/lib/perl/5.8.4:$PERL5LIB
29
30(or the corresponding command for your operating system and Perl version).
31
32You will need a C compiler which supports variable length arrays. This
33is standard on Unix-like systems. On Windows I recommend using
34Strawberry Perl, in which case you should type 'gmake' instead of
35'make' when installing.
36
37DEPENDENCIES
38
39This module requires these other modules, all of which are expected to
40be part of a standard Perl distribution:
41
42Carp, Config, Cwd, DynaLoader, FileHandle, File::Spec::Functions,
43Getopt::Long, Pod::Usage, Scalar::Util, Storable, Test::More,
44Time::Local
45
46DESCRIPTION
47
48BUFR = Binary Universal Form for the Representation of meteorological
49data. BUFR is becoming the standard exchange format for meteorological
50observations. This module provides methods for decoding and encoding
51BUFR messages, and for displaying information in BUFR B and D tables
52and in BUFR flag and code tables. The core routines for encoding and
53decoding bitstreams are implemented in C.
54
55This module also installs some example programs: bufrread.pl,
56bufrresolve.pl, bufrextract.pl, bufrencode.pl, bufr_reencode.pl and
57bufralter.pl. See https://wiki.met.no/bufr.pm/start for examples of
58use.
59
60
61COPYRIGHT AND LICENCE
62
63This library is free software; you can redistribute it and/or modify it
64under the same terms as Perl itself.
65
66Copyright (C) 2010-2019 MET Norway
67
68