File: trj.cdl

package info (click to toggle)
nco 5.3.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 38,260 kB
  • sloc: ansic: 84,963; cpp: 28,654; sh: 14,071; perl: 5,996; makefile: 2,009; lex: 1,009; python: 127; csh: 40
file content (29 lines) | stat: -rw-r--r-- 826 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// -*-C++-*-
// Generate netCDF file with:
// ncgen -k netCDF-4 -b -o ~/nco/data/trj.nc ~/nco/data/trj.cdl

netcdf trj {
  :Conventions = "CF-1.6";
  :history = "Tue Apr 25 12:46:10 PDT 2017: ncgen -k netCDF-4 -b -o ~/nco/data/trj.nc ~/nco/data/trj.cdl";
  :Purpose = "Demonstrate trajectory profiles stored in hierarchical format";
  :CF_documentation = "http://cfconventions.org/cf-conventions/cf-conventions.html#trajectory-profiles";

  group: argo_01 {
      :Platform_ID = "Buoy 01";
      :featureType = "trajectoryProfile";

    dimensions:
    profile=unlimited;
    z=3;
    variables:
      double lat(profile);
      double lon(profile);
      double alt(profile,z);
      double time(profile);
      float temperature(profile,z);
    data:
      temperature=;
      time=1.;
    } // argo_01
    
} // root group