forked from CruiserOne/Astrolog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastrolog.htm
13076 lines (10709 loc) · 720 KB
/
astrolog.htm
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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<title>Astrolog 7.20 Documentation</title>
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Helvetica;
panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
{font-family:Courier;
panose-1:2 7 4 9 2 2 5 2 4 4;}
@font-face
{font-family:"Tms Rmn";
panose-1:2 2 6 3 4 5 5 2 3 4;}
@font-face
{font-family:Helv;
panose-1:2 11 6 4 2 2 2 3 2 4;}
@font-face
{font-family:"New York";
panose-1:2 4 5 3 6 5 6 2 3 4;}
@font-face
{font-family:System;
panose-1:0 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:"MS Mincho";
panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
{font-family:Batang;
panose-1:2 3 6 0 0 1 1 1 1 1;}
@font-face
{font-family:SimSun;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:PMingLiU;
panose-1:2 1 6 1 0 1 1 1 1 1;}
@font-face
{font-family:"MS Gothic";
panose-1:2 11 6 9 7 2 5 8 2 4;}
@font-face
{font-family:Dotum;
panose-1:2 11 6 0 0 1 1 1 1 1;}
@font-face
{font-family:SimHei;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:MingLiU;
panose-1:2 1 6 9 0 1 1 1 1 1;}
@font-face
{font-family:Mincho;
panose-1:2 2 6 9 4 3 5 8 3 5;}
@font-face
{font-family:Gulim;
panose-1:2 11 6 0 0 1 1 1 1 1;}
@font-face
{font-family:Century;
panose-1:2 4 6 4 5 5 5 2 3 4;}
@font-face
{font-family:"Angsana New";
panose-1:2 2 6 3 5 4 5 2 3 4;}
@font-face
{font-family:"Cordia New";
panose-1:2 11 3 4 2 2 2 2 2 4;}
@font-face
{font-family:Mangal;
panose-1:0 0 4 0 0 0 0 0 0 0;}
@font-face
{font-family:Latha;
panose-1:2 0 4 0 0 0 0 0 0 0;}
@font-face
{font-family:Sylfaen;
panose-1:1 10 5 2 5 3 6 3 3 3;}
@font-face
{font-family:Vrinda;
panose-1:0 0 4 0 0 0 0 0 0 0;}
@font-face
{font-family:Raavi;
panose-1:2 0 5 0 0 0 0 0 0 0;}
@font-face
{font-family:Shruti;
panose-1:2 0 5 0 0 0 0 0 0 0;}
@font-face
{font-family:Sendnya;
panose-1:0 0 4 0 0 0 0 0 0 0;}
@font-face
{font-family:Gautami;
panose-1:2 0 5 0 0 0 0 0 0 0;}
@font-face
{font-family:Tunga;
panose-1:0 0 4 0 0 0 0 0 0 0;}
@font-face
{font-family:"Estrangelo Edessa";
panose-1:0 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:"Arial Unicode MS";
panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
{font-family:Cambria;
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0in;
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
h1
{margin-top:12.0pt;
margin-right:0in;
margin-bottom:3.0pt;
margin-left:0in;
page-break-after:avoid;
font-size:16.0pt;
font-family:"Arial","sans-serif";}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{color:purple;
text-decoration:underline;}
p.A, li.A, div.A
{mso-style-name:A;
mso-style-link:"A Char Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
span.ACharChar
{mso-style-name:"A Char Char";
mso-style-link:A;}
p.FA, li.FA, div.FA
{mso-style-name:FA;
margin:0in;
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Courier New";}
p.Section, li.Section, div.Section
{mso-style-name:Section;
margin-top:12.0pt;
margin-right:0in;
margin-bottom:3.0pt;
margin-left:0in;
text-align:center;
page-break-after:avoid;
border:none;
padding:0in;
font-size:16.0pt;
font-family:"Arial","sans-serif";
font-weight:bold;}
span.V
{mso-style-name:V;
color:blue;
font-weight:bold;}
p.B, li.B, div.B
{mso-style-name:B;
mso-style-link:"B Char Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:.5in;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
span.BCharChar
{mso-style-name:"B Char Char";
mso-style-link:B;}
p.N, li.N, div.N
{mso-style-name:N;
mso-style-link:"N Char";
margin:0in;
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
span.M
{mso-style-name:M;
color:green;
font-weight:bold;}
p.I, li.I, div.I
{mso-style-name:I;
mso-style-link:"I Char";
margin:0in;
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Times New Roman","serif";
font-style:italic;}
span.K
{mso-style-name:K;
color:blue;
font-weight:bold;}
p.Section2, li.Section2, div.Section2
{mso-style-name:Section2;
margin-top:20.0pt;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
font-size:14.0pt;
font-family:"Times New Roman","serif";
color:olive;
font-weight:bold;}
span.NChar
{mso-style-name:"N Char";
mso-style-link:N;}
span.S
{mso-style-name:S;
color:red;
font-weight:bold;}
span.IChar
{mso-style-name:"I Char";
mso-style-link:I;
font-style:italic;}
p.FB, li.FB, div.FB
{mso-style-name:FB;
margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:.5in;
margin-bottom:.0001pt;
font-size:12.0pt;
font-family:"Courier New";}
span.W
{mso-style-name:W;
color:green;
font-weight:bold;}
p.C, li.C, div.C
{mso-style-name:C;
mso-style-link:"C Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:1.0in;
font-size:12.0pt;
font-family:"Times New Roman","serif";}
span.CChar
{mso-style-name:"C Char";
mso-style-link:C;}
span.X
{mso-style-name:X;
color:olive;
font-weight:bold;}
span.Y
{mso-style-name:Y;
color:red;
font-weight:bold;}
span.msoIns
{mso-style-name:"";
text-decoration:underline;
color:teal;}
span.msoDel
{mso-style-name:"";
text-decoration:line-through;
color:red;}
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in 1.25in 1.0in 1.25in;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
ol
{margin-bottom:0in;}
ul
{margin-bottom:0in;}
-->
</style>
</head>
<body lang=EN-US link=blue vlink=purple>
<div class=WordSection1>
<p class=FA> <span style='background:silver'>AAAAA</span> <span
style='background:silver'>SSSSS</span> <span style='background:silver'>TTTTTTT</span>
<span style='background:silver'>RRRRRR</span> <span style='background:silver'>OOOOO</span>
<span style='background:silver'>L</span> <span style='background:silver'>OOOOO</span>
<span style='background:silver'>GGGGG</span></p>
<p class=FA><span style='background:silver'>A</span> <span
style='background:silver'>A</span> <span style='background:silver'>S</span>
<span style='background:silver'>S</span> <span style='background:silver'>T</span>
<span style='background:silver'>R</span> <span style='background:silver'>R</span>
<span style='background:silver'>O</span> <span style='background:silver'>O</span>
<span style='background:silver'>L</span> <span style='background:silver'>O</span>
<span style='background:silver'>O</span> <span style='background:silver'>G</span>
<span style='background:silver'>G</span></p>
<p class=FA><span style='background:silver'>A</span> <span
style='background:silver'>A</span> <span style='background:silver'>S</span>
<span style='background:silver'>T</span> <span style='background:silver'>R</span>
<span style='background:silver'>R</span> <span style='background:silver'>O</span>
<span style='background:silver'>O</span> <span style='background:silver'>L</span>
<span style='background:silver'>O</span> <span style='background:silver'>O</span>
<span style='background:silver'>G</span></p>
<p class=FA><span style='background:silver'>AAAAAAA</span> <span
style='background:silver'>SSSSS</span> <span style='background:silver'>T</span>
<span style='background:silver'>RRRRRR</span> <span style='background:silver'>O</span>
<span style='background:silver'>O</span> <span style='background:silver'>L</span>
<span style='background:silver'>O</span> <span style='background:silver'>O</span>
<span style='background:silver'>G</span> <span style='background:silver'>GGGG</span></p>
<p class=FA><span style='background:silver'>A</span> <span
style='background:silver'>A</span> <span style='background:silver'>S</span>
<span style='background:silver'>T</span> <span style='background:silver'>R</span>
<span style='background:silver'>R</span> <span style='background:silver'>O</span>
<span style='background:silver'>O</span> <span style='background:silver'>L</span>
<span style='background:silver'>O</span> <span style='background:silver'>O</span>
<span style='background:silver'>G</span> <span style='background:silver'>G</span></p>
<p class=FA><span style='background:silver'>A</span> <span
style='background:silver'>A</span> <span style='background:silver'>S</span>
<span style='background:silver'>S</span> <span style='background:silver'>T</span>
<span style='background:silver'>R</span> <span style='background:silver'>R</span>
<span style='background:silver'>O</span> <span style='background:silver'>O</span>
<span style='background:silver'>L</span> <span style='background:silver'>O</span>
<span style='background:silver'>O</span> <span style='background:silver'>G</span>
<span style='background:silver'>G</span></p>
<p class=FA><span style='background:silver'>A</span> <span
style='background:silver'>A</span> <span style='background:silver'>SSSSS</span>
<span style='background:silver'>T</span> <span style='background:silver'>R</span>
<span style='background:silver'>R</span> <span style='background:silver'>OOOOO</span>
<span style='background:silver'>LLLLLLL</span> <span style='background:silver'>OOOOO</span>
<span style='background:silver'>GGGGG</span></p>
<p class=FA> </p>
<p class=FA> ** VERSION 7.20 **</p>
<p class=FA> </p>
<p class=A>Documentation for Astrolog version 7.20 (April 2021):</p>
<p class=A>This file contains a complete list of all the features available in
Astrolog, and documentation on how to use each option. The file is divided into
nine sections:</p>
<p class=A>1) <b><a href="#summary">Summary</a>:</b> A summary of the program
and a list of its main features.</p>
<p class=A>2) <b><a href="#switch">Command Switch List</a>:</b> A summary of
all features which are accessed via command line switches and parameters is
listed, along with the single key press commands that can be given to a
windowed command line version of the program (such as the X Windows version) to
change the display in various ways.</p>
<p class=A>3) <b><a href="#command">Command Switch Description</a>:</b> The
list of command switches and keys is repeated, but after each option is given a
full description of the details of the feature.</p>
<p class=A>4) <b><a href="#main">Text Display</a>:</b> Descriptions of things
that appear in Astrolog text displays are described. This consists of
describing how to enter chart information into the program, and how to
interpret what is seen in the standard main display.</p>
<p class=A>5) <b><a href="#file">Files</a>:</b> Details of default settings, for
compile time options and in the default configuration file, are described,
along with using Astrolog files in general.</p>
<p class=A>6) <b><a href="#graphics">Graphics</a>:</b> Next is a description of
the different graphic chart displays and how they are organized, for versions
such as MS Windows and X Windows. (Looking for a quick display to prove
Astrolog was worth downloading or compiling? With graphics try: astrolog -Xi -Xn
-XG!)</p>
<p class=A>7) <b><a href="#windows">Windows Version</a>:</b> Then is discussed
Astrolog for MS Windows, and a description of the menu and dialog interface it
offers.</p>
<p class=A>8) <b><a href="#express">AstroExpressions</a>:</b> This section
describes AstroExpressions, which are programmable customizations that dont
require recompiling the program.</p>
<p class=A>9) <b><a href="#compile">Compiling</a>:</b> Finally is a section on
compiling Astrolog if you have the source code files, as opposed to an
executable ready to run, as well as how to compile and run Astrolog on the
Macintosh.</p>
<p class=A> </p>
<div style='border:none;border-top:solid windowtext 4.5pt;padding:1.0pt 0in 0in 0in'>
<p class=Section><a name=summary>ASTROLOG SUMMARY</a></p>
</div>
<p class=A>Astrolog 7.20 is a many featured and customizable astrology chart
calculation program for Windows, Unix, Macintosh, and other platforms. It is
100% freeware and requires no registration fee. :) The complete source code is
available. Astrolog features: wheels, aspects, midpoints, relationship charts,
transits, progressions, eclipses, interpretations, astrocartography, local horizon,
constellations, planet orbits, dispositors, influence charts, Esoteric Astrology,
biorhythms, different zodiacs, central planets, 22 house systems, 3D houses, city
and time change atlas, 30000 year ephemeris, asteroids, Dwarf planets, Uranians,
fixed stars, Arabic parts, planetary moons, script files and macros,
interactive graphics, smooth animation of charts, graphic files in PostScript,
Windows metafile, and bitmap formats, and more!</p>
<p class=A>Astrolog is relatively unique in astrology software for the following
reasons:</p>
<p class=B>(1) Its 100% freeware. :)<br>
(2) It runs on multiple platforms, such as Windows, Mac, and Unix.<br>
(3) The full source code is available.<br>
(4) Features are accessible from the command line and from shell scripts.<br>
(5) It offers many features not found in most other programs.</p>
<p class=A><span class=IChar>The Best Freeware/Shareware Program of 1995 is
Astrolog for Windows<br>
</span>- American Astrology, March 1996</p>
<p class=A><span class=IChar>One exceptionally good freeware program is
available to astrologers - good enough to be worthy of review with the main
commercial programs. This is Astrolog...<br>
</span>- The Mountain Astrologer, November 1995</p>
<p class=A><span class=IChar>For a free program to have such a superb
ephemeris with an 8000-year range is incredible.<br>
</span>- American Astrology, November 1994</p>
<p class=A>--</p>
<p class=N>A list of the main features in Astrolog:</p>
<p class=Section2>Position calculation features:</p>
<p class=N>Positions of Sun through Pluto and the house cusps.</p>
<p class=N>Positions of Chiron and the four main asteroids.</p>
<p class=N>Positions of True and Mean nodes, Part of Fortune, Vertex, and East Point.</p>
<p class=N>Position of Lilith (the Dark Moon or focus of the Moons
elliptical orbit).</p>
<p class=N>Position of Vulcan</p>
<p class=N>Positions of the eight Uranian planets.</p>
<p class=N>Positions of major Dwarf planets and candidate Dwarf planets.</p>
<p class=N>Positions of 27 planetary moons and 5 planet center of bodies.</p>
<p class=N>Positions of 47 fixed stars (full support equivalent to planets).</p>
<p class=N>Positions of 1100 fixed stars (displayed all together).</p>
<p class=N>Positions of 177 Arabic parts and their formulas.</p>
<p class=N>Option to display any number of additional asteroids and minor
bodies.</p>
<p class=N>Option to use any or all of the accurate 30000 year Swiss Ephemeris.</p>
<p class=Section2>Computation features:</p>
<p class=N>22 house systems.</p>
<p class=N>Tropical and sidereal zodiacs.</p>
<p class=N>Specify zodiac starting position / ayanamsa.</p>
<p class=N>Heliocentric and other planet centered charts.</p>
<p class=N>Option to display barycenters or center of body for Sun and planets.</p>
<p class=N>Applying and separating aspects.</p>
<p class=N>Parallel and contraparallel aspects.</p>
<p class=N>Harmonic charts.</p>
<p class=N>Solar charts with objects on Ascendant or Midheaven.</p>
<p class=N>Decan positions.</p>
<p class=N>Dwad and nested dwad positions.</p>
<p class=N>Navamsa positions.</p>
<p class=N>Esoteric Astrology and Rays.</p>
<p class=N>3D house systems that take planetary latitude into account.</p>
<p class=N>3D aspects that take planetary latitude into account.</p>
<p class=N>3D midpoints that take planetary latitude into account.</p>
<p class=N>Positions relative to ecliptic or equator.</p>
<p class=N>Local horizon positions in prime vertical coordinates.</p>
<p class=N>Barycentric charts.</p>
<p class=N>Specify your own positions for planets.</p>
<p class=Section2>Display formats:</p>
<p class=N>Generic position listing.</p>
<p class=N>Wheel charts.</p>
<p class=N>Vedic or Hindu format wheel charts.</p>
<p class=N>Aspect and midpoint grids.</p>
<p class=N>List aspect configurations such as Yods.</p>
<p class=N>List aspects sorted by influence.</p>
<p class=N>List midpoints sorted by position.</p>
<p class=N>Local horizon positions.</p>
<p class=N>Times of planets rising and setting.</p>
<p class=N>Solar system orbit charts.</p>
<p class=N>Gauquelin sector charts.</p>
<p class=N>Astro-graph charts (including for minor house cusps)</p>
<p class=N>List latitude crossings or parans in astro-graph charts.</p>
<p class=N>Generic monthly and yearly calendars.</p>
<p class=N>Ephemeris tables.</p>
<p class=N>Transit graphs.</p>
<p class=N>Chart spheres (3D wheel charts).</p>
<p class=N>Biorhythm charts.</p>
<p class=Section2>Transit and progression features:</p>
<p class=N>Secondary progressions and solar arc progressions.</p>
<p class=N>Specify your own progression rate.</p>
<p class=N>Times of exact aspects among transiting planets.</p>
<p class=N>Times of planets changing sign or direction.</p>
<p class=N>Times of void of course Moon, lunar phases, and season changes.</p>
<p class=N>Times of eclipses and occultations/transits, and their
type/intensity.</p>
<p class=N>Times of exact aspects in a progressed chart.</p>
<p class=N>Times of exact transit events.</p>
<p class=N>Times of transits to house cusps.</p>
<p class=N>Times of solar, lunar, and other returns.</p>
<p class=N>Times of exact transits from progressed planets.</p>
<p class=N>List transits to natal planets within orb in influence order.</p>
<p class=N>List aspects within orb among transiting planets in influence order.</p>
<p class=N>Transits to composite and other no-time charts.</p>
<p class=Section2>Relationship chart features:</p>
<p class=N>Synastry charts.</p>
<p class=N>Composite charts.</p>
<p class=N>Time space midpoint charts.</p>
<p class=N>Weighted relationship charts.</p>
<p class=N>Display elapsed time between charts.</p>
<p class=N>Aspect and midpoint grids between two charts.</p>
<p class=N>Aspect and midpoint lists between two charts.</p>
<p class=N>Automatic transit to natal comparison chart.</p>
<p class=N>Automatic progressed to natal comparison chart.</p>
<p class=Section2>Atlas features:</p>
<p class=N>Look up city names in atlas to get longitude and latitude.</p>
<p class=N>Look up citys time zone and whether Daylight Time was in effect.</p>
<p class=N>Display nearest cities to a set of coordinates.</p>
<p class=N>Display time zone and Daylight Time changes over time.</p>
<p class=N>Autodetect whether Daylight Time is in effect for current moment now.</p>
<p class=N>Graphic atlas to map cities within an area.</p>
<p class=Section2>Interpretation features:</p>
<p class=N>Influence charts sorting planets and signs by power.</p>
<p class=N>Interpret natal positions and natal aspects.</p>
<p class=N>Interpret transits and midpoints.</p>
<p class=N>Interpret transiting aspects and sign and direction changes.</p>
<p class=N>Interpret aspects and midpoints between charts.</p>
<p class=N>Interpret synastry charts.</p>
<p class=N>Interpret latitude crossings in astro-graph charts.</p>
<p class=Section2>Graphics features:</p>
<p class=N>Graphic wheel chart.</p>
<p class=N>Graphic bi-wheel comparison / transit chart.</p>
<p class=N>Graphic tri-wheels and quad-wheels.</p>
<p class=N>Graphic aspect / midpoint and relationship aspect / midpoint grids.</p>
<p class=N>Graphic 2D astro-graph chart on a map of the world.</p>
<p class=N>Graphic 3D astro-graph chart on a globe of the world.</p>
<p class=N>Graphic local horizon, polar horizon, Gauquelin wheel, and orbit
charts.</p>
<p class=N>Graphic ephemeris chart plotting planet positions over time.</p>
<p class=N>Graphic Esoteric Astrology Ray table.</p>
<p class=N>Graphic calendars and biorhythms.</p>
<p class=N>Dispositor graph chart.</p>
<p class=N>Plot positions among the astronomical constellations.</p>
<p class=N>Draw lines between stars to depict constellations.</p>
<p class=N>Graphic telescope chart to zoom in on an area of sky.</p>
<p class=N>Smoothly animate charts through time at varying rates.</p>
<p class=N>Continuously update chart to current moment now.</p>
<p class=N>Animate a rotating globe.</p>
<p class=N>Timed exposures for horizon and orbit charts.</p>
<p class=N>Display custom bitmap backgrounds behind charts.</p>
<p class=N>Create PostScript graphic files.</p>
<p class=N>Create graphic X11 and Windows bitmap files.</p>
<p class=N>Create Windows metafiles.</p>
<p class=N>Create Daedalus 3D wireframe files.</p>
<p class=Section2>Customization options:</p>
<p class=N>Initialization file for default settings.</p>
<p class=N>Choose what transiting and natal planets to include in charts.</p>
<p class=N>Choose among 18 major and minor aspects, or define your own.</p>
<p class=N>Specify aspect orbs.</p>
<p class=N>Specify the maximum orb allowed to a planet.</p>
<p class=N>Specify wider orbs for any planet.</p>
<p class=N>Display zodiac positions to the nearest second.</p>
<p class=N>DMY & MDY date formats and 24 hour & am/pm time formats.</p>
<p class=N>Display locations in hours & minutes or 360 degree form.</p>
<p class=N>Customize interpretation strings.</p>
<p class=N>Customize colors and color palettes.</p>
<p class=N>Redefine planets to various hypothetical planets.</p>
<p class=N>Redefine planets to point to external ephemeris files.</p>
<p class=N>Define your own orbital elements for planets.</p>
<p class=N>Choose among graphic glyphs for certain signs and planets.</p>
<p class=N>Specify influence of planets and planets when transiting.</p>
<p class=N>Specify influence of houses and aspects.</p>
<p class=Section2>Chart access features:</p>
<p class=N>Quick charts for the current moment now.</p>
<p class=N>Save and load chart time and place to file.</p>
<p class=N>Save and load chart positions to file.</p>
<p class=N>Save text output directly to file.</p>
<p class=N>Relocate charts.</p>
<p class=N>Cast a chart a specified time ahead of any chart.</p>
<p class=Section2>System features:</p>
<p class=N>Display text charts in Ansi color.</p>
<p class=N>Export text charts in HTML format.</p>
<p class=N>Support five different fonts for signs, planets, and aspects.</p>
<p class=N>Paging for when text charts fill more than a screen.</p>
<p class=N>Access environment variables.</p>
<p class=N>Define macros for your most common operations.</p>
<p class=N>Easy to use menu and dialog interface in the Windows version.</p>
<p class=N>Right click context menus for each graphics chart in Windows
version.</p>
<p class=N> </p>
<div style='border:none;border-top:solid windowtext 4.5pt;padding:1.0pt 0in 0in 0in'>
<p class=Section><a name=switch>LIST OF COMMAND SWITCHES</a></p>
</div>
<p class=N> </p>
<p class=N>Astrolog (version 7.20) command switches:</p>
<p class=N><span class=S> -H:</span> Display this help list.</p>
<p class=N><span class=S> -Hc:</span> Display program credits and copyrights.</p>
<p class=N><span class=S> -HC:</span> Display names of zodiac signs and houses.</p>
<p class=N><span class=S> -HO:</span> Display available planets and other
celestial objects.</p>
<p class=N><span class=S> -HA:</span> Display available aspects, their angles,
and present orbs.</p>
<p class=N><span class=S> -HF:</span> Display names of astronomical
constellations.</p>
<p class=N><span class=S> -HS:</span> Display information about planets in the
solar system.</p>
<p class=N><span class=S> -H7:</span> Display information about the seven
esoteric Rays.</p>
<p class=N><span class=S> -HI:</span> Display meanings of signs, houses,
planets, and aspects.</p>
<p class=N><span class=S> -He:</span> Display all tables together
(-Hc-H-Y-HX-HC-HO-HA-HF-HS-H7-HI).</p>
<p class=N><span class=S> -Q:</span> Prompt for more command switches after
display finished.</p>
<p class=N><span class=S> -Q0:</span> Like -Q but prompt for additional
switches on startup.</p>
<p class=N><span class=S> -M <1-48>:</span> Run the specified command
switch macro.</p>
<p class=N><span class=S> -M0 <1-48> <string>:</span> Define the
specified command switch macro.</p>
<p class=N><span class=S> -M[1-4][0] <strings>:</span> Define macro(s) to
run when chart calculated.</p>
<p class=N><span class=S> -Y:</span> Display help list of less commonly used
command switches.</p>
<p class=N> </p>
<p class=N>Switches which determine the type of chart to display:</p>
<p class=N><span class=S> -v:</span> Display list of object positions (chosen
by default).</p>
<p class=N><span class=S> -v0:</span> Like -v but express velocities relative
to average speed.</p>
<p class=N><span class=S> -w [<rows>]:</span> Display chart in a graphic
house wheel format.</p>
<p class=N><span class=S> -w0 [..]:</span> Like -w but reverse order of objects
in houses 4..9.</p>
<p class=N><span class=S> -g:</span> Display aspect and midpoint grid among
planets.</p>
<p class=N><span class=S> -g0:</span> Like -g but flag aspect configurations
(e.g. Yods) too.</p>
<p class=N><span class=S> -gm:</span> For comparison charts, show midpoints
instead of aspects.</p>
<p class=N><span class=S> -ga:</span> Like -g but indicate applying/separating
instead of offset orbs.</p>
<p class=N><span class=S> -gp:</span> Like -g but generate parallel and
contraparallel aspects.</p>
<p class=N><span class=S> -a:</span> Display list of all aspects ordered by
influence.</p>
<p class=N><span class=S> -a0:</span> Like -a but display aspect summary too.</p>
<p class=N><span class=S> -aa:</span> Like -a but indicate applying/separating
instead of offset orbs.</p>
<p class=N><span class=S> -ap:</span> Like -a but do parallel and
contraparallel aspects.</p>
<p class=N><span class=S> -a[jonOPACDm]:</span> Sort aspects by power, orb, orb
difference, 1st planet, 2nd planet, aspect, 1st position, 2nd position,
midpoint.</p>
<p class=N><span class=S> -m:</span> Display all object midpoints in sorted
zodiac order.</p>
<p class=N><span class=S> -m0:</span> Like -m but display midpoint summary too.</p>
<p class=N><span class=S> -ma:</span> Like -m but show aspects from midpoints
to planets as well.</p>
<p class=N><span class=S> -Z:</span> Display planet locations with respect to
the local horizon.</p>
<p class=N><span class=S> -Z0:</span> Like -Z but express coordinates relative
to polar center.</p>
<p class=N><span class=S> -Zd:</span> Search day for object local rising and
setting times.</p>
<p class=N><span class=S> -Zd[m,y,Y] [<years>]:</span> Like -Zd but for
entire month, year, or years.</p>
<p class=N><span class=S> -S:</span> Display x,y,z coordinate positions of
planets in space.</p>
<p class=N><span class=S> -l:</span> Display Gauquelin sectors for each planet
in chart.</p>
<p class=N><span class=S> -l0:</span> Like -l but approximate sectors using
Placidus cusps.</p>
<p class=N><span class=S> -j:</span> Display astrological influences of each
object in chart.</p>
<p class=N><span class=S> -j0:</span> Like -j but include influences of each
zodiac sign as well.</p>
<p class=N><span class=S> -7:</span> Display Esoteric Astrology and Ray summary
for chart.</p>
<p class=N><span class=S> -L [<step>]:</span> Display astro-graph
locations of planetary angles.</p>
<p class=N><span class=S> -L0 [..]:</span> Like -L but display list of latitude
crossings too.</p>
<p class=N><span class=S> -K:</span> Display a calendar for given month.</p>
<p class=N><span class=S> -Ky:</span> Like -K but display a calendar for the
entire year.</p>
<p class=N><span class=S> -d [<step>]:</span> Print all aspects and
changes occurring in a day.</p>
<p class=N><span class=S> -dm:</span> Like -d but print all aspects for the
entire month.</p>
<p class=N><span class=S> -dy:</span> Like -d but print all aspects for the
entire year.</p>
<p class=N><span class=S> -dY <years>:</span> Like -d but search within a
number of years.</p>
<p class=N><span class=S> -dp <month> <year>:</span> Print aspects
within progressed chart.</p>
<p class=N><span class=S> -dpy <year>:</span> Like -dp but search for
aspects within entire year.</p>
<p class=N><span class=S> -dpY <year> <years>:</span> Like -dp but
search within number of years.</p>
<p class=N><span class=S> -dp[y]n:</span> Search for progressed aspects in
current month/year.</p>
<p class=N><span class=S> -D:</span> Like -d but display aspects by influence
instead of time.</p>
<p class=N><span class=S> -B:</span> Like -d but graph all aspects occurring in
a day.</p>
<p class=N><span class=S> -B[m,y,Y]:</span> Like -B but for entire month, year,
or five years.</p>
<p class=N><span class=S> -B0:</span> Like -B but don't restrict fast moving
objects from graph.</p>
<p class=N><span class=S> -E:</span> Display planetary ephemeris for given
month.</p>
<p class=N><span class=S> -Ey:</span> Display planetary ephemeris for the
entire year.</p>
<p class=N><span class=S> -EY <years>:</span> Display planetary ephemeris
for a number of years.</p>
<p class=N><span class=S> -E[]0 <step>:</span> Display ephemeris times
for days, months, or years.</p>
<p class=N><span class=S> -8:</span> Display planetary moons chart showing
placements and aspects.</p>
<p class=N><span class=S> -e:</span> Print all charts together (-v-w-g-a-m-Z-S-l-j-7-L-K-Zd-d-D-B-E-8).</p>
<p class=N><span class=S> -t <month> <year>:</span> Compute all
transits to natal planets in month.</p>
<p class=N><span class=S> -tp <month> <year>:</span> Compute
progressions to natal in month for chart.</p>
<p class=N><span class=S> -tr <month> <year>:</span> Compute all
returns in month for chart.</p>
<p class=N><span class=S> -t[p]d: <month> <day> <year>:</span>
Compute transits for a single day.</p>
<p class=N><span class=S> -t[p]y: <year>:</span> Compute
transits/progressions for entire year.</p>
<p class=N><span class=S> -t[p]Y: <year> <years>:</span> Compute
transits for a number of years.</p>
<p class=N><span class=S> -t[py]n:</span> Compute transits to natal planets for
current time now.</p>
<p class=N><span class=S> -T <month> <day> <year>:</span>
Display transits ordered by influence.</p>
<p class=N><span class=S> -Tt <month> <day> <year>
<time>:</span> Like -T but specify time too.</p>
<p class=N><span class=S> -T[t]p <month> <day> <year>:</span>
Print progressions instead of transits.</p>
<p class=N><span class=S> -T[p]n:</span> Display transits ordered by influence
for current date.</p>
<p class=N> <span class=S>-V [..]:</span> Like -t but graph all transits
occurring during period.</p>
<p class=N><span class=S> -V[d,y,Y] [[<day>] <month>] <year>:</span>
Like -V for day, year, or 5 years.</p>
<p class=N><span class=S> -V[..]0:</span> Like -V but don't restrict fast
moving objects from graph.</p>
<p class=N><span class=S> -P [<parts>]:</span> Display list of Arabic
parts and their positions.</p>
<p class=N><span class=S> -P0 [<parts>]:</span> Like -P but display
formulas with terms reversed.</p>