WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
MdrRegion.h
1#ifndef _WINC_MDRREGION
2#define _WINC_MDRREGION
3
4namespace WXP {
5 struct MdrRegion {
6 char config[10]; /* Configuration of echoes */
7 struct {
8 int cover; /* Area coverage */
9 char type[8]; /* Type of precipitation */
10 int intens; /* Intensity of precipitation */
11 } prec[3];
12 int num_prec;
13 char trend[5]; /* Trend of precip coverage */
14 struct { /* Location of precipitation */
15 int dir,rad; /* Direction and radius of precip area */
16 } loc[5];
17 int num_loc;
18 struct { /* Movement of precipitation */
19 char type; /* Type of movement: Area,Cell,Line */
20 int dir,spd; /* Direction and speed */
21 } move[3];
22 int num_move;
23
24 struct { /* Cloud tops */
25 int hgt; /* Height */
26 int dir,rad; /* Location */
27 } tops;
28 char rem[20]; /* Remarks */
29
30 MdrRegion();
31 int init();
32 int print();
33 };
34};
35#endif
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct stores MDR data for a particular precipitation region.
Definition: MdrRegion.h:5
MdrRegion()
Definition: MdrRegion.cc:18
int init()
Definition: MdrRegion.cc:25
int print()
Definition: MdrRegion.cc:58