You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/README.md
+51-1Lines changed: 51 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,4 +20,54 @@ The toolbox is designed for research, teaching, and development purposes and aim
20
20
21
21
The simulation program provides a simple command line interface for running various configurations of the INS. In can run in open-loop (dead reckoning) mode or closed-loop (full state loosely couple UKF) mode. It can simulate various scenarios such as intermittent GPS, GPS degradation, and more. The simulation is designed to be easy to use and provides a simple API for generating datsets for further navigation processing or research.
22
22
23
-
Both `strapdown-sim` and `geonav-sim` include built-in logging capabilities using the Rust `log` crate. Library functions use log macros for diagnostic output that can be captured by any logging backend.
23
+
Both `strapdown-sim` and `geonav-sim` include built-in logging capabilities using the Rust `log` crate. Library functions use log macros for diagnostic output that can be captured by any logging backend.
24
+
25
+
## Data Formats
26
+
27
+
The library supports both CSV and HDF5 file formats for input and output data.
28
+
29
+
### CSV Format
30
+
31
+
CSV is the default format for compatibility and ease of inspection. The library can read and write:
32
+
-**TestDataRecord**: Input sensor data (IMU, GNSS, magnetometer, barometer) from apps like Sensor Logger
33
+
-**NavigationResult**: Output navigation solutions (position, velocity, attitude, biases, and covariances)
0 commit comments