root/docs/currents_pic/fixed_profiler_cdl.txt

Revision 126 (checked in by monisha, 5 years ago)

inclued nbins in dimensions.

Line 
1 netcdf  fixed-profiler {
2
3 // This is a fixed-profiler station with dependent variables
4 // measured at multiple heights for a given time. 
5
6
7 dimensions:
8 time = 2;
9 lon = 1;
10 lat = 1;
11 z = 23;
12 nbins = 20; // actual number of adcp bins
13
14 variables:
15
16 // INDEPENDENT VARIABLES
17 long time(time);
18         time: long_name = "Sample Time";
19         time: standard_name = "time";
20         time: units = "sec since 1970-1-1 00:00:00";
21         time: axis = "T";
22 float lon(lon);
23         lon: long_name = "longitude in decimal degrees";
24         lon: standard_name = "longitude";
25         lon: units = "degrees_east" ;
26         lon: reference = "geographical coordinates" ;
27         lon: axis = "X";
28         lon: valid_range = -90.,90.;
29 float lat(lat);
30         lat: long_name = "latitude in decimal degrees";
31         lat: standard_name = "latitude";
32         lat: units = "degrees_east";
33         lat: reference = "geographical coordinates";
34         lat: axis = "Y";
35         lat: valid_range = -180.,180.;
36 float z(z);
37         z: long_name = "Height";
38         z: standard_name = "height";
39         z: units = "m";
40         z:positive = "up" ;
41         z: axis = "Z";
42        
43
44
45 // DEPENDENT VARIABLES
46
47 double northward_current(time,z);
48         northward_current: long_name = "Northward Current";
49         northward_current: standard_name = "northward_current";
50         northward_current: units = "cm s-1";
51
52 double eastward_current(time,z);
53        eastward_current: long_name = "Eastward Current";
54        eastward_current: standard_name = "eastward_current";
55        eastward_current: units = "cm s-1";
56        
57 // global attributes:
58 // (use all for adopted CDL v2.0)
59
60
61 :title = "Caro-COOPS data for buoy CAP3" ;
62                 :institution = "Baruch Institute, University of South Carolina at Columbia" ;
63                 :institution_url = "http://carocoops.org" ;
64                 :institution_dods_url = "http://trident.baruch.sc.edu/dods" ;
65                 :metadata_url = "TDB" ;
66                 :references = "http://carocoops.org" ;         
67                 :source = "fixed-platform (buoy) observation" ;
68                 :comment = "processed with perl from incoming observations" ;
69                 :Conventions = "CF-1.0" ;
70                 :format = "SEA-COOS RT" ;
71                 :seacoos_rt_version = "2.0" ;
72                 :platform_code = "CAP3" ;
73                 :format_category_code = "fixed-profiler" ;
74                 :institution_code = "carocoops" ;
75                 :project = "Carolinas Coastal Ocean Observing and Prediction System (Caro-COOPS)" ;
76                 :project_url = "http://carocoops.org" ;
77                 :data_type = "buoy" ;
78                 :instrument_code = "buoy" ;
79                 :package_code = "buoy" ;
80                 :start_date = "2006-11-01 15:00:50 UTC" ;
81                 :end_date = "2006-11-01 15:00:50 UTC" ;
82                 :release_date = "2006-11-01 15:00:50 UTC" ;
83                 :creation_date = "2006-11-01 15:00:50 UTC" ;
84                 :modification_date = "2006-11-01 15:00:50 UTC" ;
85                 :process_level = "raw data" ;
86                 :_FillValue = -99999. ;
87
88
89 data:
90
91  time = 1062804600, 1165004766 ;
92
93  lon = -82.543 ;
94
95  lat = 18.4627 ;
96
97  z = -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -1, -10, -99999 ; //bins 1 through 20 - from surface to bottom followed by surface, bottom and depth-averaged
98  
99  
100  northward_current =
101   -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -99999, -99999, -99999, -99999,-99999,-99999,-99999, -99999, -99999, -0.939, -0.939, -0.939,
102   -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -0.939, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -0.939, -0.939, -0.939 ;
103
104  eastward_current =
105   -0.949, -0.949, -0.949,-0.949, -0.949, -0.949, -0.949, -0.949, -0.949, -0.949, -0.949, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -0.949, -0.949, -0.949,
106   -0.949, -0.949, -0.949, -0.949, -0.949, -0.949, -0.949, -0.949, -0.949, -0.949, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -99999, -0.949, -0.949, -0.949 ;
107 }
Note: See TracBrowser for help on using the browser.