@@ -624,10 +624,10 @@ int novas_sky_pos(const object *object, const novas_frame *frame, enum novas_ref
624
624
* refraction correction for Earth's atmosphere. If no such model is provided the calculated
625
625
* elevation will be the astrometric elevation without a refraction correction.
626
626
*
627
+ * @param frame Observer frame, defining the time and place of observation (on Earth).
627
628
* @param sys Astronomical coordinate system in which the observed position is given.
628
629
* @param ra [h] Observed apparent right ascension (R.A.) coordinate
629
630
* @param dec [deg] Observed apparent declination coordinate
630
- * @param frame Observer frame, defining the time and place of observation (on Earth).
631
631
* @param ref_model An appropriate refraction model, or NULL to calculate unrefracted elevation.
632
632
* Depending on the refraction model, you might want to make sure that the
633
633
* weather parameters were set when the observing frame was defined.
@@ -642,7 +642,7 @@ int novas_sky_pos(const object *object, const novas_frame *frame, enum novas_ref
642
642
* @sa novas_optical_refraction()
643
643
* @sa novas_hor_to_app();
644
644
*/
645
- int novas_app_to_hor (enum novas_reference_system sys , double ra , double dec , const novas_frame * frame , RefractionModel ref_model ,
645
+ int novas_app_to_hor (const novas_frame * frame , enum novas_reference_system sys , double ra , double dec , RefractionModel ref_model ,
646
646
double * az , double * el ) {
647
647
static const char * fn = "novas_app_to_hor" ;
648
648
const novas_timespec * time ;
@@ -715,9 +715,9 @@ int novas_app_to_hor(enum novas_reference_system sys, double ra, double dec, con
715
715
* refraction correction for Earth's atmosphere. If no such model is provided, the provided
716
716
* elevation value will be assumed to be an astrometric elevation without a refraction correction.
717
717
*
718
+ * @param frame Observer frame, defining the time and place of observation (on Earth).
718
719
* @param az [deg] Observed azimuth angle. It may be NULL if not required.
719
720
* @param el [deg] Observed elevation angle. It may be NULL if not required.
720
- * @param frame Observer frame, defining the time and place of observation (on Earth).
721
721
* @param ref_model An appropriate refraction model, or NULL to assume unrefracted elevation.
722
722
* Depending on the refraction model, you might want to make sure that the
723
723
* weather parameters were set when the observing frame was defined.
@@ -731,7 +731,7 @@ int novas_app_to_hor(enum novas_reference_system sys, double ra, double dec, con
731
731
* @sa novas_app_to_hor()
732
732
* @sa novas_make_frame()
733
733
*/
734
- int novas_hor_to_app (double az , double el , const novas_frame * frame , RefractionModel ref_model , enum novas_reference_system sys ,
734
+ int novas_hor_to_app (const novas_frame * frame , double az , double el , RefractionModel ref_model , enum novas_reference_system sys ,
735
735
double * ra , double * dec ) {
736
736
static const char * fn = "novas_hor_to_app" ;
737
737
const novas_timespec * time ;
0 commit comments