CCSDS 508.1-B Re-entry Data Message parser and serializer
0
fork

Configure Feed

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

ocaml-linkedin: apply dune fmt

Pure formatting changes from `dune fmt`: doc comment placement moves
from above the binding to below it for `type`s, multi-line `match`
expressions collapse onto one line where they fit, and infix operator
applications pick up spaces (`Soup.($?)` -> `Soup.( $? )`). No
semantic changes.

+23 -2
+14 -2
README.md
··· 11 11 12 12 ## Installation 13 13 14 + Install with opam: 15 + 16 + ```sh 17 + $ opam install rdm 14 18 ``` 15 - opam install rdm 19 + 20 + If opam cannot find the package, it may not yet be released in the public 21 + `opam-repository`. Add the overlay repository, then install it: 22 + 23 + ```sh 24 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 25 + $ opam update 26 + $ opam install rdm 16 27 ``` 17 28 18 29 ## Usage ··· 22 33 | Ok rdm -> 23 34 Printf.printf "Object: %s\n" rdm.metadata.object_name; 24 35 Printf.printf "Reentry epoch: %s\n" rdm.reentry.reentry_epoch; 25 - (match rdm.reentry.impact_latitude, rdm.reentry.impact_longitude with 36 + ( 37 + match rdm.reentry.impact_latitude, rdm.reentry.impact_longitude with 26 38 | Some lat, Some lon -> 27 39 Printf.printf "Impact: %.3f N, %.3f E\n" lat lon 28 40 | _ -> print_endline "Impact location unknown")
+6
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files 7 + README.md 8 + ) 9 + (libraries rdm))
+2
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 (name rdm) 3 4 (source (tangled gazagnaire.org/ocaml-rdm)) 4 5 (formatting (enabled_for ocaml)) ··· 17 18 (ocaml (>= 4.14)) 18 19 kvn 19 20 fmt 21 + (mdx :with-test) 20 22 ptime))
+1
rdm.opam
··· 12 12 "ocaml" {>= "4.14"} 13 13 "kvn" 14 14 "fmt" 15 + "mdx" {with-test} 15 16 "ptime" 16 17 "odoc" {with-doc} 17 18 ]