5#include <WXP/EarthPoint.h> 
    6#include <WXP/EarthPoints.h> 
   18      inline int getDate( 
Date &rdate ){ rdate = date; 
return 1; };
 
   19      inline int getSeconds(){ 
return date.
getSeconds(); };
 
   20      inline int setType( 
int rtype ){ type = rtype; 
return 1; };
 
   21      inline int getType(){ 
return type; };
 
   22      inline int setFore( 
int rfore ){ fore = rfore; 
return 1; };
 
   23      inline int getFore(){ 
return fore; };
 
   24      inline int setPres( 
float rpres ){ pres = rpres; 
return 1; };
 
   25      inline float getPres(){ 
return pres; };
 
   26      int addPoint( 
float lat, 
float lon );
 
   28      float getLat( 
int ind );
 
   29      float getLon( 
int ind );
 
   30      inline int getNum(){ 
return epts.
getNum(); };
 
This class stores date and time information.
Definition Date.h:8
 
int getSeconds()
Definition Date.cc:363
 
This class creates an array a earth points (lat, lon)
Definition EarthPoints.h:9
 
int getNum()
Definition EarthPoints.h:52
 
This structure stores front information.
Definition FrontData.h:9
 
This class read in front data (ASUS01)
Definition FrontFile.h:11
 
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