Skip to content

Commit

Permalink
v1.2.0-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Nov 24, 2024
1 parent 7b30c05 commit 2c8b712
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [Unreleased]
## [1.2.0-rc3] - 2024-11-24

Release candidate for the next feature release, expected around 1 February 2025.

Expand Down Expand Up @@ -90,6 +90,8 @@ Release candidate for the next feature release, expected around 1 February 2025.
- SuperNOVAS headers now include each other as system-headers, not local headers. This is unlikely to affect anything
really but it is more proper for an installation of the library, and works with our own `Makefile` too.

- Added 'Coordinate Systems and Conversions' flowchart to `README`.


### Changed

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ Earth (at the geocenter, on the surface, or in Earth orbit).
| ![SuperNOVAS coordinate systems and conversions](https://github.com/Smithsonian/SuperNOVAS/blob/main/resources/SuperNOVAS-systems.png) |
|:--:|
| __Figure 1.__ *SuperNOVAS Coordinate Systems and Conversions*. Bold face routines and shaded boxes indicate systems and functions available in NOVAS C also. All other systems and functions are available in SuperNOVAS only. |
| __Figure 1.__ *SuperNOVAS Coordinate Systems and Conversions*. Functions indicated in bold face are available in NOVAS C also. All other functions are available in SuperNOVAS only. |
SuperNOVAS __v1.1__ has introduced a new, more intuitive, more elegant, and more efficient approach for calculating
astrometric positions of celestial objects. The guide below is geared towards this new method. However, the original
Expand All @@ -401,7 +401,6 @@ for which we have B1950 (i.e. FK4) coordinates:
```c
cat_entry star; // Structure to contain information on sidereal source
// Let's assume we have B1950 (FK4) coordinates...
// 16h26m20.1918s, -26d19m23.138s (B1950), proper motion -12.11, -23.30 mas/year,
// parallax 5.89 mas, radial velocity -3.4 km/s.
Expand Down
2 changes: 1 addition & 1 deletion include/novas.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
#define SUPERNOVAS_PATCHLEVEL 0

/// Additional release information in version, e.g. "-1", or "-rc1".
#define SUPERNOVAS_RELEASE_STRING "-devel"
#define SUPERNOVAS_RELEASE_STRING "-rc3"

/// \cond PRIVATE

Expand Down
Binary file modified resources/SuperNOVAS-systems.dia
Binary file not shown.
Binary file modified resources/SuperNOVAS-systems.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/novas.c
Original file line number Diff line number Diff line change
Expand Up @@ -5282,7 +5282,7 @@ short cio_location(double jd_tdb, enum novas_accuracy accuracy, double *ra_cio,
*loc_type = -1;

if(!ra_cio || !loc_type)
return novas_error(-1, EINVAL, fn, "NULL output poointer: ra_cio=%p, loc_type=%p", ra_cio, loc_type);
return novas_error(-1, EINVAL, fn, "NULL output pointer: ra_cio=%p, loc_type=%p", ra_cio, loc_type);

if(accuracy != NOVAS_FULL_ACCURACY && accuracy != NOVAS_REDUCED_ACCURACY)
return novas_error(-1, EINVAL, fn, "invalid accuracy: %d", accuracy);
Expand Down

0 comments on commit 2c8b712

Please sign in to comment.