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

..03-May-2022-

READMEH A D25-Oct-20212.7 KiB6848

cmplxpack.cH A D25-Oct-20212.6 KiB7615

compack.cH A D25-Oct-202115.3 KiB448300

comunpack.cH A D25-Oct-202115.1 KiB486352

dec_jpeg2000.cppH A D25-Oct-20214.2 KiB13579

dec_png.cH A D25-Oct-20214.7 KiB176120

drstemplates.cH A D25-Oct-20216 KiB19070

drstemplates.hH A D25-Oct-20212 KiB4915

enc_jpeg2000.cH A D25-Oct-20215.7 KiB20895

enc_png.cH A D25-Oct-20213.5 KiB13481

g2_addfield.cH A D25-Oct-202118.7 KiB509302

g2_addgrid.cH A D25-Oct-20219.1 KiB250120

g2_addlocal.cH A D25-Oct-20214.9 KiB14863

g2_create.cH A D25-Oct-20214.7 KiB12840

g2_free.cH A D25-Oct-20211.3 KiB4516

g2_getfld.cH A D25-Oct-202125.6 KiB613287

g2_gribend.cH A D25-Oct-20213.9 KiB12247

g2_info.cH A D25-Oct-20216.5 KiB19192

g2_miss.cH A D25-Oct-20211.8 KiB7031

g2_unpack1.cH A D25-Oct-20213.1 KiB10032

g2_unpack2.cH A D25-Oct-20212.3 KiB8738

g2_unpack3.cH A D25-Oct-20218.1 KiB228137

g2_unpack4.cH A D25-Oct-20216.7 KiB202122

g2_unpack5.cH A D25-Oct-20215.4 KiB16998

g2_unpack6.cH A D25-Oct-20213 KiB9840

g2_unpack7.cH A D25-Oct-20217.6 KiB232154

gbits.cH A D25-Oct-20214.5 KiB14692

gdal_g2clib_symbol_rename.hH A D25-Oct-20212.3 KiB6765

getdim.cH A D25-Oct-20213.3 KiB12590

getpoly.cH A D25-Oct-20212.1 KiB7843

grib2.hH A D25-Oct-202115.5 KiB299122

grib2c.docH A D25-Oct-202146 KiB947883

gridtemplates.cH A D25-Oct-202111.3 KiB302142

gridtemplates.hH A D25-Oct-20212.3 KiB5615

int_power.cH A D25-Oct-2021462 3117

jpcpack.cH A D25-Oct-20216.7 KiB18080

jpcunpack.cH A D25-Oct-20212.6 KiB9754

makefile.vcH A D25-Oct-2021666 169

misspack.cH A D25-Oct-202121.1 KiB621446

mkieee.cH A D25-Oct-20212.9 KiB11954

pack_gp.cH A D25-Oct-202145.9 KiB1,469683

pdstemplates.cH A D25-Oct-202126.9 KiB652393

pdstemplates.hH A D25-Oct-20212.7 KiB6115

pngpack.cH A D25-Oct-20215.5 KiB16880

pngunpack.cH A D25-Oct-20212.6 KiB8845

rdieee.cH A D25-Oct-20212.1 KiB7531

reduce.cH A D25-Oct-202115.4 KiB422139

seekgb.cH A D25-Oct-20212.7 KiB8234

simpack.cH A D25-Oct-20218 KiB241133

simunpack.cH A D25-Oct-20212.4 KiB8338

specpack.cH A D25-Oct-20214.1 KiB12965

specunpack.cH A D25-Oct-20214.1 KiB12269

README

1                                                           Sep 02, 2003
2                                                           W/NP11:SAG
3
4g2clib Library.
5
6This library contains "C" decoder/encoder
7routines for GRIB edition 2.  The user API for the GRIB2 routines
8is described in file "grib2c.doc".
9
10This "C" source code contains many uses of the C++
11comment style "//".  Please make sure you include the
12appropriate compiler option in the CFLAGS variable in the
13makefile to allow the use of "//" comment indicators.
14
15
16We have added support for PNG and JPEG2000 image compression
17algorithms within the GRIB2 standard.  If you would like
18to compile this library to utilize these GRIB2 Templates,
19make sure that -DUSE_PNG and -DUSE_JPEG2000 are specified
20in the DEFS variable in the makefile.  You will also need
21to download and install the external libraries listed below,
22if they are not already installed on your system.
23
24If you do not wish to bother with the external libs and
25don't need PNG and JPEG2000 support, you can remove the
26-DUSE_PNG and -DUSE_JPEG2000 flags from the DEFS variable
27in the makefile.
28
29
30-------------------------------------------------------------------------------
31
32     External Libraries:
33
34libjasper.a - This library is a C implementation of the JPEG-2000 Part-1
35              standard (i.e., ISO/IEC 15444-1).  This library is required
36              if JPEG2000 support in GRIB2 is desired.  If not, remove
37              the -DUSE_JPEG2000 option from the DEFS variable
38              in the makefile.
39
40              Download version jasper-1.700.2 from the JasPer Project's
41              home page, http://www.ece.uvic.ca/~mdadams/jasper/.
42
43              More information about JPEG2000 can be found at
44              http://www.jpeg.org/JPEG2000.html.
45
46libpng.a      This library is a C implementation of the Portable Network
47              Graphics PNG image compression format.  This library is required
48              if PNG support in GRIB2 is desired.  If not, remove
49              the -DUSE_PNG option from the DEFS variable
50              in the makefile.
51
52              If not already installed on your system, download version
53              libpng-1.2.5 from http://www.libpng.org/pub/png/libpng.html.
54
55              More information about PNG can be found at
56              http://www.libpng.org/pub/png/.
57
58libz.a        This library contains compression/decompression routines
59              used by libpng.a for PNG image compression support.
60              This library is required if PNG support in GRIB2 is desired.
61              If not, remove the -DUSE_PNG option from the DEFS variable
62              in g2lib/makefile.
63
64              If not already installed on your system, download version
65              zlib-1.1.4 from http://www.gzip.org/zlib/.
66
67
68