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 all 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 local 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 w.r.t. sea level
* `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
11 changes: 10 additions & 1 deletion standard_names.xml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@
<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"
long_name="Air pressure at local 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 +244,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 w.r.t. sea level">
<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 +2612,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