Practical Astronomy Algorithms in .NET/C#
Loading...
Searching...
No Matches
PATypes.cs
Go to the documentation of this file.
1using System;
2
3namespace PALib;
4
8public enum PACoordinateType
9{
14
18 True
19}
20
27public enum PATwilightType
28{
32 Civil = 6,
33
37 Nautical = 12,
38
42 Astronomical = 18
43}
44
48public enum PAAngleMeasure
49{
53 Degrees,
54
58 Hours
59}
60
64public enum PAAccuracyLevel
65{
70
75}
76
80public enum PAWarningFlag
81{
85 OK,
86
91}
PAAngleMeasure
Angle measurement units.
Definition PATypes.cs:49
@ Hours
Measurement by hours.
@ Degrees
Measurement by degrees.
PATwilightType
Twilight type.
Definition PATypes.cs:28
@ Civil
First period of twilight.
@ Nautical
Second period of twilight.
@ Astronomical
Second period of twilight.
PAAccuracyLevel
Accuracy level of calculation.
Definition PATypes.cs:65
@ Precise
Precise value.
@ Approximate
Approximate value.
PACoordinateType
Coordinate types.
Definition PATypes.cs:9
@ Apparent
Apparent (observer)
@ True
Actual/real.
PAWarningFlag
Warning flags for calculation results.
Definition PATypes.cs:81
@ Warning
Calculation result is invalid/inaccurate.
@ OK
Calculation result is OK.