-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathGribLoop.xml
More file actions
156 lines (156 loc) · 5.68 KB
/
GribLoop.xml
File metadata and controls
156 lines (156 loc) · 5.68 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!--
(C) Copyright 1996-2016 ECMWF.
This software is licensed under the terms of the Apache Licence Version 2.0
which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
In applying this licence, ECMWF does not waive the privileges and immunities
granted to it by virtue of its status as an intergovernmental organisation nor
does it submit to any jurisdiction.
-->
<magics>
<class xmltag="gribloop"
name="GribLoop"
directory="decoders"
prefix="grib"
action="pgrib"
include="GribDecoder.h">
<documentation>
The purpose of the GRIB loop is to easily create an animation. This feature
is only available in MagML.
</documentation>
<parameter member="address_mode"
to="GribAddressMode"
default="record"
from="string"
name="grib_file_address_mode">
<option xml="record" fortran="record" include="GribAddressMode.h" name="GribAddressRecordMode"></option>
<option xml="byte_offset" fortran="byte_offset" include="GribAddressMode.h" name="GribAddressByteMode"></option>
<documentation>Normally GRIB fields are stored as records on a file. If the BYTE offset method is being used, the parameter GRIB_FILE_ADDRESS_MODE should be set to 'BYTE_OFFSET'.(RECORD_NUMBER/BYTE_OFFSET)</documentation>
</parameter>
<parameter member="dimension"
to="intarray"
default="intarray()"
from="intarray"
name="grib_dimension">
<documentation>Metview:dimension of the input : 1 for field, 2 for wind</documentation>
</parameter>
<parameter member="dim_1"
to="longintarray"
default="longintarray()"
from="longintarray"
name="grib_position_1">
<documentation>Metview:position of the fields for x component in the fieldset</documentation>
</parameter>
<parameter member="dim_2"
to="longintarray"
default="longintarray()"
from="longintarray"
name="grib_position_2">
<documentation>Metview:position of the fields for y component in the fieldset</documentation>
</parameter>
<parameter member="dim_colour"
to="longintarray"
default="longintarray()"
from="longintarray"
name="grib_position_colour">
<documentation>Metview:position of the fields for colour component in the fieldset</documentation>
</parameter>
<parameter member="dim"
to="longintarray"
default="longintarray()"
from="longintarray"
name="grib_position">
<documentation>Metview:position of the fields to plot in the fieldset</documentation>
</parameter>
<parameter member="path"
to="string"
default=""
from="string"
name="grib_loop_path">
<documentation>Path of the grib to animate</documentation>
</parameter>
<parameter member="id"
to="string"
default=""
from="string"
name="grib_id">
<release>Magics++2.6</release>
<documentation>Id used to identify a grib file in the title production</documentation>
</parameter>
<parameter member="step"
to="GribLoopStep"
default="loopondate"
from="string"
name="grib_loop_step">
<option xml="loopondate" fortran="loopondate" include="GribLoopStep.h" name="DateGribLoopStep"></option>
<option xml="looponparam" fortran="looponparam" include="GribLoopStep.h" name="ParamGribLoopStep"></option>
<documentation>Method to create the steps names for each plot of the animation</documentation>
</parameter>
<parameter member="scaling"
to="bool"
default="on"
from="string"
name="grib_automatic_scaling">
<release>Magics++0.3</release>
<documentation>Scaling of the decoded field (ON/OFF)</documentation>
</parameter>
<parameter from="string"
name="grib_automatic_derived_scaling"
default="off"
member="derived_scaling"
to="bool"
for_docs="no">
<release>Magics++2.13.5</release>
<documentation>Scaling of the decoded derived field (ON/OFF). A field is considered derived if the GRIB_API key generatingProcessIdentifier is 254.</documentation>
</parameter>
<parameter member="scaling_factor"
to="float"
default="1"
from="float"
name="grib_scaling_factor">
<release>Magics++2.10</release>
<documentation>Apply a scaling factor to the field.</documentation>
</parameter>
<parameter member="scaling_offset"
to="float"
default="0"
from="float"
name="grib_scaling_offset">
<release>Magics++2.10</release>
<documentation>Apply a scaling offset to the field.</documentation>
</parameter>
<parameter member="regular_resolution"
to="float"
default="0.1"
from="float"
name="grib_interpolation_regular_resolution">
<documentation>Space View : Resolution of the regular Matrix</documentation>
</parameter>
<parameter member="interpolation_method"
to="string"
default="interpolate"
from="string"
name="grib_interpolation_method"
values='interpolate/nearest/nearest_valid'>
<release>Magics++2.10</release>
<documentation>Used for reduced gaussian grid: use an linear interpolation to convert from reduced to regular</documentation>
</parameter>
<parameter member="missing_fill_count"
to="int"
default="1"
from="int"
name="grib_interpolation_method_missing_fill_count">
<documentation>Number of missing values to fill with the nearest valid value</documentation>
</parameter>
<parameter member="wind_mode"
to="WindMode"
default="uv"
from="string"
name="grib_wind_mode">
<documentation>The incoming wind field may contain data other than wind components, e.g. wave height and direction.
grib_wind_mode should be set to indicate how to interpret the incoming wind field,
as u/v components, or speed/direction (uv/vd).</documentation>
<option xml="uvmode" fortran="uv" include="WindMode.h" name="UVWindMode"></option>
<option xml="sdmode" fortran="sd" include="WindMode.h" name="SDWindMode"></option>
</parameter>
</class>
</magics>