File: cmip5.cdl

package info (click to toggle)
nco 4.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 24,252 kB
  • ctags: 6,921
  • sloc: ansic: 48,409; cpp: 22,351; xml: 16,783; sh: 12,408; perl: 5,453; makefile: 1,940; lex: 1,136; yacc: 605; python: 116; csh: 40
file content (38 lines) | stat: -rw-r--r-- 639 bytes parent folder | download
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
30
31
32
33
34
35
36
37
38
// ncgen -k netCDF-4 -b -o ~/nco/data/cmip5.nc ~/nco/data/cmip5.cdl

netcdf cmip5 {
  :Conventions = "CF-1.5";
  :history = "yada yada yada";
  :Scenario = "RCP 8.5";

  group: cesm { 
  dimensions:
  time=unlimited;
  variables:
  float tas(time);
  :Model = "CESM";
  data:
  tas=272,272,272,272;
  } // end cesm
  
  group: ecmwf { 
  dimensions:
  time=unlimited;
  variables:
  float tas(time);
  :Model = "ECMWF";
  data:
  tas=273,273,273,273;
  } // end ecmwf
  
  group: giss { 
  dimensions:
  time=unlimited;
  variables:
  float tas(time);
  :Model = "GISS";
  data:
  tas=274,274,274,274;
  } // end gfdl

} // end root group