Skip to content

Commit 8337a1c

Browse files
Merge branch 'NOAA-EMC:develop' into as_spack3
2 parents da3d5ee + 4912cf9 commit 8337a1c

156 files changed

Lines changed: 1250 additions & 467 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

wgrib2/AAIG.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ extern enum output_order_type output_order_wanted;
6767
* If RT is different than VT:
6868
* output = NAME.LEVEL.RT.VT.asc
6969
*
70-
* @param ARG0 ???
70+
* @param ARG0 List of function arguments set by wgrib2's main() function (see @ref ARG0). These arguments
71+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
72+
* parameters.
7173
*
7274
* @return 0 for success, error code otherwise.
7375
*

wgrib2/AAIGlong.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ extern enum output_order_type output_order_wanted;
6262
* replace "'" by " Q "
6363
* replace '"' by " Q "
6464
*
65-
* @param ARG0 ???
65+
* @param ARG0 List of function arguments set by wgrib2's main() function (see @ref ARG0). These arguments
66+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
67+
* parameters.
6668
*
6769
* @return 0 for success, error code otherwise.
6870
*

wgrib2/Aerosol.c

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
* ## Usage
2727
* -aerosol_size
2828
*
29-
* @param ARG0 ???
29+
* @param ARG0 List of function arguments set by wgrib2's main() function (see @ref ARG0). These arguments
30+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
31+
* parameters.
3032
*
3133
* @return 0 for success, does not return error codes.
3234
*
@@ -63,7 +65,9 @@ int f_aerosol_size(ARG0) {
6365
* ## Usage
6466
* -aerosol_wavelength
6567
*
66-
* @param ARG0 ???
68+
* @param ARG0 List of function arguments set by wgrib2's main() function (see @ref ARG0). These arguments
69+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
70+
* parameters.
6771
*
6872
* @return 0 for success, does not return error codes.
6973
*

wgrib2/Alarm.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@
2828
* For Posix systems, the system generates a SIGALRM signal to the process after N seconds. The default
2929
* action is to terminate the process (wgrib2).
3030
*
31-
* @param ARG1 ???
31+
* @param ARG1 List of function arguments set by wgrib2's main() function (see @ref ARG1). These arguments
32+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
33+
* parameters.
3234
*
3335
* @return 0 for success, error code otherwise.
3436
*

wgrib2/Ave_test.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,9 @@ static int do_ave(struct ave_struct *save) {
425425
*
426426
* The time interval is the delta time for averaging (e.g., "6hr", "1dy").
427427
*
428-
* @param ARG2 ???
428+
* @param ARG2 List of function arguments set by wgrib2's main() function (see @ref ARG2). These arguments
429+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
430+
* parameters.
429431
*
430432
* @return 0 for success, error code otherwise.
431433
*

wgrib2/Ave_var.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,9 @@ static int write_ave_var(struct ave_var_struct *save) {
489489
* The time interval is the delta time for averaging in the form (integer)(units)
490490
* (e.g., "6hr", "1dy"). Units are hr, dy, mo, yr.
491491
*
492-
* @param ARG2 ???
492+
* @param ARG2 List of function arguments set by wgrib2's main() function (see @ref ARG2). These arguments
493+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
494+
* parameters.
493495
*
494496
* @return 0 for success, error code otherwise.
495497
*

wgrib2/Bbox.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,9 @@ static int get_cindex (int i, int nx) {
118118
* j1:j2:dj specifies the y-dimension, where j1 is the starting index, j2 is the ending index, and dj is the increment.
119119
* output_file is written in the specified format (e.g., "bin", "text", "spread").
120120
*
121-
* @param ARG4 ???
121+
* @param ARG4 List of function arguments set by wgrib2's main() function (see @ref ARG4). These arguments
122+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
123+
* parameters.
122124
*
123125
* @return 0 for success, error code otherwise.
124126
*

wgrib2/Box_ave.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ extern unsigned int ny_;
7777
* grid(i,j) = UNDEFINED if wt <= WT
7878
* = box average if wt > WT
7979
*
80-
* @param ARG3 ???
80+
* @param ARG3 List of function arguments set by wgrib2's main() function (see @ref ARG3). These arguments
81+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
82+
* parameters.
8183
*
8284
* @return 0 for success, error code otherwise.
8385
*

wgrib2/Check_pdt_size.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ int warn_check_pdt = 1;
4747
*
4848
* Where X is 0 (disable) or 1 (enable, default).
4949
*
50-
* @param ARG1 ???
50+
* @param ARG1 List of function arguments set by wgrib2's main() function (see @ref ARG1). These arguments
51+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
52+
* parameters.
5153
*
5254
* @return 0 for success.
5355
*

wgrib2/Checksum.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ extern int decode;
4040
* 1-8: section number
4141
* data: grid-point data
4242
*
43-
* @param ARG1 ???
43+
* @param ARG1 List of function arguments set by wgrib2's main() function (see @ref ARG1). These arguments
44+
* won't be relevant to the average wgrib2 user. See the Usage section above for details about any input
45+
* parameters.
4446
*
4547
* @return 0 for success, error code otherwise.
4648
*

0 commit comments

Comments
 (0)