CCSDS 502.0-B Orbit Parameter 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 opm 14 18 ``` 15 - opam install opm 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 opm 16 27 ``` 17 28 18 29 ## Usage ··· 21 32 match Opm.of_string kvn_text with 22 33 | Ok opm -> 23 34 Printf.printf "Object: %s\n" opm.metadata.object_name; 24 - (match opm.state with 35 + ( 36 + match opm.state with 25 37 | Opm.Cartesian sv -> 26 38 Fmt.pr "Position: (%.3f, %.3f, %.3f) km\n" sv.x sv.y sv.z 27 39 | Opm.Keplerian ke ->
+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 opm))
+2
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 (name opm) 3 4 (source (tangled gazagnaire.org/ocaml-opm)) 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
opm.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 ]