1netCDFPerl(1) UNIDATA UTILITIES netCDFPerl(1)
2
3
4
6 netCDFPerl - perl extension for netCDF dataset access
7
9 use netCDF;
10
11 NetCDF::create("foo.nc", NetCDF::CLOBBER);
12 ...
13
15 netCDFPerl is a Perl 5 extension-module interface to the services pro‐
16 vided by the netCDF version 2 API, netcdf2(3).
17
18 The functions in the netCDF version 2 library can be accessed by a Perl
19 5 script by replacing the `nc' prefix of the regular netCDF version 2 C
20 function names with NetCDF::. For example, the C function nccreate()
21 is available to a perl script as NetCDF::create.
22
23 Each perl function matches, as closely as possible and necessary, its C
24 counterpart:
25
26 * The number, order, and semantics of the arguments are identical.
27 Note, however, that it is not necessary to specify the number of
28 elements in an array because perl arrays carry that information.
29
30 * The behavior is the same in terms of the netCDF dataset.
31
32 * A value of -1 is returned to indicate an error.
33
34 Scalar argument types are mapped in an obvious way:
35
36
37
38 The individual elements of an array argument are similarly mapped.
39
40 Array arguments themselves are passed by reference for both input and
41 output. For example, the following Perl 5 code will write and then
42 read a hyperslab of values:
43
44 @start = (0, 0, 0);
45 @count = (1, 2, 3);
46 @out = (1, 2, 3, 4, 5, 6);
47 NetCDF::varput($ncid, $varid, @start, @count, @out);
48 NetCDF::varget($ncid, $varid, @start, @count, @in);
49
50 (The above assumes that $ncid and $varid have been appropriately set.)
51 After this code is executed, the array @in will have the same values as
52 the array @out. The previous contents, if any, of an array used for
53 input are destroyed (e.g. @in in the above example).
54
55 To define a scalar variable with NetCDF::vardef(), use an empty dimen‐
56 sion-ID array, e.g.
57
58 NetCDF::vardef($ncid, "scalar_variable", NetCDF::FLOAT, \());
59
60 The interface doesn't support null arguments. One cannot use a void
61 pointer to indicate that no value is requested for a particular argu‐
62 ment: all arguments must be present.
63
64 For technical reasons, output variables must be initialized, i.e. any
65 variable argument that is to have its value set by a function must al‐
66 ready have a value. For example, if the first occurrence of the vari‐
67 able $attval is in the following:
68
69 NetCDF::attget($ncid, NetCDF::GLOBAL, "history", \$attval);
70
71 then a core dump will probably result. The solution is to initialize
72 the variable before using it:
73
74 $attval="";
75 NetCDF::attget($ncid, NetCDF::GLOBAL, "history", \$attval);
76
77
78 Two additional functions are provided for error handling.
79 NetCDF::opts(i) determines the handling of errors by setting the ncopts
80 variable to i. It returns the previous value. NetCDF::err() returns
81 the value of the error code variable, ncerr.
82
83 In addition to the above functions, most C macro constants that are de‐
84 fined in the netCDF header file netcdf.h are also available to a perl
85 script by dropping any `NC_' substring and using the NetCDF:: prefix,
86 e.g. NetCDF::LONG.
87
89 perl(1), netcdf2(3)
90
91
92
93Printed: 123-12-20 $Date: 1999/07/21 16:38:27 $ netCDFPerl(1)