We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For swe_revjul function
_void swe_revjul( double tjd, /* Julian day number */ int gregflag, /* Gregorian calendar: 1, Julian calendar: 0 */ int year, / target addresses for year, etc. */ int *month, int *day, double *hour);_
_void swe_revjul(
double tjd, /* Julian day number */
int gregflag, /* Gregorian calendar: 1, Julian calendar: 0 */
int year, / target addresses for year, etc. */
int *month, int *day, double *hour);_
Fix the output from pyswisseph, output hour, minute, seconds instead of float hour.
_revjul(...) Calculate year, month, day, hour from Julian day number. :Args: float jd, int cal=GREG_CAL jd: Julian day number cal: either GREG_CAL (gregorian) or JUL_CAL (julian) :Return: int year, int month, int day, float hour This function raises ValueError if cal is not GREG_CAL or JUL_CAL._
_revjul(...) Calculate year, month, day, hour from Julian day number.
:Args: float jd, int cal=GREG_CAL
:Return: int year, int month, int day, float hour
This function raises ValueError if cal is not GREG_CAL or JUL_CAL._
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For swe_revjul function
Fix the output from pyswisseph, output hour, minute, seconds instead of float hour.
The text was updated successfully, but these errors were encountered: