netcdf fixed-profiler-v2.0 { // This is a fixed-profiler station with dependent variables // measured at multiple heights for a given time. // All sensors are sampling at the same time. // (1) x and y repeated for each time. // (2) Assign z dimension equal to number of z levels dimensions: time = 4; lon = 1; lat = 1; z = 3; variables: // INDEPENDENT VARIABLES long time(time); time: long_name = "Sample Time"; time: standard_name = "time"; time: units = "sec since 1970-1-1 00:00:00"; time: axis = "T"; float lon(lon); lon: long_name = "latitude in decimal degrees"; lon: standard_name = "latitude"; lon: units = "degrees_north" ; lon: reference = "geographical coordinates" ; lon: axis = "Y"; lon: valid_range = -90.,90.; float lat(lat); lat: long_name = "longitude in decimal degrees"; lat: standard_name = "longitude"; lat: units = "degrees_east"; lat: reference = "geographical coordinates"; lat: axis = "X"; lat: valid_range = -180.,180.; float z(z); z: long_name = "Height"; z: standard_name = "height"; z: units = "m"; z: axis = "Z"; // DEPENDENT VARIABLES float wspd(time,z); wspd: long_name = "Wind Speed"; wspd: standard_name = "wind_speed"; wspd: units = "m s-1"; float wdir(time,z); wdir: long_name= "Wind Direction (from)"; wdir: standard_name = "wind_from_direction"; wdir: units = "degrees"; wdir: reference = "clockwise from true north"; wdir: valid_range = 0.,360.; // global attributes: // (use all for adopted CDL v2.0) :format_category = "fixed-profiler"; data: time = 1062804600,1062808200,1062810000,1062811800; lat = 18.462702; lon = -82.543; z = 10, 20, 30; wspd = 9.80, 9.80, 9.80, 12.63, 12.63, 12.63, 16.52, 16.52, 16.52, 18.97, 18.97, 18.97; wdir = 88.8, 88.8, 88.8, 103.6, 103.6, 103.6, 112.7, 112.7, 112.7, 105.0, 105.0, 105.0; }