CCSDS 502.0-B-3 Orbit Ephemeris Message parser and interpolator
0
fork

Configure Feed

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

csv: rename from csvt

Drops the redundant "t" suffix. Library name, opam package, module
(Csvt -> Csv), and directory all rename in lockstep. Every downstream
reference in interop tests, libraries, and docs updated.

+3 -3
+1 -1
test/interop/orekit/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries oem alcotest csvt fmt) 3 + (libraries oem alcotest csv fmt) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/orekit/test.ml
··· 24 24 } 25 25 26 26 let row_codec = 27 - Csvt.( 27 + Csv.( 28 28 Row.( 29 29 obj 30 30 (fun ··· 95 95 96 96 let parse () = 97 97 let rows = 98 - match Csvt.decode_file row_codec (trace "index.csv") with 98 + match Csv.decode_file row_codec (trace "index.csv") with 99 99 | Ok rows -> rows 100 100 | Error e -> Alcotest.failf "CSV: %s" e 101 101 in