WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
Lev2Info.h
1#ifndef _WINC_LEV2INFO
2#define _WINC_LEV2INFO
3
4#include <WXP/Date.h>
5
6namespace WXP {
7 class Lev2Info {
8 char id[10];
9 float lat;
10 float lon;
11 Date date;
13 public:
15 inline const char *getId(){ return id; };
17 inline float getLat(){ return lat; };
19 inline float getLon(){ return lon; };
21 inline Date getDate(){ return date; };
22 int print();
23
24 friend class Lev2File;
25 };
26}
27#endif
This class stores date and time information.
Definition: Date.h:8
This class reads and decodes NIDS data from file.
Definition: Lev2File.h:12
This structure stores LevelII radar header information.
Definition: Lev2Info.h:7
float getLat()
Definition: Lev2Info.h:17
int print()
Definition: Lev2Info.cc:16
float getLon()
Definition: Lev2Info.h:19
Date getDate()
Definition: Lev2Info.h:21
const char * getId()
Definition: Lev2Info.h:15
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4