WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
ProfData.h
1#ifndef _WINC_PROFDATA
2#define _WINC_PROFDATA
3
4#include <WXP/EarthPoint.h>
5
6namespace WXP {
7 class ProfData {
8 char id[10];
9 int wmo;
10 EarthPoint loc;
11 float elev;
12 float pres,temp,dewp,dir,spd,rain;
13 struct {
14 float h;
15 float u,v,w;
16 float hdev,vdev;
17 int q;
18 } lev[100];
19 int num_levels;
20
21 public:
22 ProfData();
23 int init();
24 int print();
25
26 friend class ProfFile;
27 };
28}
29#endif
This struct stores profiler data.
Definition: ProfData.h:7
int init()
Definition: ProfData.cc:22
This class reads and decodes profiler.
Definition: ProfFile.h:15
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct defines earth point values (lat, lon, elev)
Definition: EarthPoint.h:5