Relocate wiki from trac

This commit is contained in:
rot
2023-01-25 13:36:26 +01:00
committed by h7x4
parent 36146893e6
commit d52dbbd9be
23 changed files with 781 additions and 0 deletions

19
wiki/help/format/fcsv.md Normal file
View File

@@ -0,0 +1,19 @@
# Fluents Comma Separated Values file format description
This is the documentation of the textual (and primary) Fluents data file format. The other way to store a dataset is as a pickled Dataset object. The main differences between these methods are:
- Text based file formats are easier to read, easier to browse throgh, running commands on etc.
- Text based files are better suited for svn.
- Picled files are faster.
## File headers
Header lines must begin on the first line in the file. Header lines are of the form:
```
# keyword : value
#keyword:value
# keyword :value
```
Where an optional number of whitespace characters can be put between the different units on the line. The # sign at the start of the line is a traditional UNIX comment sign, and makes it easier for other programs to ignore those lines.