NetBurner 3.5.6
PDF Version
tide.h
1class TideCalc {
2 public:
3 TideCalc();
4 float currentTide(time_t now); // returns predicted tide for
5 // the supplied date and time. The time should always be given in
6 // the local standard time for the site, not daylight savings time
7 // output units = feet
8 char* returnStationID(void); // NOAA station name
9 long returnStationIDnumber(void); // NOAA station ID number
10};
11
12