CCSDS 503.0-B Tracking Data Message parser and serializer
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 tdm alcotest csvt) 3 + (libraries tdm alcotest csv) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))
+2 -2
test/interop/orekit/test.ml
··· 23 23 } 24 24 25 25 let index_codec = 26 - Csvt.( 26 + Csv.( 27 27 Row.( 28 28 obj 29 29 (fun ··· 60 60 |> finish)) 61 61 62 62 let parse_index () = 63 - match Csvt.decode_file index_codec (trace "index.csv") with 63 + match Csv.decode_file index_codec (trace "index.csv") with 64 64 | Ok rows -> rows 65 65 | Error e -> Alcotest.failf "CSV index: %s" e 66 66