forked from rodegerdts/Pyalmanac
-
Notifications
You must be signed in to change notification settings - Fork 1
/
suntables.py
executable file
·479 lines (434 loc) · 16.6 KB
/
suntables.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright (C) 2014 Enno Rodegerdts
# Copyright (C) 2019 Andrew Bauer
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# NOTE: the new format statement requires a literal '{' to be entered as '{{',
# and a literal '}' to be entered as '}}'. The old '%' format specifier
# will be removed from Python at some later time. See:
# https://docs.python.org/3/whatsnew/3.0.html#pep-3101-a-new-approach-to-string-formatting
import config
from alma_ephem import *
def suntab(date):
# generates LaTeX table for sun only (traditional)
tab = r'''\noindent
\begin{tabular*}{0.2\textwidth}[t]{@{\extracolsep{\fill}}|c|rr|}
'''
n = 0
while n < 3:
da = date + n
tab = tab + r'''\hline
\multicolumn{{1}}{{|c|}}{{\rule{{0pt}}{{2.6ex}}\textbf{{{}}}}} & \multicolumn{{1}}{{c}}{{\textbf{{GHA}}}} & \multicolumn{{1}}{{c|}}{{\textbf{{Dec}}}}\\
\hline\rule{{0pt}}{{2.6ex}}\noindent
'''.format(ephem.date(da).datetime().strftime("%d"))
h = 0
if config.decf != '+': # USNO format for Declination
# first populate an array of 24 hours with all data
hourlydata = [[] for i in range(24)]
while h < 24:
hourlydata[h] = sunmoon(da)
da = da + ephem.hour
h += 1
# now print the data per hour
da = date + n
h = 0
while h < 24:
eph = hourlydata[h]
if h > 0:
preveph = hourlydata[h-1]
else:
preveph = hourlydata[0] # hour -1 = hour 0
if h < 23:
nexteph = hourlydata[h+1]
else:
nexteph = hourlydata[23] # hour 24 = hour 23
# format declination checking for hemisphere change
printNS, printDEG = declCompare(preveph[7],eph[7],nexteph[7],h)
sdec = NSdecl(eph[1],h,printNS,printDEG,False)
line = "{} & {} & {}".format(h,eph[0],sdec)
lineterminator = r'''\\
'''
if h < 23 and (h+1)%6 == 0:
lineterminator = r'''\\[2Pt]
'''
tab = tab + line + lineterminator
h += 1
da = da + ephem.hour
else: # Positive/Negative Declinations
while h < 24:
eph = sunmoon(da)
line = "{} & {} & {}".format(h,eph[0],eph[1])
lineterminator = r'''\\
'''
if h < 23 and (h+1)%6 == 0:
lineterminator = r'''\\[2Pt]
'''
tab = tab + line + lineterminator
h += 1
da = da + ephem.hour
vd = sun_moon_SD(date + n)
tab = tab + r'''\hline
\rule{{0pt}}{{2.4ex}} & \multicolumn{{1}}{{c}}{{SD.={}}} & \multicolumn{{1}}{{c|}}{{d={}}}\\
\hline
'''.format(vd[1],vd[0])
if n < 2:
# add space between tables...
tab = tab + r'''\multicolumn{1}{c}{}\\[-0.5ex]'''
n += 1
tab = tab + r'''\end{tabular*}'''
return tab
def suntabm(date):
# generates LaTeX table for sun only (modern)
if config.decf != '+': # USNO format for Declination
colsep = "4pt"
else:
colsep = "3.8pt"
tab = r'''\noindent
\renewcommand{{\arraystretch}}{{1.1}}
\setlength{{\tabcolsep}}{{{}}}
\begin{{tabular}}[t]{{crr}}'''.format(colsep)
n = 0
while n < 3:
da = date + n
tab = tab + r'''
\multicolumn{{1}}{{c}}{{\footnotesize{{\textbf{{{}}}}}}} & \multicolumn{{1}}{{c}}{{\footnotesize{{\textbf{{GHA}}}}}} & \multicolumn{{1}}{{c}}{{\footnotesize{{\textbf{{Dec}}}}}}\\
\cmidrule{{1-3}}
'''.format(ephem.date(da).datetime().strftime("%d"))
h = 0
if config.decf != '+': # USNO format for Declination
# first populate an array of 24 hours with all data
hourlydata = [[] for i in range(24)]
while h < 24:
hourlydata[h] = sunmoon(da)
da = da + ephem.hour
h += 1
# now print the data per hour
da = date + n
h = 0
while h < 24:
band = int(h/6)
group = band % 2
eph = hourlydata[h]
if h > 0:
preveph = hourlydata[h-1]
else:
preveph = hourlydata[0] # hour -1 = hour 0
if h < 23:
nexteph = hourlydata[h+1]
else:
nexteph = hourlydata[23] # hour 24 = hour 23
# format declination checking for hemisphere change
printNS, printDEG = declCompare(preveph[7],eph[7],nexteph[7],h)
sdec = NSdecl(eph[1],h,printNS,printDEG,True)
line = r'''\color{{blue}}{{{}}} & '''.format(h)
line = line + "{} & {}".format(eph[0],sdec)
if group == 1:
tab = tab + r'''\rowcolor{LightCyan}'''
lineterminator = r'''\\
'''
if config.pgsz == "A4" and h < 23 and (h+1)%6 == 0:
lineterminator = r'''\\[2Pt]
'''
tab = tab + line + lineterminator
h += 1
da = da + ephem.hour
else: # Positive/Negative Declinations
while h < 24:
band = int(h/6)
group = band % 2
eph = sunmoon(da)
line = r'''\color{{blue}}{{{}}} & '''.format(h)
line = line + "{} & {}".format(eph[0],eph[1])
if group == 1:
tab = tab + r'''\rowcolor{LightCyan}'''
lineterminator = r'''\\
'''
if config.pgsz == "A4" and h < 23 and (h+1)%6 == 0:
lineterminator = r'''\\[2Pt]
'''
tab = tab + line + lineterminator
h += 1
da = da + ephem.hour
vd = sun_moon_SD(date + n)
tab = tab + r'''\cmidrule{{2-3}}
& \multicolumn{{1}}{{c}}{{\footnotesize{{SD.={}}}}} & \multicolumn{{1}}{{c}}{{\footnotesize{{d={}}}}}\\
\cmidrule{{2-3}}'''.format(vd[1],vd[0])
if n < 2:
# add space between tables...
tab = tab + r'''
\multicolumn{3}{c}{}\\[-1.5ex]'''
n += 1
tab = tab + r'''
\end{tabular}'''
return tab
def declCompare(prev_rad, curr_rad, next_rad, hr):
# for Declinations only...
# decide if to print N/S; decide if to print degrees
# note: the first three arguments are PyEphem angles in radians
prNS = False
prDEG = False
psign = math.copysign(1.0,prev_rad)
csign = math.copysign(1.0,curr_rad)
nsign = math.copysign(1.0,next_rad)
pdeg = abs(math.degrees(prev_rad))
cdeg = abs(math.degrees(curr_rad))
ndeg = abs(math.degrees(next_rad))
pdegi = int(pdeg)
cdegi = int(cdeg)
ndegi = int(ndeg)
pmin = round((pdeg-pdegi)*60, 1) # minutes (float), rounded to 1 decimal place
cmin = round((cdeg-cdegi)*60, 1) # minutes (float), rounded to 1 decimal place
nmin = round((ndeg-ndegi)*60, 1) # minutes (float), rounded to 1 decimal place
pmini = int(pmin)
cmini = int(cmin)
nmini = int(nmin)
if pmini == 60:
pmin -= 60
pdegi += 1
if cmini == 60:
cmin -= 60
cdegi += 1
if nmini == 60:
nmin -= 60
ndegi += 1
# now we have the values in degrees+minutes as printed
if hr%6 == 0:
prNS = True # print N/S for hour = 0, 6, 12, 18
else:
if psign != csign:
prNS = True # print N/S if previous sign different
if hr < 23:
if csign != nsign:
prNS = True # print N/S if next sign different
if prNS == False:
if pdegi != cdegi:
prDEG = True # print degrees if changed since previous value
if cdegi != ndegi:
prDEG = True # print degrees if next value is changed
else:
prDEG= True # print degrees is N/S to be printed
return prNS, prDEG
def NSdecl(deg, hr, printNS, printDEG, modernFMT):
# reformat degrees latitude to Ndd°mm.m or Sdd°mm.m
if deg[0:1] == '-':
hemisph = 'S'
deg = deg[1:]
else:
hemisph = 'N'
if not(printDEG):
deg = deg[10:] # skip the degrees (always dd°mm.m) - note: the degree symbol '$^\circ$' is eight bytes long
if (hr+3)%6 == 0:
deg = r'''\raisebox{0.24ex}{\boldmath$\cdot$~\boldmath$\cdot$~~}''' + deg
if modernFMT:
if printNS or hr%6 == 0:
sdeg = r'''\textcolor{{blue}}{{{}}}'''.format(hemisph) + deg
else:
sdeg = deg
else:
if printNS or hr%6 == 0:
sdeg = r'''\textbf{{{}}}'''.format(hemisph) + deg
else:
sdeg = deg
#print("sdeg: ", sdeg)
return sdeg
def page(date):
# creates a page(15 days) of the Sun almanac
page = r'''
% ------------------ N E W P A G E ------------------
\newpage
\sffamily
\noindent
\begin{{flushright}}
\textbf{{{} to {}}}\par
\end{{flushright}}
\begin{{scriptsize}}
'''.format(ephem.date(date).datetime().strftime("%Y %B %d"),ephem.date(date+14).datetime().strftime("%b. %d"))
if config.tbls == "m":
page = page + suntabm(date)
page = page + r'''\quad
'''
page = page + suntabm(date+3)
page = page + r'''\quad
'''
page = page + suntabm(date+6)
page = page + r'''\quad
'''
page = page + suntabm(date+9)
page = page + r'''\quad
'''
page = page + suntabm(date+12)
else:
page = page + suntab(date)
page = page + suntab(date+3)
page = page + suntab(date+6)
page = page + suntab(date+9)
page = page + suntab(date+12)
# to avoid "Overfull \hbox" messages, always leave a paragraph end before the end of a size change. (See line below)
page = page + r'''
\end{scriptsize}'''
return page
def pages(date, p):
# make 'p' pages beginning with date
out = ''
for i in range(p):
out = out + page(date)
date += 15
return out
def almanac(first_day, pagenum):
# make almanac from date till date
year = first_day.year
mth = first_day.month
day = first_day.day
# page size specific parameters
if config.pgsz == "A4":
paper = "a4paper"
tm = "21mm"
bm = "18mm"
lm = "13mm"
rm = "13mm"
if config.tbls == "m" and config.decf != '+': # USNO format for Declination
tm = "8mm"
bm = "13mm"
lm = "11mm"
rm = "10mm"
if config.tbls == "m" and config.decf == '+': # Positive/Negative Declinations
tm = "8mm"
bm = "13mm"
lm = "14mm"
rm = "14mm"
else:
paper = "letterpaper"
tm = "12.2mm"
bm = "13mm"
lm = "16mm"
rm = "16mm"
if config.tbls == "m" and config.decf != '+': # USNO format for Declination
tm = "5mm"
bm = "8mm"
lm = "14mm"
rm = "13mm"
if config.tbls == "m" and config.decf == '+': # Positive/Negative Declinations
tm = "5mm"
bm = "8mm"
lm = "17mm"
rm = "17mm"
# default is 'oneside'...
alm = r'''\documentclass[10pt, {}]{{report}}'''.format(paper)
alm = alm + r'''
%\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{fontenc}'''
if config.tbls == "m":
alm = alm + r'''
\usepackage[table]{xcolor}
\definecolor{LightCyan}{rgb}{0.88,1,1}
\usepackage{booktabs}'''
# to troubleshoot add "showframe, verbose," below:
alm = alm + r'''
\usepackage[nomarginpar, top={}, bottom={}, left={}, right={}]{{geometry}}'''.format(tm,bm,lm,rm)
# Note: \DeclareUnicodeCharacter is not compatible with some versions of pdflatex
alm = alm + r'''
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\setlength{\footskip}{15pt}
\usepackage[pdftex]{graphicx}
%\showboxbreadth=50 % use for logging
%\showboxdepth=50 % use for logging
%\DeclareUnicodeCharacter{00B0}{\ensuremath{{}^\circ}}
\begin{document}
% for the title page and page 2 only...
\newgeometry{nomarginpar, top=5mm, bottom=13mm, left=20mm, right=14mm}
\begin{titlepage}'''
alm = alm + r'''
\vspace*{2cm}
\begin{center}
\textsc{\Large Generated by PyAlmanac}\\[1.5cm]
\includegraphics[width=0.4\textwidth]{./Ra}\\[1cm]
\textsc{\huge The Nautical Almanac for the Sun}\\[0.7cm]'''
if pagenum == 25:
alm = alm + r'''
\HRule \\[0.6cm]
{{ \Huge \bfseries {}}}\\[0.4cm]
\HRule \\[1.5cm]'''.format(year)
else:
alm = alm + r'''
\HRule \\[0.6cm]
{{ \Huge \bfseries from {}.{}.{}}}\\[0.4cm]
\HRule \\[1.5cm]'''.format(day,mth,year)
if config.tbls == "m":
alm = alm + r'''
\begin{center} \large
\emph{Author:}\\
Andrew \textsc{Bauer}\\[6Pt]
\emph{Original concept from:}\\
Enno \textsc{Rodegerdts}
\end{center}'''
else:
alm = alm + r'''
\begin{center} \large
\emph{Original author:}\\
Enno \textsc{Rodegerdts}\\[6Pt]
\emph{Enhancements:}\\
Andrew \textsc{Bauer}
\end{center}'''
alm = alm + r'''
\vfill
{\large \today}
\HRule \\[0.6cm]
\end{center}
\begin{description}\footnotesize
\item[Disclaimer:] These are computer generated tables. Use on your own risk.
The accuracy has been checked as good as possible but can not be guaranteed.
This means, if you get lost on the oceans because of errors in this publication I can not be held liable.
For security relevant applications you should buy an official version of the nautical almanac.
\end{description}
\end{titlepage}
'''
alm = alm + r'''
\setcounter{page}{2} % otherwise it's 1
\vspace*{2cm}
\noindent
DIP corrects for height of eye over the surface. This value has to be subtracted from the sextant altitude ($H_s$). The correction in degrees for height of eye in meters is given by the following formula:
\[d=0.0293\sqrt{m}\]
This is the first correction (apart from index error) that has to be applied to the measured altitude.\\[12pt]
\noindent
The next correction is for refraction in the earth's atmosphere. As usual this table is correct for 10$^\circ$C and a pressure of 1010 hPa. This correction has to be applied to apparent altitude ($H_a$). The exact values can be calculated by the following formula.
\[R_0=\cot \left( H_a + \frac{7.31}{H_a+4.4}\right)\]
For other than standard conditions, calculate a correction factor for $R_0$ by: \[f=\frac{0.28P}{T+273}\] where $P$ is the pressure in hectopascal and $T$ is the temperature in $^\circ$C.\\[12pt]
\noindent
Semidiameter has to be added for lower limb sights and subtracted for upper limb sights. The value for semidiameter is tabulated in the daily pages.\\[12pt]
\noindent
To correct your sextant altitude $H_s$ do the following:
Calculate $H_a$ by
\[H_a= H_s+I-d\]
where $I$ is the sextant's index error and $d$ is DIP. Then calculate the observed altitude $H_o$ by
\[H_o= H_a-R+P\pm SD\]
where $R$ is refraction, $P$ is parallax and $SD$ is the semidiameter.\\[12pt]
\noindent
Sight reduction tables can be downloaded for the US government's internet pages. Search for HO-229 or HO-249. These values can also be calculated with two, relatively simple, formulas:
\[ \sin H_c= \sin L \sin d + \cos L \cos d \cos LHA\]
and
\[\cos A = \frac{\sin d - \sin L \sin H_c}{\cos L \cos H_c}\]
where $A$ is the azimuth angle, $L$ is the latitude, $d$ is the declination and $LHA$ is the local hour angle. The azimuth ($Z_n$) is given by the following rule:
\begin{itemize}
\item if the $LHA$ is greater than $180^\circ$,\quad$Z_n=A$
\item if the $LHA$ is less than $180^\circ$,\quad$Z_n = 360^\circ - A$
\end{itemize}
\restoregeometry % so it does not affect the rest of the pages'''
first_day = r'''{}/{}/{}'''.format(year,mth,day)
date = ephem.Date(first_day) # date to float
alm = alm + pages(date,pagenum)
alm = alm + '''
\end{document}'''
return alm