1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
From: Attila Kovacs <attipaci@gmail.com>
Date: Tue, 19 Nov 2024 11:13:05 +0100
Subject: Add README locating example data
---
examples/README.md | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 examples/README.md
diff --git a/examples/README.md b/examples/README.md
new file mode 100644
index 0000000..144025e
--- /dev/null
+++ b/examples/README.md
@@ -0,0 +1,24 @@
+# CALCEPH examples
+
+This directory contains example C and FORTRAN source code and CMake files, illustrating the use of the CALCEPH library. You should be able to compile
+the examples. However, the functionality of the compiled binaries requires
+additional data files being present also. These data files are not packaged
+here due to their large size. You can obtain them directly from the upstream repository:
+
+ https://gitlab.obspm.fr/imcce_calceph/calceph/-/tree/master/examples
+
+The example files data files are:
+
+ ```
+ example1.bpc
+ example1.bsp
+ example1.dat
+ example1.mk
+ example1spk_time.bsp
+ example1.tf
+ example1.tpc
+ example2_rotangmom.dat
+ ```
+
+
+
|