Skip to content

Commit

Permalink
Merge pull request #460 from JonathanGregory/issue210
Browse files Browse the repository at this point in the history
correct errors in examples H9-H11
  • Loading branch information
larsbarring authored Sep 26, 2023
2 parents ece66d1 + 3cc0c12 commit a6fa41e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
17 changes: 7 additions & 10 deletions apph.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -587,9 +587,8 @@ This is a special case of the orthogonal multidimensional array representation (
       pressure:coordinates = "time lon lat z" ;
   float temperature(z) ;
       temperature:standard_name = "surface_temperature" ;
       temperature:long_name = "skin temperature" ;
       temperature:units = "Celsius" ;
       temperature:standard_name = "air_temperature" ;
       temperature:units = "degree_celsius" ;
       temperature:coordinates = "time lon lat z" ;
   float humidity(z) ;
Expand Down Expand Up @@ -653,9 +652,8 @@ The canonical use case for this is when rewriting raw data, and you expect that
       pressure:coordinates = "time lon lat z" ;
   float temperature(obs) ;
       temperature:standard_name = "surface_temperature" ;
       temperature:long_name = "skin temperature" ;
       temperature:units = "Celsius" ;
       temperature:standard_name = "air_temperature" ;
       temperature:units = "degree_celsius" ;
       temperature:coordinates = "time lon lat z" ;
   float humidity(obs) ;
Expand Down Expand Up @@ -695,7 +693,7 @@ If the sample dimension is the unlimited dimension, this allows data to be appen
variables:
   int profile(profile) ;
       profile:cf_name = "profile_id";
       profile:cf_role = "profile_id";
   double time(profile);
       time:standard_name = "time";
       time:long_name = "time" ;
Expand Down Expand Up @@ -727,9 +725,8 @@ If the sample dimension is the unlimited dimension, this allows data to be appen
       pressure:coordinates = "time lon lat z" ;
   float temperature(obs) ;
       temperature:standard_name = "surface_temperature" ;
       temperature:long_name = "skin temperature" ;
       temperature:units = "Celsius" ;
       temperature:standard_name = "air_temperature" ;
       temperature:units = "degree_celsius" ;
       temperature:coordinates = "time lon lat z" ;
   float humidity(obs) ;
Expand Down
1 change: 1 addition & 0 deletions history.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

=== Working version (most recent first)

* {issues}210[Issue #210]: Correct errors in examples H9-H11
* {issues}374[Issue #374]: Clarify rules for packing and unpacking in Section 8.1
* {issues}449[Issue #449]: Typo in end-date in Example 7.12
* {issues}266[Issue #266]: Updates to some links in the bibliography
Expand Down

0 comments on commit a6fa41e

Please sign in to comment.