3 releases
0.1.2 | Aug 10, 2024 |
---|---|
0.1.1 | Aug 2, 2024 |
0.1.0 | Jul 27, 2024 |
#207 in Geospatial
44 downloads per month
Used in swisseph
2MB
36K
SLoC
libswisseph-sys
Rust system wrapper for the swisseph C library
Usage
By default, the main pub export will be the raw bindgen generated files. These bindings require the user to know what types the functions expect as many of the functions take pointers to arrays of varying sizes.
use libswisseph_sys::*;
TODO: in progress
Also included is a tuple_result mod that provides functions where all the return data is created and returned from the function itself. Error codes are also checked and the entire calculation is wrapped in a Result type so rust users can do a standard check for Ok or Err.
use libswisseph_sys::tuple_result::*;
Ephemeris files
Ephemeris files are excluded from this crate so that it fits on crates.io. There are standard standard ephemeris files located in the swisseph c library and there are many more that can be included depending on the desired calculation. For example: astroids, JPL, etc.
The ephemeris path with default to and can be set as described in the swisseph C library. See https://github.com/aloistr/swisseph/ for further details.
Example usage
use libswisseph_sys::*;
let mut xx: [f64; 6] = [0.0; 6];
let mut serr = [0; 256];
let y = 2002;
let m = 1;
let d = 1;
let h = 0.0;
let i_flag = SE_GREG_CAL as i32;
let tjd_ut = swe_julday(y, m, d, h, i_flag);
let ipl = SE_SUN as i32;
swe_calc_ut(
tjd_ut,
ipl,
SEFLG_SPEED as i32,
xx.as_mut_ptr(),
serr.as_mut_ptr(),
);
let _lng = xx[0];
let _lat = xx[1];
let _speed = xx[3];
TODO
- See if bindgen can generate more ergonomic integer types. There is some discrepancy between signed and unsigned types for functions and constants. For example, SE_ERR is -1 and it generates a i32, but SE_OK is 0 so a u32 is generated.
swisseph docs
https://www.astro.com/swisseph/swephprg.htm https://www.astro.com/ftp/swisseph/doc/swisseph.pdf
Credits
- Astrodienst / @aloistr for swisseph
- Stéphane Bressani / @stephaneworkspace for work on his wrapper and rust project
Notes
u128 warnings
Rustc u128 is not ffi safe. Any functions that reference u128 have been ignored to prevent compilation errors.
Added the swisseph c lib as submodule
git submodule add https://github.com/aloistr/swisseph.git libswisseph/
Functions not included
There is some functionality provided by the Swiss Ephemeris that are not referenced in header files and thus will not be included. Several of the files include main function, for example the swevents does event calculation and outputs to local file.
swedates also has overlapping types that causes errors so it has not been included.