sweph 2.10.0-4 → 2.10.0-7

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 CHANGED
@@ -1,16 +1,18 @@
1
1
  # Sweph
2
2
 
3
3
  The definitive Swiss Ephemeris bindings for Node.js
4
- Everything you need to create Astrology and Astronomy applications with javascript and node.js
4
+ Everything you need to create Astrology and Astronomy applications with javascript and node
5
5
 
6
6
  * 100% API coverage
7
- * Built-in Typescript declarations
7
+ * Built-in Typescript declarations and ESM named exports
8
8
  * Built-in intellisense documentation
9
- * Version matching
9
+ * Version matched
10
10
  * Made with the N-API
11
11
 
12
- [Official documentation for the Swiss Ephemeris by Astrodienst AG](https://www.astro.com/swisseph/swephprg.htm)
13
- [Sweph on NPM](http://npm.com/package/sweph)
12
+ [Official programmers documentation for the Swiss Ephemeris by Astrodienst AG](https://www.astro.com/swisseph/swephprg.htm)
13
+ [Official guide for the Swiss Ephemeris by Astrodienst AG](https://www.astro.com/ftp/swisseph/doc/swisseph.htm)
14
+ [Sweph on Github](https://github.com/timotejroiko/sweph)
15
+ [Sweph on NPM](https://npmjs.com/package/sweph)
14
16
 
15
17
  ## Installation and Licensing
16
18
 
@@ -19,7 +21,7 @@ This library follows the licensing requirements for the Swiss Ephemeris by Astro
19
21
  ### - GPL
20
22
 
21
23
  Up to and including version `2.10.0`, this library is licensed under `GPL-2.0`.
22
- To install and use this library under GPL, use `npm install sweph@2.10.0`.
24
+ To install and use this library under GPL, use `npm install sweph@gpl` or `npm install sweph@2.10.0`.
23
25
 
24
26
  ### - AGPL
25
27
 
@@ -34,21 +36,40 @@ If you own a professional license for the Swiss Ephemeris, you may use any versi
34
36
 
35
37
  This library is version locked to the Swiss Ephemeris in addition to its own revisions. For example, version `2.10.1-1` corresponds to the Swiss Ephemeris version `2.10.1` and this library's revision `1`.
36
38
 
37
- Updates to this library will be released under new revisions, while updates to the upstream Swiss Ephemeris will be released under matching semver versions.
39
+ Updates to this library will be released under new revisions, while updates to Swiss Ephemeris will be released under matching semver versions.
38
40
 
39
41
  ## Documentation
40
42
 
41
- This library is fully typed and documented via intellisense. To access its documentation simply hover over its functions:
43
+ This library is fully typed and documented via intellisense. To access its documentation simply hover over its functions in your favorite code editor:
42
44
 
43
45
  ![docs_example](docs.gif)
44
46
 
47
+ ## Ephemeris files
48
+
49
+ This library does not include any ephemeris files. To use the Swiss Ephemeris files, download them from [https://www.astro.com/ftp/swisseph/ephe/](https://www.astro.com/ftp/swisseph/ephe/) and call `set_ephe_path()` to point the library to the folder containing the ephemeris files.
50
+
51
+ Each main ephemeris file covers a range of 600 years starting from the century indicated in its name, for example the file `sepl_18.se1` is valid from year 1800 until year 2400. The following files are available:
52
+
53
+ * sepl files - planets (AD)
54
+ * seplm files - planets (BC)
55
+ * semo files - moon (AD)
56
+ * semom files - moon (BC)
57
+ * seas files - main asteroids (AD)
58
+ * seasm files - main asteroids (BC)
59
+ For advanced usage, the following files can also be found:
60
+ * astxxx folders - files for individual asteroids (600 years)
61
+ * longfiles folder - files for individual asteroids (6000 years)
62
+ * jplfiles folder - files for nasa's jpl ephemerides
63
+ * sat folder - files for planetary moons
64
+ More information can be found in the [Swiss Ephemeris files documentation](https://www.astro.com/ftp/swisseph/doc/swisseph.htm#_Toc58931065).
65
+
45
66
  ## Contributing
46
67
 
47
68
  If you find any innacuracy or bug in this library, or if you find an update that is not yet included in this library, feel free to open an issue or a pull request.
48
69
 
49
70
  ## Known Issues and Caveats
50
71
 
51
- * Due to how the underlying C library operates, you may find that the `error` field returned by some functions will contain data even if there is no actual error. This can happen when existing memory buffers are recycled and the user must handle it by also checking the returned flag values as per the Swiss Ephemeris documentation.
72
+ * Due to how the underlying C library operates, you may find that the `error` field returned by some functions will contain random data even if there is no actual error. This can happen when existing memory buffers are recycled therefore the user must always check the returned flag values as per the Swiss Ephemeris documentation.
52
73
  * While worker_threads are supported, the underlying C library is single threaded and its settings are global. Functions such as `set_ephe_path()` will affect the entire process, including worker_threads. While you can still use worker_threads as long as you dont change settings from other threads in the middle of calculations, true thead-safe multithreading can be achieved using child_process instead.
53
74
 
54
75
  ## Author
package/index.d.ts CHANGED
@@ -2,14 +2,15 @@
2
2
  * ## Sweph
3
3
  * Definitive Swiss Ephemeris bindings for Node.js
4
4
  *
5
- * [Official documentation for the Swiss Ephemeris](https://www.astro.com/swisseph/swephprg.htm)
5
+ * [Official programmers documentation for the Swiss Ephemeris](https://www.astro.com/swisseph/swephprg.htm)
6
+ * [Official guide for the Swiss Ephemeris](https://www.astro.com/ftp/swisseph/doc/swisseph.htm)
6
7
  * [Sweph on Github](https://github.com/timotejroiko/sweph)
7
- * [Sweph on NPM](http://npm.com/package/sweph)
8
+ * [Sweph on NPM](http://npmjs.com/package/sweph)
8
9
  *
9
10
  * ### Usage
10
11
  * ```
11
12
  * const { utc_to_jd, calc, houses_ex2, constants, set_ephe_path } = require("sweph");
12
- * // or - import { utc_to_jd, calc, houses, constants, set_ephe_path } from "sweph";
13
+ * // or import { utc_to_jd, calc, houses_ex2, constants, set_ephe_path } from "sweph";
13
14
  *
14
15
  * set_ephe_path("./ephemeris"); // folder containing your ephemeris files;
15
16
  *
@@ -28,6 +29,7 @@
28
29
  * ```
29
30
  */
30
31
  declare module "sweph" {
32
+ export * as default from "sweph"
31
33
 
32
34
  /*
33
35
  ┌──────────────────────────────────────────────────┬────────────┬──────────────────────────────────────────────────┐
@@ -45,7 +47,7 @@ declare module "sweph" {
45
47
  */
46
48
  flag: number;
47
49
  }
48
-
50
+
49
51
  interface Error {
50
52
  /**
51
53
  * ### Description
@@ -155,7 +157,7 @@ declare module "sweph" {
155
157
  * ```
156
158
  * ```
157
159
  */
158
- data: CalcData2;
160
+ data: CalcData2;
159
161
  }
160
162
 
161
163
  interface FixStarMag extends Flag, Name, Error {
@@ -417,7 +419,7 @@ declare module "sweph" {
417
419
  * ```
418
420
  * ```
419
421
  */
420
- data: EclipseTimes3
422
+ data: EclipseTimes3
421
423
  }
422
424
 
423
425
  interface LunOccultWhenLoc extends Flag, Error {
@@ -462,7 +464,7 @@ declare module "sweph" {
462
464
  * ```
463
465
  * ```
464
466
  */
465
- data: {
467
+ data: {
466
468
  /**
467
469
  * ### Description
468
470
  * Array of ascending node values returned by the calculation
@@ -508,7 +510,7 @@ declare module "sweph" {
508
510
  * ```
509
511
  */
510
512
  aphelion: CalcData2;
511
- };
513
+ };
512
514
  }
513
515
 
514
516
  interface Pheno extends Flag, Error {
@@ -1494,7 +1496,7 @@ declare module "sweph" {
1494
1496
  * Time of third contact
1495
1497
  */
1496
1498
  third_contact: number,
1497
- /**
1499
+ /**
1498
1500
  * Time of fourth contact
1499
1501
  */
1500
1502
  fourth_contact: number,
@@ -1810,7 +1812,7 @@ declare module "sweph" {
1810
1812
  * ### Params
1811
1813
  * ```
1812
1814
  * • tjd_ut: number // Julian day in universal time
1813
- * • calc_flag: number // Calculation flag, SE_HOR2ECL or SE_HOR2EQU
1815
+ * • calc_flag: number // Calculation flag, SE_ECL2HOR or SE_EQU2HOR
1814
1816
  * • geopos: Array<number> // Geographic coordinates [longitude, latitude, elevation]
1815
1817
  * • atpress: number // Atmospheric pressure in mbar/hpa
1816
1818
  * • attemp: number // Atmospheric temperature in celcius
@@ -1941,7 +1943,7 @@ declare module "sweph" {
1941
1943
  * &nbsp;
1942
1944
  */
1943
1945
  export function calc(tjd_et: number, ipl: number, iflag: number): Calc;
1944
-
1946
+
1945
1947
  /**
1946
1948
  * ### Description
1947
1949
  * Reset swisseph internals and cleanup file handles
@@ -2910,11 +2912,11 @@ declare module "sweph" {
2910
2912
  * ```
2911
2913
  * ### Example
2912
2914
  * ```
2913
- * const name = house_name("p"); // "Placidus"
2915
+ * const name = house_name("P"); // "Placidus"
2914
2916
  * ```
2915
2917
  * &nbsp;
2916
2918
  */
2917
- export function house_name(hsys: number): string;
2919
+ export function house_name(hsys: HouseSystems | string & {}): string;
2918
2920
 
2919
2921
  /**
2920
2922
  * ### Description
@@ -2943,7 +2945,7 @@ declare module "sweph" {
2943
2945
  * ```
2944
2946
  * &nbsp;
2945
2947
  */
2946
- export function house_pos(armc: number, geolat: number, eps: number, hsys: string, xpin: [longitude: number, latitude: number]): HousePosition;
2948
+ export function house_pos(armc: number, geolat: number, eps: number, hsys: HouseSystems | string & {}, xpin: [longitude: number, latitude: number]): HousePosition;
2947
2949
 
2948
2950
  /**
2949
2951
  * ### Description
@@ -2997,8 +2999,9 @@ declare module "sweph" {
2997
2999
  * ```
2998
3000
  * &nbsp;
2999
3001
  */
3000
- export function houses_armc_ex2(armc: number, geolat: number, eps: number, hsys: HouseSystems, decl?: number): HousesEx<12>;
3001
3002
  export function houses_armc_ex2(armc: number, geolat: number, eps: number, hsys: "G", decl?: number): HousesEx<36>;
3003
+ export function houses_armc_ex2(armc: number, geolat: number, eps: number, hsys: HouseSystems, decl?: number): HousesEx<12>;
3004
+ export function houses_armc_ex2(armc: number, geolat: number, eps: number, hsys: string, decl?: number): HousesEx<12> | HousesEx<36>;
3002
3005
 
3003
3006
  /**
3004
3007
  * ### Description
@@ -3044,8 +3047,9 @@ declare module "sweph" {
3044
3047
  * ```
3045
3048
  * &nbsp;
3046
3049
  */
3047
- export function houses_armc(armc: number, geolat: number, eps: number, hsys: HouseSystems, decl?: number): Houses<12>;
3048
3050
  export function houses_armc(armc: number, geolat: number, eps: number, hsys: "G", decl?: number): Houses<36>;
3051
+ export function houses_armc(armc: number, geolat: number, eps: number, hsys: HouseSystems, decl?: number): Houses<12>;
3052
+ export function houses_armc(armc: number, geolat: number, eps: number, hsys: string, decl?: number): Houses<12> | Houses<36>;
3049
3053
 
3050
3054
  /**
3051
3055
  * ### Description
@@ -3090,8 +3094,9 @@ declare module "sweph" {
3090
3094
  * ```
3091
3095
  * &nbsp;
3092
3096
  */
3093
- export function houses_ex(tjd_ut: number, iflag: number, geolat: number, geolon: number, hsys: HouseSystems): Houses<12>;
3094
3097
  export function houses_ex(tjd_ut: number, iflag: number, geolat: number, geolon: number, hsys: "G"): Houses<36>;
3098
+ export function houses_ex(tjd_ut: number, iflag: number, geolat: number, geolon: number, hsys: HouseSystems): Houses<12>;
3099
+ export function houses_ex(tjd_ut: number, iflag: number, geolat: number, geolon: number, hsys: string): Houses<12> | Houses<36>;
3095
3100
 
3096
3101
  /**
3097
3102
  * ### Description
@@ -3144,8 +3149,9 @@ declare module "sweph" {
3144
3149
  * ```
3145
3150
  * &nbsp;
3146
3151
  */
3147
- export function houses_ex2(tjd_ut: number, iflag: number, geolat: number, geolon: number, hsys: HouseSystems): HousesEx<12>;
3148
3152
  export function houses_ex2(tjd_ut: number, iflag: number, geolat: number, geolon: number, hsys: "G"): HousesEx<36>;
3153
+ export function houses_ex2(tjd_ut: number, iflag: number, geolat: number, geolon: number, hsys: HouseSystems): HousesEx<12>;
3154
+ export function houses_ex2(tjd_ut: number, iflag: number, geolat: number, geolon: number, hsys: string): HousesEx<12> | HousesEx<36>;
3149
3155
 
3150
3156
  /**
3151
3157
  * ### Description
@@ -3189,8 +3195,9 @@ declare module "sweph" {
3189
3195
  * ```
3190
3196
  * &nbsp;
3191
3197
  */
3192
- export function houses(tjd_ut: number, geolat: number, geolon: number, hsys: HouseSystems): Houses<12>;
3193
3198
  export function houses(tjd_ut: number, geolat: number, geolon: number, hsys: "G"): Houses<36>;
3199
+ export function houses(tjd_ut: number, geolat: number, geolon: number, hsys: HouseSystems): Houses<12>;
3200
+ export function houses(tjd_ut: number, geolat: number, geolon: number, hsys: string): Houses<12> | Houses<36>;
3194
3201
 
3195
3202
  /**
3196
3203
  * ### Description
@@ -3670,7 +3677,7 @@ declare module "sweph" {
3670
3677
  */
3671
3678
  export function nod_aps_ut(tjd_ut: number, ipl: number, iflag: number, method: number): NodAps;
3672
3679
 
3673
- /**
3680
+ /**
3674
3681
  * ### Description
3675
3682
  * Calculate an object's nodes and apsides from ephemeris/terrestrial time
3676
3683
  * If the calculation method includes `SE_NODBIT_FOPOINT`, the `aphelion` field contains the values for the object's "second focus" instead
@@ -4149,7 +4156,7 @@ declare module "sweph" {
4149
4156
  * &nbsp;
4150
4157
  */
4151
4158
  export function sidtime0(tjd_ut: number, eps: number, nut: number): number;
4152
-
4159
+
4153
4160
  /**
4154
4161
  * ### Description
4155
4162
  * Get solar eclipse data for a given date
@@ -4525,331 +4532,331 @@ declare module "sweph" {
4525
4532
  * Swisseph Constants
4526
4533
  * Contains aliases and predefined constant values used in the swiss ephemeris
4527
4534
  */
4528
- export const enum constants {
4529
- OK = 0,
4530
- ERR = -1,
4531
- SE_AUNIT_TO_KM = 149597870.7,
4532
- SE_AUNIT_TO_LIGHTYEAR = 0.000015812507409819728,
4533
- SE_AUNIT_TO_PARSEC = 0.000004848136811095274,
4534
- SE_JUL_CAL = 0,
4535
- SE_GREG_CAL = 1,
4536
- SE_ECL_NUT = -1,
4537
- SE_SUN = 0,
4538
- SE_MOON = 1,
4539
- SE_MERCURY = 2,
4540
- SE_VENUS = 3,
4541
- SE_MARS = 4,
4542
- SE_JUPITER = 5,
4543
- SE_SATURN = 6,
4544
- SE_URANUS = 7,
4545
- SE_NEPTUNE = 8,
4546
- SE_PLUTO = 9,
4547
- SE_MEAN_NODE = 10,
4548
- SE_TRUE_NODE = 11,
4549
- SE_MEAN_APOG = 12,
4550
- SE_OSCU_APOG = 13,
4551
- SE_EARTH = 14,
4552
- SE_CHIRON = 15,
4553
- SE_PHOLUS = 16,
4554
- SE_CERES = 17,
4555
- SE_PALLAS = 18,
4556
- SE_JUNO = 19,
4557
- SE_VESTA = 20,
4558
- SE_INTP_APOG = 21,
4559
- SE_INTP_PERG = 22,
4560
- SE_NPLANETS = 23,
4561
- SE_PLMOON_OFFSET = 9000,
4562
- SE_AST_OFFSET = 10000,
4563
- SE_VARUNA = 30000,
4564
- SE_FICT_OFFSET = 40,
4565
- SE_FICT_OFFSET_1 = 39,
4566
- SE_FICT_MAX = 999,
4567
- SE_NFICT_ELEM = 15,
4568
- SE_COMET_OFFSET = 1000,
4569
- SE_NALL_NAT_POINTS = 38,
4570
- SE_CUPIDO = 40,
4571
- SE_HADES = 41,
4572
- SE_ZEUS = 42,
4573
- SE_KRONOS = 43,
4574
- SE_APOLLON = 44,
4575
- SE_ADMETOS = 45,
4576
- SE_VULKANUS = 46,
4577
- SE_POSEIDON = 47,
4578
- SE_ISIS = 48,
4579
- SE_NIBIRU = 49,
4580
- SE_HARRINGTON = 50,
4581
- SE_NEPTUNE_LEVERRIER = 51,
4582
- SE_NEPTUNE_ADAMS = 52,
4583
- SE_PLUTO_LOWELL = 53,
4584
- SE_PLUTO_PICKERING = 54,
4585
- SE_VULCAN = 55,
4586
- SE_WHITE_MOON = 56,
4587
- SE_PROSERPINA = 57,
4588
- SE_WALDEMATH = 58,
4589
- SE_FIXSTAR = -10,
4590
- SE_ASC = 0,
4591
- SE_MC = 1,
4592
- SE_ARMC = 2,
4593
- SE_VERTEX = 3,
4594
- SE_EQUASC = 4,
4595
- SE_COASC1 = 5,
4596
- SE_COASC2 = 6,
4597
- SE_POLASC = 7,
4598
- SE_NASCMC = 8,
4599
- SEFLG_JPLEPH = 1,
4600
- SEFLG_SWIEPH = 2,
4601
- SEFLG_MOSEPH = 4,
4602
- SEFLG_HELCTR = 8,
4603
- SEFLG_TRUEPOS = 16,
4604
- SEFLG_J2000 = 32,
4605
- SEFLG_NONUT = 64,
4606
- SEFLG_SPEED3 = 128,
4607
- SEFLG_SPEED = 256,
4608
- SEFLG_NOGDEFL = 512,
4609
- SEFLG_NOABERR = 1024,
4610
- SEFLG_ASTROMETRIC = 1536,
4611
- SEFLG_EQUATORIAL = 2048,
4612
- SEFLG_XYZ = 4096,
4613
- SEFLG_RADIANS = 8192,
4614
- SEFLG_BARYCTR = 16384,
4615
- SEFLG_TOPOCTR = 32768,
4616
- SEFLG_ORBEL_AA = 32768,
4617
- SEFLG_TROPICAL = 0,
4618
- SEFLG_SIDEREAL = 65536,
4619
- SEFLG_ICRS = 131072,
4620
- SEFLG_DPSIDEPS_1980 = 262144,
4621
- SEFLG_JPLHOR = 262144,
4622
- SEFLG_JPLHOR_APPROX = 524288,
4623
- SEFLG_CENTER_BODY = 1048576,
4624
- SEFLG_TEST_PLMOON = 2228280,
4625
- SE_SIDBITS = 256,
4626
- SE_SIDBIT_ECL_T0 = 256,
4627
- SE_SIDBIT_SSY_PLANE = 512,
4628
- SE_SIDBIT_USER_UT = 1024,
4629
- SE_SIDBIT_ECL_DATE = 2048,
4630
- SE_SIDBIT_NO_PREC_OFFSET = 4096,
4631
- SE_SIDBIT_PREC_ORIG = 8192,
4632
- SE_SIDM_FAGAN_BRADLEY = 0,
4633
- SE_SIDM_LAHIRI = 1,
4634
- SE_SIDM_DELUCE = 2,
4635
- SE_SIDM_RAMAN = 3,
4636
- SE_SIDM_USHASHASHI = 4,
4637
- SE_SIDM_KRISHNAMURTI = 5,
4638
- SE_SIDM_DJWHAL_KHUL = 6,
4639
- SE_SIDM_YUKTESHWAR = 7,
4640
- SE_SIDM_JN_BHASIN = 8,
4641
- SE_SIDM_BABYL_KUGLER1 = 9,
4642
- SE_SIDM_BABYL_KUGLER2 = 10,
4643
- SE_SIDM_BABYL_KUGLER3 = 11,
4644
- SE_SIDM_BABYL_HUBER = 12,
4645
- SE_SIDM_BABYL_ETPSC = 13,
4646
- SE_SIDM_ALDEBARAN_15TAU = 14,
4647
- SE_SIDM_HIPPARCHOS = 15,
4648
- SE_SIDM_SASSANIAN = 16,
4649
- SE_SIDM_GALCENT_0SAG = 17,
4650
- SE_SIDM_J2000 = 18,
4651
- SE_SIDM_J1900 = 19,
4652
- SE_SIDM_B1950 = 20,
4653
- SE_SIDM_SURYASIDDHANTA = 21,
4654
- SE_SIDM_SURYASIDDHANTA_MSUN = 22,
4655
- SE_SIDM_ARYABHATA = 23,
4656
- SE_SIDM_ARYABHATA_MSUN = 24,
4657
- SE_SIDM_SS_REVATI = 25,
4658
- SE_SIDM_SS_CITRA = 26,
4659
- SE_SIDM_TRUE_CITRA = 27,
4660
- SE_SIDM_TRUE_REVATI = 28,
4661
- SE_SIDM_TRUE_PUSHYA = 29,
4662
- SE_SIDM_GALCENT_RGILBRAND = 30,
4663
- SE_SIDM_GALEQU_IAU1958 = 31,
4664
- SE_SIDM_GALEQU_TRUE = 32,
4665
- SE_SIDM_GALEQU_MULA = 33,
4666
- SE_SIDM_GALALIGN_MARDYKS = 34,
4667
- SE_SIDM_TRUE_MULA = 35,
4668
- SE_SIDM_GALCENT_MULA_WILHELM = 36,
4669
- SE_SIDM_ARYABHATA_522 = 37,
4670
- SE_SIDM_BABYL_BRITTON = 38,
4671
- SE_SIDM_TRUE_SHEORAN = 39,
4672
- SE_SIDM_GALCENT_COCHRANE = 40,
4673
- SE_SIDM_GALEQU_FIORENZA = 41,
4674
- SE_SIDM_VALENS_MOON = 42,
4675
- SE_SIDM_LAHIRI_1940 = 43,
4676
- SE_SIDM_LAHIRI_VP285 = 44,
4677
- SE_SIDM_KRISHNAMURTI_VP291 = 45,
4678
- SE_SIDM_LAHIRI_ICRC = 46,
4679
- SE_SIDM_USER = 255,
4680
- SE_NSIDM_PREDEF = 47,
4681
- SE_NODBIT_MEAN = 1,
4682
- SE_NODBIT_OSCU = 2,
4683
- SE_NODBIT_OSCU_BAR = 4,
4684
- SE_NODBIT_FOPOINT = 256,
4685
- SEFLG_DEFAULTEPH = 2,
4686
- SE_MAX_STNAME = 256,
4687
- SE_ECL_CENTRAL = 1,
4688
- SE_ECL_NONCENTRAL = 2,
4689
- SE_ECL_TOTAL = 4,
4690
- SE_ECL_ANNULAR = 8,
4691
- SE_ECL_PARTIAL = 16,
4692
- SE_ECL_ANNULAR_TOTAL = 32,
4693
- SE_ECL_HYBRID = 32,
4694
- SE_ECL_PENUMBRAL = 64,
4695
- SE_ECL_ALLTYPES_SOLAR = 63,
4696
- SE_ECL_ALLTYPES_LUNAR = 84,
4697
- SE_ECL_VISIBLE = 128,
4698
- SE_ECL_MAX_VISIBLE = 256,
4699
- SE_ECL_1ST_VISIBLE = 512,
4700
- SE_ECL_PARTBEG_VISIBLE = 512,
4701
- SE_ECL_2ND_VISIBLE = 1024,
4702
- SE_ECL_TOTBEG_VISIBLE = 1024,
4703
- SE_ECL_3RD_VISIBLE = 2048,
4704
- SE_ECL_TOTEND_VISIBLE = 2048,
4705
- SE_ECL_4TH_VISIBLE = 4096,
4706
- SE_ECL_PARTEND_VISIBLE = 4096,
4707
- SE_ECL_PENUMBBEG_VISIBLE = 8192,
4708
- SE_ECL_PENUMBEND_VISIBLE = 16384,
4709
- SE_ECL_OCC_BEG_DAYLIGHT = 8192,
4710
- SE_ECL_OCC_END_DAYLIGHT = 16384,
4711
- SE_ECL_ONE_TRY = 32768,
4712
- SE_CALC_RISE = 1,
4713
- SE_CALC_SET = 2,
4714
- SE_CALC_MTRANSIT = 4,
4715
- SE_CALC_ITRANSIT = 8,
4716
- SE_BIT_DISC_CENTER = 256,
4717
- SE_BIT_DISC_BOTTOM = 8192,
4718
- SE_BIT_GEOCTR_NO_ECL_LAT = 128,
4719
- SE_BIT_NO_REFRACTION = 512,
4720
- SE_BIT_CIVIL_TWILIGHT = 1024,
4721
- SE_BIT_NAUTIC_TWILIGHT = 2048,
4722
- SE_BIT_ASTRO_TWILIGHT = 4096,
4723
- SE_BIT_FIXED_DISC_SIZE = 16384,
4724
- SE_BIT_FORCE_SLOW_METHOD = 32768,
4725
- SE_BIT_HINDU_RISING = 896,
4726
- SE_ECL2HOR = 0,
4727
- SE_EQU2HOR = 1,
4728
- SE_HOR2ECL = 0,
4729
- SE_HOR2EQU = 1,
4730
- SE_TRUE_TO_APP = 0,
4731
- SE_APP_TO_TRUE = 1,
4732
- SE_DE_NUMBER = 431,
4733
- SE_FNAME_DE200 = "de200.eph",
4734
- SE_FNAME_DE403 = "de403.eph",
4735
- SE_FNAME_DE404 = "de404.eph",
4736
- SE_FNAME_DE405 = "de405.eph",
4737
- SE_FNAME_DE406 = "de406.eph",
4738
- SE_FNAME_DE431 = "de431.eph",
4739
- SE_FNAME_DFT = "de431.eph",
4740
- SE_FNAME_DFT2 = "de406.eph",
4741
- SE_STARFILE_OLD = "fixstars.cat",
4742
- SE_STARFILE = "sefstars.txt",
4743
- SE_ASTNAMFILE = "seasnam.txt",
4744
- SE_FICTFILE = "seorbel.txt",
4745
- SE_SPLIT_DEG_ROUND_SEC = 1,
4746
- SE_SPLIT_DEG_ROUND_MIN = 2,
4747
- SE_SPLIT_DEG_ROUND_DEG = 4,
4748
- SE_SPLIT_DEG_ZODIACAL = 8,
4749
- SE_SPLIT_DEG_NAKSHATRA = 1024,
4750
- SE_SPLIT_DEG_KEEP_SIGN = 16,
4751
- SE_SPLIT_DEG_KEEP_DEG = 32,
4752
- SE_HELIACAL_RISING = 1,
4753
- SE_HELIACAL_SETTING = 2,
4754
- SE_MORNING_FIRST = 1,
4755
- SE_EVENING_LAST = 2,
4756
- SE_EVENING_FIRST = 3,
4757
- SE_MORNING_LAST = 4,
4758
- SE_ACRONYCHAL_RISING = 5,
4759
- SE_ACRONYCHAL_SETTING = 6,
4760
- SE_COSMICAL_SETTING = 6,
4761
- SE_HELFLAG_LONG_SEARCH = 128,
4762
- SE_HELFLAG_HIGH_PRECISION = 256,
4763
- SE_HELFLAG_OPTICAL_PARAMS = 512,
4764
- SE_HELFLAG_NO_DETAILS = 1024,
4765
- SE_HELFLAG_SEARCH_1_PERIOD = 2048,
4766
- SE_HELFLAG_VISLIM_DARK = 4096,
4767
- SE_HELFLAG_VISLIM_NOMOON = 8192,
4768
- SE_HELFLAG_VISLIM_PHOTOPIC = 16384,
4769
- SE_HELFLAG_VISLIM_SCOTOPIC = 32768,
4770
- SE_HELFLAG_AV = 65536,
4771
- SE_HELFLAG_AVKIND_VR = 65536,
4772
- SE_HELFLAG_AVKIND_PTO = 131072,
4773
- SE_HELFLAG_AVKIND_MIN7 = 262144,
4774
- SE_HELFLAG_AVKIND_MIN9 = 524288,
4775
- SE_HELFLAG_AVKIND = 983040,
4776
- TJD_INVALID = 99999999,
4777
- SIMULATE_VICTORVB = 1,
4778
- SE_PHOTOPIC_FLAG = 0,
4779
- SE_SCOTOPIC_FLAG = 1,
4780
- SE_MIXEDOPIC_FLAG = 2,
4781
- SE_TIDAL_DE200 = -23.8946,
4782
- SE_TIDAL_DE403 = -25.58,
4783
- SE_TIDAL_DE404 = -25.58,
4784
- SE_TIDAL_DE405 = -25.826,
4785
- SE_TIDAL_DE406 = -25.826,
4786
- SE_TIDAL_DE421 = -25.85,
4787
- SE_TIDAL_DE422 = -25.85,
4788
- SE_TIDAL_DE430 = -25.82,
4789
- SE_TIDAL_DE431 = -25.8,
4790
- SE_TIDAL_26 = -26,
4791
- SE_TIDAL_STEPHENSON_2016 = -25.85,
4792
- SE_TIDAL_DEFAULT = -25.8,
4793
- SE_TIDAL_AUTOMATIC = 999999,
4794
- SE_TIDAL_MOSEPH = -25.58,
4795
- SE_TIDAL_SWIEPH = -25.8,
4796
- SE_TIDAL_JPLEPH = -25.8,
4797
- SE_DELTAT_AUTOMATIC = 0.0000000001,
4798
- SE_MODEL_DELTAT = 0,
4799
- SE_MODEL_PREC_LONGTERM = 1,
4800
- SE_MODEL_PREC_SHORTTERM = 2,
4801
- SE_MODEL_NUT = 3,
4802
- SE_MODEL_BIAS = 4,
4803
- SE_MODEL_JPLHOR_MODE = 5,
4804
- SE_MODEL_JPLHORA_MODE = 6,
4805
- SE_MODEL_SIDT = 7,
4806
- NSE_MODELS = 8,
4807
- SEMOD_NPREC = 11,
4808
- SEMOD_PREC_IAU_1976 = 1,
4809
- SEMOD_PREC_LASKAR_1986 = 2,
4810
- SEMOD_PREC_WILL_EPS_LASK = 3,
4811
- SEMOD_PREC_WILLIAMS_1994 = 4,
4812
- SEMOD_PREC_SIMON_1994 = 5,
4813
- SEMOD_PREC_IAU_2000 = 6,
4814
- SEMOD_PREC_BRETAGNON_2003 = 7,
4815
- SEMOD_PREC_IAU_2006 = 8,
4816
- SEMOD_PREC_VONDRAK_2011 = 9,
4817
- SEMOD_PREC_OWEN_1990 = 10,
4818
- SEMOD_PREC_NEWCOMB = 11,
4819
- SEMOD_PREC_DEFAULT = 9,
4820
- SEMOD_PREC_DEFAULT_SHORT = 9,
4821
- SEMOD_NNUT = 5,
4822
- SEMOD_NUT_IAU_1980 = 1,
4823
- SEMOD_NUT_IAU_CORR_1987 = 2,
4824
- SEMOD_NUT_IAU_2000A = 3,
4825
- SEMOD_NUT_IAU_2000B = 4,
4826
- SEMOD_NUT_WOOLARD = 5,
4827
- SEMOD_NUT_DEFAULT = 4,
4828
- SEMOD_NSIDT = 4,
4829
- SEMOD_SIDT_IAU_1976 = 1,
4830
- SEMOD_SIDT_IAU_2006 = 2,
4831
- SEMOD_SIDT_IERS_CONV_2010 = 3,
4832
- SEMOD_SIDT_LONGTERM = 4,
4833
- SEMOD_SIDT_DEFAULT = 4,
4834
- SEMOD_NBIAS = 3,
4835
- SEMOD_BIAS_NONE = 1,
4836
- SEMOD_BIAS_IAU2000 = 2,
4837
- SEMOD_BIAS_IAU2006 = 3,
4838
- SEMOD_BIAS_DEFAULT = 3,
4839
- SEMOD_NJPLHOR = 2,
4840
- SEMOD_JPLHOR_LONG_AGREEMENT = 1,
4841
- SEMOD_JPLHOR_DEFAULT = 1,
4842
- SEMOD_NJPLHORA = 3,
4843
- SEMOD_JPLHORA_1 = 1,
4844
- SEMOD_JPLHORA_2 = 2,
4845
- SEMOD_JPLHORA_3 = 3,
4846
- SEMOD_JPLHORA_DEFAULT = 3,
4847
- SEMOD_NDELTAT = 5,
4848
- SEMOD_DELTAT_STEPHENSON_MORRISON_1984 = 1,
4849
- SEMOD_DELTAT_STEPHENSON_1997 = 2,
4850
- SEMOD_DELTAT_STEPHENSON_MORRISON_2004 = 3,
4851
- SEMOD_DELTAT_ESPENAK_MEEUS_2006 = 4,
4852
- SEMOD_DELTAT_STEPHENSON_ETC_2016 = 5,
4853
- SEMOD_DELTAT_DEFAULT = 5
4535
+ export const constants: {
4536
+ OK: 0,
4537
+ ERR: -1,
4538
+ SE_AUNIT_TO_KM: 149597870.7,
4539
+ SE_AUNIT_TO_LIGHTYEAR: 0.000015812507409819728,
4540
+ SE_AUNIT_TO_PARSEC: 0.000004848136811095274,
4541
+ SE_JUL_CAL: 0,
4542
+ SE_GREG_CAL: 1,
4543
+ SE_ECL_NUT: -1,
4544
+ SE_SUN: 0,
4545
+ SE_MOON: 1,
4546
+ SE_MERCURY: 2,
4547
+ SE_VENUS: 3,
4548
+ SE_MARS: 4,
4549
+ SE_JUPITER: 5,
4550
+ SE_SATURN: 6,
4551
+ SE_URANUS: 7,
4552
+ SE_NEPTUNE: 8,
4553
+ SE_PLUTO: 9,
4554
+ SE_MEAN_NODE: 10,
4555
+ SE_TRUE_NODE: 11,
4556
+ SE_MEAN_APOG: 12,
4557
+ SE_OSCU_APOG: 13,
4558
+ SE_EARTH: 14,
4559
+ SE_CHIRON: 15,
4560
+ SE_PHOLUS: 16,
4561
+ SE_CERES: 17,
4562
+ SE_PALLAS: 18,
4563
+ SE_JUNO: 19,
4564
+ SE_VESTA: 20,
4565
+ SE_INTP_APOG: 21,
4566
+ SE_INTP_PERG: 22,
4567
+ SE_NPLANETS: 23,
4568
+ SE_PLMOON_OFFSET: 9000,
4569
+ SE_AST_OFFSET: 10000,
4570
+ SE_VARUNA: 30000,
4571
+ SE_FICT_OFFSET: 40,
4572
+ SE_FICT_OFFSET_1: 39,
4573
+ SE_FICT_MAX: 999,
4574
+ SE_NFICT_ELEM: 15,
4575
+ SE_COMET_OFFSET: 1000,
4576
+ SE_NALL_NAT_POINTS: 38,
4577
+ SE_CUPIDO: 40,
4578
+ SE_HADES: 41,
4579
+ SE_ZEUS: 42,
4580
+ SE_KRONOS: 43,
4581
+ SE_APOLLON: 44,
4582
+ SE_ADMETOS: 45,
4583
+ SE_VULKANUS: 46,
4584
+ SE_POSEIDON: 47,
4585
+ SE_ISIS: 48,
4586
+ SE_NIBIRU: 49,
4587
+ SE_HARRINGTON: 50,
4588
+ SE_NEPTUNE_LEVERRIER: 51,
4589
+ SE_NEPTUNE_ADAMS: 52,
4590
+ SE_PLUTO_LOWELL: 53,
4591
+ SE_PLUTO_PICKERING: 54,
4592
+ SE_VULCAN: 55,
4593
+ SE_WHITE_MOON: 56,
4594
+ SE_PROSERPINA: 57,
4595
+ SE_WALDEMATH: 58,
4596
+ SE_FIXSTAR: -10,
4597
+ SE_ASC: 0,
4598
+ SE_MC: 1,
4599
+ SE_ARMC: 2,
4600
+ SE_VERTEX: 3,
4601
+ SE_EQUASC: 4,
4602
+ SE_COASC1: 5,
4603
+ SE_COASC2: 6,
4604
+ SE_POLASC: 7,
4605
+ SE_NASCMC: 8,
4606
+ SEFLG_JPLEPH: 1,
4607
+ SEFLG_SWIEPH: 2,
4608
+ SEFLG_MOSEPH: 4,
4609
+ SEFLG_HELCTR: 8,
4610
+ SEFLG_TRUEPOS: 16,
4611
+ SEFLG_J2000: 32,
4612
+ SEFLG_NONUT: 64,
4613
+ SEFLG_SPEED3: 128,
4614
+ SEFLG_SPEED: 256,
4615
+ SEFLG_NOGDEFL: 512,
4616
+ SEFLG_NOABERR: 1024,
4617
+ SEFLG_ASTROMETRIC: 1536,
4618
+ SEFLG_EQUATORIAL: 2048,
4619
+ SEFLG_XYZ: 4096,
4620
+ SEFLG_RADIANS: 8192,
4621
+ SEFLG_BARYCTR: 16384,
4622
+ SEFLG_TOPOCTR: 32768,
4623
+ SEFLG_ORBEL_AA: 32768,
4624
+ SEFLG_TROPICAL: 0,
4625
+ SEFLG_SIDEREAL: 65536,
4626
+ SEFLG_ICRS: 131072,
4627
+ SEFLG_DPSIDEPS_1980: 262144,
4628
+ SEFLG_JPLHOR: 262144,
4629
+ SEFLG_JPLHOR_APPROX: 524288,
4630
+ SEFLG_CENTER_BODY: 1048576,
4631
+ SEFLG_TEST_PLMOON: 2228280,
4632
+ SE_SIDBITS: 256,
4633
+ SE_SIDBIT_ECL_T0: 256,
4634
+ SE_SIDBIT_SSY_PLANE: 512,
4635
+ SE_SIDBIT_USER_UT: 1024,
4636
+ SE_SIDBIT_ECL_DATE: 2048,
4637
+ SE_SIDBIT_NO_PREC_OFFSET: 4096,
4638
+ SE_SIDBIT_PREC_ORIG: 8192,
4639
+ SE_SIDM_FAGAN_BRADLEY: 0,
4640
+ SE_SIDM_LAHIRI: 1,
4641
+ SE_SIDM_DELUCE: 2,
4642
+ SE_SIDM_RAMAN: 3,
4643
+ SE_SIDM_USHASHASHI: 4,
4644
+ SE_SIDM_KRISHNAMURTI: 5,
4645
+ SE_SIDM_DJWHAL_KHUL: 6,
4646
+ SE_SIDM_YUKTESHWAR: 7,
4647
+ SE_SIDM_JN_BHASIN: 8,
4648
+ SE_SIDM_BABYL_KUGLER1: 9,
4649
+ SE_SIDM_BABYL_KUGLER2: 10,
4650
+ SE_SIDM_BABYL_KUGLER3: 11,
4651
+ SE_SIDM_BABYL_HUBER: 12,
4652
+ SE_SIDM_BABYL_ETPSC: 13,
4653
+ SE_SIDM_ALDEBARAN_15TAU: 14,
4654
+ SE_SIDM_HIPPARCHOS: 15,
4655
+ SE_SIDM_SASSANIAN: 16,
4656
+ SE_SIDM_GALCENT_0SAG: 17,
4657
+ SE_SIDM_J2000: 18,
4658
+ SE_SIDM_J1900: 19,
4659
+ SE_SIDM_B1950: 20,
4660
+ SE_SIDM_SURYASIDDHANTA: 21,
4661
+ SE_SIDM_SURYASIDDHANTA_MSUN: 22,
4662
+ SE_SIDM_ARYABHATA: 23,
4663
+ SE_SIDM_ARYABHATA_MSUN: 24,
4664
+ SE_SIDM_SS_REVATI: 25,
4665
+ SE_SIDM_SS_CITRA: 26,
4666
+ SE_SIDM_TRUE_CITRA: 27,
4667
+ SE_SIDM_TRUE_REVATI: 28,
4668
+ SE_SIDM_TRUE_PUSHYA: 29,
4669
+ SE_SIDM_GALCENT_RGILBRAND: 30,
4670
+ SE_SIDM_GALEQU_IAU1958: 31,
4671
+ SE_SIDM_GALEQU_TRUE: 32,
4672
+ SE_SIDM_GALEQU_MULA: 33,
4673
+ SE_SIDM_GALALIGN_MARDYKS: 34,
4674
+ SE_SIDM_TRUE_MULA: 35,
4675
+ SE_SIDM_GALCENT_MULA_WILHELM: 36,
4676
+ SE_SIDM_ARYABHATA_522: 37,
4677
+ SE_SIDM_BABYL_BRITTON: 38,
4678
+ SE_SIDM_TRUE_SHEORAN: 39,
4679
+ SE_SIDM_GALCENT_COCHRANE: 40,
4680
+ SE_SIDM_GALEQU_FIORENZA: 41,
4681
+ SE_SIDM_VALENS_MOON: 42,
4682
+ SE_SIDM_LAHIRI_1940: 43,
4683
+ SE_SIDM_LAHIRI_VP285: 44,
4684
+ SE_SIDM_KRISHNAMURTI_VP291: 45,
4685
+ SE_SIDM_LAHIRI_ICRC: 46,
4686
+ SE_SIDM_USER: 255,
4687
+ SE_NSIDM_PREDEF: 47,
4688
+ SE_NODBIT_MEAN: 1,
4689
+ SE_NODBIT_OSCU: 2,
4690
+ SE_NODBIT_OSCU_BAR: 4,
4691
+ SE_NODBIT_FOPOINT: 256,
4692
+ SEFLG_DEFAULTEPH: 2,
4693
+ SE_MAX_STNAME: 256,
4694
+ SE_ECL_CENTRAL: 1,
4695
+ SE_ECL_NONCENTRAL: 2,
4696
+ SE_ECL_TOTAL: 4,
4697
+ SE_ECL_ANNULAR: 8,
4698
+ SE_ECL_PARTIAL: 16,
4699
+ SE_ECL_ANNULAR_TOTAL: 32,
4700
+ SE_ECL_HYBRID: 32,
4701
+ SE_ECL_PENUMBRAL: 64,
4702
+ SE_ECL_ALLTYPES_SOLAR: 63,
4703
+ SE_ECL_ALLTYPES_LUNAR: 84,
4704
+ SE_ECL_VISIBLE: 128,
4705
+ SE_ECL_MAX_VISIBLE: 256,
4706
+ SE_ECL_1ST_VISIBLE: 512,
4707
+ SE_ECL_PARTBEG_VISIBLE: 512,
4708
+ SE_ECL_2ND_VISIBLE: 1024,
4709
+ SE_ECL_TOTBEG_VISIBLE: 1024,
4710
+ SE_ECL_3RD_VISIBLE: 2048,
4711
+ SE_ECL_TOTEND_VISIBLE: 2048,
4712
+ SE_ECL_4TH_VISIBLE: 4096,
4713
+ SE_ECL_PARTEND_VISIBLE: 4096,
4714
+ SE_ECL_PENUMBBEG_VISIBLE: 8192,
4715
+ SE_ECL_PENUMBEND_VISIBLE: 16384,
4716
+ SE_ECL_OCC_BEG_DAYLIGHT: 8192,
4717
+ SE_ECL_OCC_END_DAYLIGHT: 16384,
4718
+ SE_ECL_ONE_TRY: 32768,
4719
+ SE_CALC_RISE: 1,
4720
+ SE_CALC_SET: 2,
4721
+ SE_CALC_MTRANSIT: 4,
4722
+ SE_CALC_ITRANSIT: 8,
4723
+ SE_BIT_DISC_CENTER: 256,
4724
+ SE_BIT_DISC_BOTTOM: 8192,
4725
+ SE_BIT_GEOCTR_NO_ECL_LAT: 128,
4726
+ SE_BIT_NO_REFRACTION: 512,
4727
+ SE_BIT_CIVIL_TWILIGHT: 1024,
4728
+ SE_BIT_NAUTIC_TWILIGHT: 2048,
4729
+ SE_BIT_ASTRO_TWILIGHT: 4096,
4730
+ SE_BIT_FIXED_DISC_SIZE: 16384,
4731
+ SE_BIT_FORCE_SLOW_METHOD: 32768,
4732
+ SE_BIT_HINDU_RISING: 896,
4733
+ SE_ECL2HOR: 0,
4734
+ SE_EQU2HOR: 1,
4735
+ SE_HOR2ECL: 0,
4736
+ SE_HOR2EQU: 1,
4737
+ SE_TRUE_TO_APP: 0,
4738
+ SE_APP_TO_TRUE: 1,
4739
+ SE_DE_NUMBER: 431,
4740
+ SE_FNAME_DE200: "de200.eph",
4741
+ SE_FNAME_DE403: "de403.eph",
4742
+ SE_FNAME_DE404: "de404.eph",
4743
+ SE_FNAME_DE405: "de405.eph",
4744
+ SE_FNAME_DE406: "de406.eph",
4745
+ SE_FNAME_DE431: "de431.eph",
4746
+ SE_FNAME_DFT: "de431.eph",
4747
+ SE_FNAME_DFT2: "de406.eph",
4748
+ SE_STARFILE_OLD: "fixstars.cat",
4749
+ SE_STARFILE: "sefstars.txt",
4750
+ SE_ASTNAMFILE: "seasnam.txt",
4751
+ SE_FICTFILE: "seorbel.txt",
4752
+ SE_SPLIT_DEG_ROUND_SEC: 1,
4753
+ SE_SPLIT_DEG_ROUND_MIN: 2,
4754
+ SE_SPLIT_DEG_ROUND_DEG: 4,
4755
+ SE_SPLIT_DEG_ZODIACAL: 8,
4756
+ SE_SPLIT_DEG_NAKSHATRA: 1024,
4757
+ SE_SPLIT_DEG_KEEP_SIGN: 16,
4758
+ SE_SPLIT_DEG_KEEP_DEG: 32,
4759
+ SE_HELIACAL_RISING: 1,
4760
+ SE_HELIACAL_SETTING: 2,
4761
+ SE_MORNING_FIRST: 1,
4762
+ SE_EVENING_LAST: 2,
4763
+ SE_EVENING_FIRST: 3,
4764
+ SE_MORNING_LAST: 4,
4765
+ SE_ACRONYCHAL_RISING: 5,
4766
+ SE_ACRONYCHAL_SETTING: 6,
4767
+ SE_COSMICAL_SETTING: 6,
4768
+ SE_HELFLAG_LONG_SEARCH: 128,
4769
+ SE_HELFLAG_HIGH_PRECISION: 256,
4770
+ SE_HELFLAG_OPTICAL_PARAMS: 512,
4771
+ SE_HELFLAG_NO_DETAILS: 1024,
4772
+ SE_HELFLAG_SEARCH_1_PERIOD: 2048,
4773
+ SE_HELFLAG_VISLIM_DARK: 4096,
4774
+ SE_HELFLAG_VISLIM_NOMOON: 8192,
4775
+ SE_HELFLAG_VISLIM_PHOTOPIC: 16384,
4776
+ SE_HELFLAG_VISLIM_SCOTOPIC: 32768,
4777
+ SE_HELFLAG_AV: 65536,
4778
+ SE_HELFLAG_AVKIND_VR: 65536,
4779
+ SE_HELFLAG_AVKIND_PTO: 131072,
4780
+ SE_HELFLAG_AVKIND_MIN7: 262144,
4781
+ SE_HELFLAG_AVKIND_MIN9: 524288,
4782
+ SE_HELFLAG_AVKIND: 983040,
4783
+ TJD_INVALID: 99999999,
4784
+ SIMULATE_VICTORVB: 1,
4785
+ SE_PHOTOPIC_FLAG: 0,
4786
+ SE_SCOTOPIC_FLAG: 1,
4787
+ SE_MIXEDOPIC_FLAG: 2,
4788
+ SE_TIDAL_DE200: -23.8946,
4789
+ SE_TIDAL_DE403: -25.58,
4790
+ SE_TIDAL_DE404: -25.58,
4791
+ SE_TIDAL_DE405: -25.826,
4792
+ SE_TIDAL_DE406: -25.826,
4793
+ SE_TIDAL_DE421: -25.85,
4794
+ SE_TIDAL_DE422: -25.85,
4795
+ SE_TIDAL_DE430: -25.82,
4796
+ SE_TIDAL_DE431: -25.8,
4797
+ SE_TIDAL_26: -26,
4798
+ SE_TIDAL_STEPHENSON_2016: -25.85,
4799
+ SE_TIDAL_DEFAULT: -25.8,
4800
+ SE_TIDAL_AUTOMATIC: 999999,
4801
+ SE_TIDAL_MOSEPH: -25.58,
4802
+ SE_TIDAL_SWIEPH: -25.8,
4803
+ SE_TIDAL_JPLEPH: -25.8,
4804
+ SE_DELTAT_AUTOMATIC: 0.0000000001,
4805
+ SE_MODEL_DELTAT: 0,
4806
+ SE_MODEL_PREC_LONGTERM: 1,
4807
+ SE_MODEL_PREC_SHORTTERM: 2,
4808
+ SE_MODEL_NUT: 3,
4809
+ SE_MODEL_BIAS: 4,
4810
+ SE_MODEL_JPLHOR_MODE: 5,
4811
+ SE_MODEL_JPLHORA_MODE: 6,
4812
+ SE_MODEL_SIDT: 7,
4813
+ NSE_MODELS: 8,
4814
+ SEMOD_NPREC: 11,
4815
+ SEMOD_PREC_IAU_1976: 1,
4816
+ SEMOD_PREC_LASKAR_1986: 2,
4817
+ SEMOD_PREC_WILL_EPS_LASK: 3,
4818
+ SEMOD_PREC_WILLIAMS_1994: 4,
4819
+ SEMOD_PREC_SIMON_1994: 5,
4820
+ SEMOD_PREC_IAU_2000: 6,
4821
+ SEMOD_PREC_BRETAGNON_2003: 7,
4822
+ SEMOD_PREC_IAU_2006: 8,
4823
+ SEMOD_PREC_VONDRAK_2011: 9,
4824
+ SEMOD_PREC_OWEN_1990: 10,
4825
+ SEMOD_PREC_NEWCOMB: 11,
4826
+ SEMOD_PREC_DEFAULT: 9,
4827
+ SEMOD_PREC_DEFAULT_SHORT: 9,
4828
+ SEMOD_NNUT: 5,
4829
+ SEMOD_NUT_IAU_1980: 1,
4830
+ SEMOD_NUT_IAU_CORR_1987: 2,
4831
+ SEMOD_NUT_IAU_2000A: 3,
4832
+ SEMOD_NUT_IAU_2000B: 4,
4833
+ SEMOD_NUT_WOOLARD: 5,
4834
+ SEMOD_NUT_DEFAULT: 4,
4835
+ SEMOD_NSIDT: 4,
4836
+ SEMOD_SIDT_IAU_1976: 1,
4837
+ SEMOD_SIDT_IAU_2006: 2,
4838
+ SEMOD_SIDT_IERS_CONV_2010: 3,
4839
+ SEMOD_SIDT_LONGTERM: 4,
4840
+ SEMOD_SIDT_DEFAULT: 4,
4841
+ SEMOD_NBIAS: 3,
4842
+ SEMOD_BIAS_NONE: 1,
4843
+ SEMOD_BIAS_IAU2000: 2,
4844
+ SEMOD_BIAS_IAU2006: 3,
4845
+ SEMOD_BIAS_DEFAULT: 3,
4846
+ SEMOD_NJPLHOR: 2,
4847
+ SEMOD_JPLHOR_LONG_AGREEMENT: 1,
4848
+ SEMOD_JPLHOR_DEFAULT: 1,
4849
+ SEMOD_NJPLHORA: 3,
4850
+ SEMOD_JPLHORA_1: 1,
4851
+ SEMOD_JPLHORA_2: 2,
4852
+ SEMOD_JPLHORA_3: 3,
4853
+ SEMOD_JPLHORA_DEFAULT: 3,
4854
+ SEMOD_NDELTAT: 5,
4855
+ SEMOD_DELTAT_STEPHENSON_MORRISON_1984: 1,
4856
+ SEMOD_DELTAT_STEPHENSON_1997: 2,
4857
+ SEMOD_DELTAT_STEPHENSON_MORRISON_2004: 3,
4858
+ SEMOD_DELTAT_ESPENAK_MEEUS_2006: 4,
4859
+ SEMOD_DELTAT_STEPHENSON_ETC_2016: 5,
4860
+ SEMOD_DELTAT_DEFAULT: 5
4854
4861
  }
4855
4862
  }
package/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
 
3
- module.exports = require("./build/Release/sweph.node");
4
- module.exports.constants = require("./constants.js");
5
- module.exports.sweph = module.exports;
6
- module.exports.default = module.exports;
3
+ const sweph = require("./build/Release/sweph.node");
4
+ sweph.constants = require("./constants.js");
5
+ sweph.sweph = sweph;
6
+ sweph.default = sweph;
7
+ module.exports = sweph;
package/index.mjs ADDED
@@ -0,0 +1,101 @@
1
+ import { createRequire } from 'module';
2
+ import c from "./constants.js";
3
+
4
+ const require = createRequire(import.meta.url);
5
+ export const sweph = require("./build/Release/sweph.node");
6
+
7
+ sweph.constants = c;
8
+ sweph.sweph = sweph;
9
+ sweph.default = sweph;
10
+
11
+ export default sweph
12
+ export const constants = sweph.constants
13
+ export const close = sweph.close
14
+ export const set_delta_t_userdef = sweph.set_delta_t_userdef
15
+ export const set_ephe_path = sweph.set_ephe_path
16
+ export const set_jpl_file = sweph.set_jpl_file
17
+ export const set_sid_mode = sweph.set_sid_mode
18
+ export const set_tid_acc = sweph.set_tid_acc
19
+ export const set_topo = sweph.set_topo
20
+ export const version = sweph.version
21
+ export const get_library_path = sweph.get_library_path
22
+ export const get_tid_acc = sweph.get_tid_acc
23
+ export const get_planet_name = sweph.get_planet_name
24
+ export const get_current_file_data = sweph.get_current_file_data
25
+ export const get_orbital_elements = sweph.get_orbital_elements
26
+ export const get_ayanamsa_name = sweph.get_ayanamsa_name
27
+ export const get_ayanamsa_ex_ut = sweph.get_ayanamsa_ex_ut
28
+ export const get_ayanamsa_ex = sweph.get_ayanamsa_ex
29
+ export const get_ayanamsa_ut = sweph.get_ayanamsa_ut
30
+ export const get_ayanamsa = sweph.get_ayanamsa
31
+ export const calc = sweph.calc
32
+ export const calc_ut = sweph.calc_ut
33
+ export const calc_pctr = sweph.calc_pctr
34
+ export const fixstar = sweph.fixstar
35
+ export const fixstar_ut = sweph.fixstar_ut
36
+ export const fixstar_mag = sweph.fixstar_mag
37
+ export const fixstar2 = sweph.fixstar2
38
+ export const fixstar2_ut = sweph.fixstar2_ut
39
+ export const fixstar2_mag = sweph.fixstar2_mag
40
+ export const nod_aps = sweph.nod_aps
41
+ export const nod_aps_ut = sweph.nod_aps_ut
42
+ export const orbit_max_min_true_distance = sweph.orbit_max_min_true_distance
43
+ export const sol_eclipse_when_loc = sweph.sol_eclipse_when_loc
44
+ export const sol_eclipse_when_glob = sweph.sol_eclipse_when_glob
45
+ export const sol_eclipse_how = sweph.sol_eclipse_how
46
+ export const sol_eclipse_where = sweph.sol_eclipse_where
47
+ export const lun_occult_when_loc = sweph.lun_occult_when_loc
48
+ export const lun_occult_when_glob = sweph.lun_occult_when_glob
49
+ export const lun_occult_where = sweph.lun_occult_where
50
+ export const lun_eclipse_when_loc = sweph.lun_eclipse_when_loc
51
+ export const lun_eclipse_when = sweph.lun_eclipse_when
52
+ export const lun_eclipse_how = sweph.lun_eclipse_how
53
+ export const rise_trans = sweph.rise_trans
54
+ export const rise_trans_true_hor = sweph.rise_trans_true_hor
55
+ export const pheno = sweph.pheno
56
+ export const pheno_ut = sweph.pheno_ut
57
+ export const azalt = sweph.azalt
58
+ export const azalt_rev = sweph.azalt_rev
59
+ export const refrac = sweph.refrac
60
+ export const refrac_extended = sweph.refrac_extended
61
+ export const heliacal_ut = sweph.heliacal_ut
62
+ export const vis_limit_mag = sweph.vis_limit_mag
63
+ export const heliacal_pheno_ut = sweph.heliacal_pheno_ut
64
+ export const julday = sweph.julday
65
+ export const date_conversion = sweph.date_conversion
66
+ export const revjul = sweph.revjul
67
+ export const utc_time_zone = sweph.utc_time_zone
68
+ export const utc_to_jd = sweph.utc_to_jd
69
+ export const jdet_to_utc = sweph.jdet_to_utc
70
+ export const jdut1_to_utc = sweph.jdut1_to_utc
71
+ export const time_equ = sweph.time_equ
72
+ export const lmt_to_lat = sweph.lmt_to_lat
73
+ export const lat_to_lmt = sweph.lat_to_lmt
74
+ export const deltat = sweph.deltat
75
+ export const deltat_ex = sweph.deltat_ex
76
+ export const house_name = sweph.house_name
77
+ export const houses = sweph.houses
78
+ export const houses_armc = sweph.houses_armc
79
+ export const houses_armc_ex2 = sweph.houses_armc_ex2
80
+ export const houses_ex = sweph.houses_ex
81
+ export const houses_ex2 = sweph.houses_ex2
82
+ export const house_pos = sweph.house_pos
83
+ export const gauquelin_sector = sweph.gauquelin_sector
84
+ export const sidtime = sweph.sidtime
85
+ export const sidtime0 = sweph.sidtime0
86
+ export const cotrans = sweph.cotrans
87
+ export const cotrans_sp = sweph.cotrans_sp
88
+ export const degnorm = sweph.degnorm
89
+ export const radnorm = sweph.radnorm
90
+ export const split_deg = sweph.split_deg
91
+ export const csnorm = sweph.csnorm
92
+ export const difcsn = sweph.difcsn
93
+ export const difdegn = sweph.difdegn
94
+ export const difcs2n = sweph.difcs2n
95
+ export const difdeg2n = sweph.difdeg2n
96
+ export const csroundsec = sweph.csroundsec
97
+ export const d2l = sweph.d2l
98
+ export const day_of_week = sweph.day_of_week
99
+ export const cs2timestr = sweph.cs2timestr
100
+ export const cs2lonlatstr = sweph.cs2lonlatstr
101
+ export const cs2degstr = sweph.cs2degstr
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "sweph",
3
- "version": "2.10.0-4",
3
+ "version": "2.10.0-7",
4
4
  "description": "The definitive Swiss Ephemeris bindings for Node.js",
5
5
  "main": "index.js",
6
6
  "typings": "./index.d.ts",
7
+ "exports": {
8
+ "require": "./index.js",
9
+ "import": "./index.mjs"
10
+ },
7
11
  "scripts": {
8
12
  "test": "echo \"Error: no test specified\" && exit 0"
9
13
  },
@@ -21,6 +25,6 @@
21
25
  "author": "Timotej Valentin Rojko",
22
26
  "license": "(GPL-2.0-or-later OR LGPL-3.0-or-later)",
23
27
  "devDependencies": {
24
- "eslint": "^7.31.0"
28
+ "eslint": "^8.21.0"
25
29
  }
26
30
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  constexpr std::pair<int, const char*> args[] = {
4
4
  { 1, "Expecting 1 argument: hsys" },
5
- { NUMBER, "Argument 1 should be a number - house system ID" }
5
+ { STRING, "Argument 1 should be a string - house system ID" }
6
6
  };
7
7
 
8
8
  Napi::Value sweph_house_name(const Napi::CallbackInfo& info) {
@@ -10,7 +10,8 @@ Napi::Value sweph_house_name(const Napi::CallbackInfo& info) {
10
10
  if(!sweph_type_check(args, info)) {
11
11
  return env.Null();
12
12
  }
13
- const char* name = swe_house_name(info[0].As<Napi::Number>().Int32Value());
13
+ char sys = info[0].As<Napi::String>().Utf8Value()[0];
14
+ const char* name = swe_house_name(int(sys));
14
15
  if(name == NULL) {
15
16
  Napi::TypeError::New(env, "Invalid house system").ThrowAsJavaScriptException();
16
17
  return env.Null();