]> sigrok.org Git - libsigrok.git/commit
output/gnuplot: Use .dat as suggested file extension.
authorUwe Hermann <redacted>
Tue, 27 Jan 2015 08:00:34 +0000 (09:00 +0100)
committerUwe Hermann <redacted>
Tue, 27 Jan 2015 17:05:30 +0000 (18:05 +0100)
commit8656a71790133d4de42252a1e75b4209c03b4983
tree66e3235d9de353cc45495aae27c97fecddf2ed5c
parent4fb0a5f8a022b4b551f0dcac5c458c7108ea613c
output/gnuplot: Use .dat as suggested file extension.

Gnuplot doesn't have any "official" file name extension(s). It uses
(at least) two different types of files basically:

 - "control files": These can have many different somewhat commonly
   used extensions such as .gpi, .gnu, .gnuplot, .gp, .plt, .gih,
   others. These files don't contain data, only Gnuplot commands such
   as 'set yrange [75:105]', 'set ylabel "foo" offset 1', and so on.

 - "data files": This is what libsigrok reads and writes. These files
   contain actual data to be graphed by Gnuplot (with the help of a
   specially-crafted control file, see above). The data is usually in
   a tab-separated format. The common file extension is usually .dat,
   though many others are possible as well.
src/output/gnuplot.c