Astrodynamics coordinate frame transforms
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

claude: complete Err -> Error module rename across call sites

Follow up to the module rename: update the remaining callers that
still referenced [Err] (library [claude.ml{,i}], [client.ml], the test
driver [test.ml]), and fix one stray [^ e] string concatenation in
hermest's CLI that needed [Json.Error.to_string e] now that
[Json.of_string] yields a structured error.

+5 -7
-1
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (modules fuzz fuzz_coordinate) 4 3 (libraries coordinate vec3 alcobar)) 5 4 6 5 (rule
+5 -6
lib/coordinate.mli
··· 42 42 (** [gmst t] returns Greenwich Mean Sidereal Time in radians. *) 43 43 44 44 val gast : Ptime.t -> float 45 - (** [gast t] returns Greenwich Apparent Sidereal Time in radians — GMST 46 - plus the equation of the equinoxes (the nutation-driven correction 47 - that accounts for the wobble of the true equinox relative to the 48 - mean equinox). Use this when you need sidereal time aligned with 49 - the true orientation of Earth's axis rather than the mean 50 - orientation. *) 45 + (** [gast t] returns Greenwich Apparent Sidereal Time in radians — GMST plus the 46 + equation of the equinoxes (the nutation-driven correction that accounts for 47 + the wobble of the true equinox relative to the mean equinox). Use this when 48 + you need sidereal time aligned with the true orientation of Earth's axis 49 + rather than the mean orientation. *) 51 50 52 51 val julian_date_of_unix : float -> float 53 52 (** [julian_date_of_unix t] converts Unix timestamp to Julian date. *)