forked from risacher/sunwait
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprint.h
executable file
·27 lines (20 loc) · 907 Bytes
/
print.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// sunwait - print.h
//
// 08-12-2014 IFC 0.6 No changes from 0.5
// 02-05-2015 IFC 0.7 No changes from 0.5, still
// 2015-05-27 IFC 0.8 Resolve 'dodgy day' and cleanup
//
#ifndef PRINT_H
#define PRINT_H
#include "sunwait.h"
#include "sunriset.h"
void generate_report (const runStruct *pRun);
void print_list (const runStruct *pRun);
double diurnalArcWithOffsetX (const double pDiurnalArc, const double pOffset);
double diurnalArcWithOffset (const runStruct *pRun, const targetStruct *pTarget);
double getOffsetRiseHourUTCX (const double pSouthHourUTC, const double pDiurnalArc, const double pOffsetHour);
double getOffsetRiseHourUTC (const runStruct *pRun, const targetStruct *pTarget);
double getOffsetSetHourUTCX (const double pSouthHourUTC, const double pDiurnalArc, const double pOffsetHour);
double getOffsetSetHourUTC (const runStruct *pRun, const targetStruct *pTarget);
#endif