sweph 2.10.1-a1 → 2.10.2-3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -9
- package/deps/swisseph/swecl.c +6440 -6440
- package/deps/swisseph/swehel.c +3522 -3523
- package/deps/swisseph/swehouse.c +3136 -3135
- package/deps/swisseph/sweodef.h +5 -1
- package/deps/swisseph/sweph.c +309 -1
- package/deps/swisseph/sweph.h +852 -852
- package/deps/swisseph/swephexp.h +9 -0
- package/deps/swisseph/swephlib.c +4635 -4643
- package/index.d.ts +588 -337
- package/index.js +5 -4
- package/index.mjs +109 -0
- package/package.json +6 -2
- package/src/functions/helio_cross.cpp +33 -0
- package/src/functions/helio_cross_ut.cpp +33 -0
- package/src/functions/house_name.cpp +3 -2
- package/src/functions/houses.cpp +1 -1
- package/src/functions/houses_ex.cpp +1 -1
- package/src/functions/houses_ex2.cpp +1 -1
- package/src/functions/mooncross.cpp +26 -0
- package/src/functions/mooncross_node.cpp +30 -0
- package/src/functions/mooncross_node_ut.cpp +30 -0
- package/src/functions/mooncross_ut.cpp +26 -0
- package/src/functions/solcross.cpp +26 -0
- package/src/functions/solcross_ut.cpp +26 -0
- package/src/sweph.cpp +9 -1
- package/src/sweph.h +8 -0
package/deps/swisseph/swephexp.h
CHANGED
|
@@ -709,6 +709,15 @@ ext_def(int32) swe_calc_ut(double tjd_ut, int32 ipl, int32 iflag,
|
|
|
709
709
|
|
|
710
710
|
ext_def(int32) swe_calc_pctr(double tjd, int32 ipl, int32 iplctr, int32 iflag, double *xxret, char *serr);
|
|
711
711
|
|
|
712
|
+
ext_def(double) swe_solcross(double x2cross, double jd_et, int32 flag, char *serr);
|
|
713
|
+
ext_def(double) swe_solcross_ut(double x2cross, double jd_ut, int32 flag, char *serr);
|
|
714
|
+
ext_def(double) swe_mooncross(double x2cross, double jd_et, int32 flag, char *serr);
|
|
715
|
+
ext_def(double) swe_mooncross_ut(double x2cross, double jd_ut, int32 flag, char *serr);
|
|
716
|
+
ext_def(double) swe_mooncross_node(double jd_et, int32 flag, double *xlon, double *xlat, char *serr);
|
|
717
|
+
ext_def(double) swe_mooncross_node_ut(double jd_ut, int32 flag, double *xlon, double *xlat, char *serr);
|
|
718
|
+
ext_def(int32) swe_helio_cross(int32 ipl, double x2cross, double jd_et, int32 iflag, int32 dir, double *jd_cross, char *serr);
|
|
719
|
+
ext_def(int32) swe_helio_cross_ut(int32 ipl, double x2cross, double jd_ut, int32 iflag, int32 dir, double *jd_cross, char *serr);
|
|
720
|
+
|
|
712
721
|
/* fixed stars */
|
|
713
722
|
ext_def( int32 ) swe_fixstar(
|
|
714
723
|
char *star, double tjd, int32 iflag,
|