8000 move important rule (about the use of [over _type2_] outside the exam… by TomLav · Pull Request #598 · cf-convention/cf-conventions · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000

move important rule (about the use of [over _type2_] outside the exam… #598

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion ch07.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,7 @@ These name(s) must be a subset of the standardised **`area_type`** strings.
This convention can accommodate cases in which a method is applied to more than one area type and the result is stored in a single data variable (with a dimension which ranges across the various area types).
It provides a convenient way to store output from land surface models, for example, since they deal with many area types within each surface gridbox (e.g., **`vegetation`**, **`bare_ground`**, **`snow`**, etc.).


[[mean-surface-temperature-sensible-heat-flux]]
[caption="Example 7.7. "]
.Mean surface temperature over land and sensible heat flux averaged separately over land and sea.
Expand All @@ -452,14 +453,15 @@ variables:
data:
land_sea="land","sea";
----
====

If the _method_ is `mean`, various ways of calculating the mean can be distinguished in the `cell_methods` attribute with a string of the form "mean where _type1_ [over _type2_]".
Here, _type1_ can be any of the possibilities allowed for _typevar_ or _type_ (as specified in the two paragraphs preceding above Example).
The same options apply to _type2_, except it is not allowed to be the name of an auxiliary coordinate variable with a dimension greater than one (ignoring the possible dimension accommodating the maximum string length).
A `cell_methods` attribute with a string of the form "mean where _type1_ over _type2_" indicates the mean is calculated by summing over the _type1_ portion of the cell and dividing by the area of the _type2_ portion.
In particular, a `cell_methods` string of the form "mean where all_area_types over _type2_" indicates the mean is calculated by summing over all types of area within the cell and dividing by the area of the _type2_ portion.
(Note that `all_area_types` is one of the valid strings permitted for a variable with the `standard_name` `area_type`.)
If "over _type2_" is omitted, the mean is calculated by summing over the _type1_ portion of the cell and dividing by the area of this portion.
====

[[thickness-over-sea-area-ex]]
[caption="Example 7.8. "]
Expand Down
Loading
0