-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChanges
151 lines (82 loc) · 3.74 KB
/
Changes
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
Revision history for Astro::Coords
0.22 2024-11-01
- Added distance method to Astro::Coords::Offset.
0.21 2023-04-17
- Check for requests for more than 9 decimal places, which can cause an
overflow from PAL functions.
- Use str_ndp for Angle in_format('array').
0.20 2019-09-11
- Units can now be given as a 2-element array such as ['hours', 'degrees'].
0.19 2018-02-07
- Astro::Coords::Fixed::array now returns the azimuth and elevation
in radians.
- Changed the default number of decimal places for
Astro::Coords::Angle::Hour to 3.
- Updated the format specification used to parse epoch strings in
Astro::Coords::Elements (for recent versions of Time::Piece).
- Fixed the Astro::Coords::Angle::negate method.
- Added warnings about the use of proper motion without parallax.
(With Astro::PAL, significant proper motions are not applied
unless the parallax is also given.)
0.18 2012-11-09
- Fix inconsistency in parsing of hours vs degrees (Eric Jensen).
0.17 2012-07-16
- Require DateTime version 0.76 to avoid problems with rise/set test scripts.
0.16 2012-07-13
- Massive speed up in rise/set time calculation.
0.15 2012-07-05
- Add planets() method to retrieve planet names and remove Pluto.
0.14 2012-06-04
- Fix tests for long double Perl. Build now requires Test::Number::Delta.
0.13 2012-05-25
- Use Astro::PAL instead of Astro::SLA. The main driver being that
Astro::PAL can be installed from CPAN without any additional dependencies.
- Significant speed improvements.
- New apply_offset() method to add an Offset onto an existing coordinate
object and return a new coordinate object.
0.12 2010-12-30
- Update Elements interface.
- Improve performance of DateTime usage (caching TimeZone object).
- Support barycentric velocities.
- Astro::Coords::Offset now has invert(), clone() and posang() methods.
- Astro::Coords::Angle now has clone() and negate() methods.
- Astro::Coords::Offset now allows more systems.
- Fix problem with fractions seconds in LST calculation.
- Fix problem with calculate() method trashing the cached DateTime.
- Uses Module::Build.
0.10 2005-02-21
- Major reorganization internally to use (the new) Astro::Coords::Angle
objects for all angles. Should simplify formatting of return values.
- datetime() method now supports DateTime objects for time
specification. Time::Piece is now deprecated.
- Add radial velocity support.
- Add Doppler correction (experimental).
- New method to obtain the native Equatorial encoding that was used.
- set_time and rise_time now works properly for the Moon (and Sun).
- rise_time can now be configured to return the nearest rise time
not just the next rise_time.
- Planet diameter is now available.
- Galactic and ecliptic conversions now in base class (moved from Equatorial)
- radec1950 method available.
- Switch to GPL license.
0.07 2004-02-26
- Add support for parallax and proper motion, epoch and equinox.
- ra2000 and dec2000 methods always return RA/Dec J2000 for epoch 2000.0
(equatorial only).
0.05 2003-11-17
- Check format of input arguments (for sexagesimal parsing).
- Add rise, set and transit time calculation.
- Add Interpolated RA/Dec (Astro::Coords::Interpolated).
- Add calculate method.
- Fix orbital elements (requires recent slalib).
- Can now ask for J2000 for all coordinate types.
- Add name and comment method for tagging a coordinate object.
0.04 2002-08-03
- Internal release.
0.03 2002-05-24
- Add isObservable method.
- Spun off Astro::Telescope into its own CPAN distribution.
0.02 2001-12-05
- Add Astro::Coords::Calibration and Astro::Coords::Fixed.
0.01 2001-11-01
- Initial test release to CPAN.