/usr/share/doc/grads/html/gradfuncasum.html is in grads 2:2.0.1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | <!--Copyright (C) 1988-2005 by the Institute of Global Environment and Society (IGES). See file COPYRIGHT for more information.-->
<html>
<title>GrADS Function: asum</title>
<body bgcolor="e0f0ff" text="#000000">
<H2><b>asum()</b></H2><p>
<p>
This function takes a sum over an X-Y region. The syntax is:
<p>
<code>asum(<i>expr, xdim1, xdim2, ydim1, ydim2</i>)</code>
<p>
where:
<p>
<ul>
<code><i>expr</i> </code>- any valid GrADS expression <br>
<code><i>xdim1</i> </code>- starting X dimension expression <br>
<code><i>xdim2</i> </code>- ending X dimension expression <br>
<code><i>ydim1</i> </code>- starting Y dimension expression <br>
<code><i>ydim2</i> </code>- ending Y dimension expression <br>
</ul>
<p>
For global summing, a shorthand may be used:
<ul>
<code>asum(<i>expr</i>, global)</code> or <br>
<code>asum(<i>expr</i>, g)</code>
</ul>
is the same as
<ul>
<code>asum(<i>expr</i>, lon=0, lon=360, lat=-90, lat=90)</code>
</ul>
<p>
<H3>Usage Notes</H3>
<p>
<ol>
<li>The <code>asum</code> function always does its average to the
exact boundaries specified, in world coordinates. If the boundaries
specified via the dimension expressions do not fall on grid
boundaries, then the boundary values are weighted appropriately in the
sum.
<p>
<li>When grid coordinates are used in the dimensions expressions,
then they are converted to world coordinates for the boundary to be
determined. This conversion is done using the scaling of the default
file. Note that the conversion is done using the outside grid
boundary, rather than the grid center. For example:
<p>
<dd><code>asum(expr,x=1,x=72,y=1,y=46)</code>
<p>
Here the boundary would be determined by using the grid values 0.5,
72.5, 0.5, and 46.5 which would be converted to world coordinates. If
we assume that <code>x=1</code> is 0 degrees longitude and
<code>x=72</code> is 355 degrees longitude, then the averaging
boundary would be -2.5 to 357.5 degrees, which would cover the
earth. In the Y dimension, when the boundary is beyond the pole, the
<code>asum</code> function recognizes this and weights
appropriately. To calculate a sum without any weighting, use the
<code><a href="gradfuncasumg.html">asumg</a></code> function.
</ol>
<p>
<H3>Examples</H3>
</body>
</html>
|