Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add definition of 'name_strlen' dimension where missing in Appendix H CDL examples #128

Merged
merged 2 commits into from Jul 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 14 additions & 2 deletions apph.adoc
Expand Up @@ -76,6 +76,8 @@ If the time series instances have the same number of elements and the time value
dimensions:
  station = 10 ;  // measurement locations
  time = UNLIMITED ;
 name_strlen = 23 ;

variables:
  float humidity(station,time) ;
    humidity:standard_name = "specific humidity" ;
Expand Down Expand Up @@ -122,6 +124,7 @@ Much of the simplicity of the orthogonal multidimensional representation can be
dimensions:
   station = UNLIMITED ;
   obs = 13 ;
name_strlen = 23 ;

variables:
   float lon(station) ;
Expand Down Expand Up @@ -296,6 +299,7 @@ When the time series have different lengths and the data values for entire time
dimensions:
   station = 23 ;
   obs = 1234 ;
name_strlen = 23 ;

variables:
   float lon(station) ;
Expand Down Expand Up @@ -370,6 +374,7 @@ When time series with different lengths are written incrementally, the indexed r
dimensions:
   station = 23 ;
   obs = UNLIMITED ;
name_strlen = 23 ;

variables:
   float lon(station) ;
Expand Down Expand Up @@ -700,6 +705,7 @@ When storing multiple trajectories in the same file, and the number of elements
dimensions:
   obs = 1000 ;
   trajectory = 77 ;
name_strlen = 23 ;

variables:
   char trajectory(trajectory, name_strlen) ;
Expand Down Expand Up @@ -760,6 +766,7 @@ When a single trajectory is stored in the data variable, there is no need for th
----
dimensions:
   time = 42;
name_strlen = 23 ;

variables:
   char trajectory(name_strlen) ;
Expand Down Expand Up @@ -817,6 +824,7 @@ When the number of elements for each trajectory varies, and one can control the
dimensions:
   obs = 3443;
   trajectory = 77 ;
name_strlen = 23 ;

variables:
   char trajectory(trajectory, name_strlen) ;
Expand Down Expand Up @@ -877,6 +885,7 @@ When the number of elements at each trajectory vary, and the elements cannot be
dimensions:
   obs = UNLIMITED ;
   trajectory = 77 ;
name_strlen = 23 ;

variables:
   char trajectory(trajectory, name_strlen) ;
Expand Down Expand Up @@ -950,6 +959,7 @@ When storing time series of profiles at multiple stations in the same data varia
   station = 22 ;
   profile = 3002 ;
   z = 42 ;
name_strlen = 23 ;

variables:
   float lon(station) ;
Expand Down Expand Up @@ -1056,6 +1066,7 @@ If there is only one station in the data variable, there is no need for the stat
dimensions:
   profile = 30 ;
   z = 42 ;
name_strlen = 23 ;

variables:
   float lon ;
Expand Down Expand Up @@ -1121,8 +1132,9 @@ When the number of profiles and levels for each station varies, one can use a ra
----
dimensions:
   obs = UNLIMITED ;
   profile = 1420 ;
   station = 42;
   profiles = 1420 ;
   stations = 42;
name_strlen = 23 ;

variables:
   float lon(station) ;
Expand Down