Skip to content

Commit

Permalink
Merge pull request #461 from castelao/fix-spaces-trajectory
Browse files Browse the repository at this point in the history
Minor fix on text alignment
  • Loading branch information
davidhassell authored Oct 31, 2023
2 parents 509a206 + 92e4853 commit 62cc4ff
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apph.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -778,8 +778,8 @@ In that case, any unused elements of the data and auxiliary coordinate variables
variables:
   string trajectory(trajectory) ;
     trajectory:cf_role = "trajectory_id";
     trajectory:long_name = "trajectory name" ;
      trajectory:cf_role = "trajectory_id";
      trajectory:long_name = "trajectory name" ;
   int trajectory_info(trajectory) ;
       trajectory_info:long_name = "some kind of trajectory info"
Expand All @@ -801,7 +801,7 @@ In that case, any unused elements of the data and auxiliary coordinate variables
       z:long_name = "height above mean sea level" ;
       z:units = "km" ;
       z:positive = "up" ;
        z:axis = "Z" ;
       z:axis = "Z" ;
   float O3(trajectory, obs) ;
       O3:standard_name = “mass_fraction_of_ozone_in_air”;
Expand Down Expand Up @@ -862,7 +862,7 @@ This is a special case of the multidimensional array representation.
       z:long_name = "height above mean sea level" ;
       z:units = "km" ;
       z:positive = "up" ;
        z:axis = "Z" ;
       z:axis = "Z" ;
   float O3(time) ;
       O3:standard_name = “mass_fraction_of_ozone_in_air”;
Expand Down Expand Up @@ -926,7 +926,7 @@ The canonical use case for this is when rewriting raw data, and you expect that
       z:long_name = "height above mean sea level" ;
       z:units = "km" ;
       z:positive = "up" ;
        z:axis = "Z" ;
       z:axis = "Z" ;
   float O3(obs) ;
       O3:standard_name = “mass_fraction_of_ozone_in_air”;
Expand Down Expand Up @@ -1076,7 +1076,7 @@ When storing time series of profiles at multiple stations in the same data varia
       alt:long_name = "height above mean sea level" ;
       alt:units = "km" ;
       alt:positive = "up" ;
        alt:axis = "Z" ;  
       alt:axis = "Z" ;  
   double time(station, profile ) ;
       time:standard_name = "time";
Expand Down Expand Up @@ -1277,7 +1277,7 @@ The canonical use case is when writing real-time data streams that contain profi
       z:long_name = "height above mean sea level" ;
       z:units = "km" ;
       z:axis = "Z" ;  
        z:positive = "up" ;
       z:positive = "up" ;
   float pressure(obs) ;
       pressure:standard_name = "air_pressure" ;
Expand Down Expand Up @@ -1433,7 +1433,7 @@ If there is only one trajectory in the data variable, there is no need for the t
       alt:long_name = "height above mean sea level" ;
       alt:units = "km" ;
       alt:positive = "up" ;
        alt:axis = "Z" ;  
       alt:axis = "Z" ;  
   double time(profile ) ;
       time:standard_name = "time";
Expand Down

0 comments on commit 62cc4ff

Please sign in to comment.