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/modify variable names related to surface height/pressure #76

Merged
merged 7 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Metadata-standard-names.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Note that appending '_on_previous_timestep' to standard_names in this section yi
* `real(kind=kind_phys)`: units = Pa
* `air_pressure_at_sea_level`: Air pressure at sea level
* `real(kind=kind_phys)`: units = Pa
* `surface_air_pressure`: Surface air pressure
* `air_pressure_at_surface`: Air pressure at surface
* `real(kind=kind_phys)`: units = Pa
* `surface_pressure_of_dry_air`: Surface pressure of dry air
* `real(kind=kind_phys)`: units = Pa
Expand Down Expand Up @@ -161,6 +161,8 @@ Note that appending '_on_previous_timestep' to standard_names in this section yi
* `real(kind=kind_phys)`: units = 1
* `geopotential_height`: geopotential height w.r.t. sea level
* `real(kind=kind_phys)`: units = m
* `geopotential_height_at_surface`: geopotential height at local surface
* `real(kind=kind_phys)`: units = m
* `geopotential_height_wrt_surface`: geopotential height w.r.t. local surface
* `real(kind=kind_phys)`: units = m
* `geopotential_height_wrt_surface_at_interface`: geopotential height w.r.t. local surface at interface
Expand Down Expand Up @@ -1659,6 +1661,8 @@ Variables related to the compute environment
* `real(kind=kind_phys)`: units = m
* `height_above_mean_sea_level`: Height above mean sea level
* `real(kind=kind_phys)`: units = m
* `height_above_mean_sea_level_at_surface`: height above mean sea level at local surface
* `real(kind=kind_phys)`: units = m
* `unfiltered_height_above_mean_sea_level`: Unfiltered height above mean sea level
* `real(kind=kind_phys)`: units = m
* `air_potential_temperature_at_2m`: Air potential temperature at 2m
Expand Down
10 changes: 9 additions & 1 deletion standard_names.xml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
<standard_name name="air_pressure_at_sea_level">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="surface_air_pressure">
<standard_name name="air_pressure_at_surface">
<type kind="kind_phys" units="Pa">real</type>
</standard_name>
<standard_name name="surface_pressure_of_dry_air">
Expand Down Expand Up @@ -243,6 +243,10 @@
long_name="geopotential height w.r.t. sea level">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="geopotential_height_at_surface"
long_name="geopotential height at local surface">
svahl991 marked this conversation as resolved.
Show resolved Hide resolved
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="geopotential_height_wrt_surface"
long_name="geopotential height w.r.t. local surface">
<type kind="kind_phys" units="m">real</type>
Expand Down Expand Up @@ -2607,6 +2611,10 @@
<standard_name name="height_above_mean_sea_level">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="height_above_mean_sea_level_at_surface"
long_name="height above mean sea level at local surface">
<type kind="kind_phys" units="m">real</type>
</standard_name>
<standard_name name="unfiltered_height_above_mean_sea_level">
<type kind="kind_phys" units="m">real</type>
</standard_name>
Expand Down
Loading