Wave project file: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
(added a more complex example) |
||
Line 15: | Line 15: | ||
Example: | Example: | ||
<pre> | <pre> | ||
file= | # Test all file types | ||
#-------------------- | |||
file=REG_SMUSI\N74235_Mue_10aV2.reg | |||
series= | file=UVF\42960.0_q_28.uvf | ||
file=WEL\DEMONA_PSI.wel | |||
series= | series=S3 _1AB: "S3_1AB" | ||
series=S3 _1ZU: "S3_1ZU" | |||
file=WEL_GISMO\BEK_WEL.asc | |||
series=BEK_NH4Bek: "NH4 concentration" | |||
file=WEL_TALSIM\TALSIM.wel | |||
series=S103_1AB | |||
file=ZRE\Olef_Zufl_gem.zre | |||
file=ZRXP\Q2.1440.zrx | |||
</pre> | </pre> | ||
Line 34: | Line 34: | ||
* if no series are specified, all series contained in the file will be loaded | * if no series are specified, all series contained in the file will be loaded | ||
* all whitespace in the project file is optional (apart from linebreaks) | * all whitespace in the project file is optional (apart from linebreaks) | ||
* lines not starting whith <code>file=</code> or <code>series=</code> are ignored (useful for adding comments) | |||
* support for this file was added in v1.6.1 (r445) | * support for this file was added in v1.6.1 (r445) | ||
[[Category:BlueM.Wave]] | [[Category:BlueM.Wave]] |
Revision as of 02:06, 18 November 2017
Wave | Download | Development
A Wave project file (*.wvp
) is a text file that can be used to quickly load multiple series from multiple files at once.
The format is as follows:
file=path\to\file1 series=series1 series=series2: optional title file=path\to\file2 series=series3: optional title series=series4
Example:
# Test all file types #-------------------- file=REG_SMUSI\N74235_Mue_10aV2.reg file=UVF\42960.0_q_28.uvf file=WEL\DEMONA_PSI.wel series=S3 _1AB: "S3_1AB" series=S3 _1ZU: "S3_1ZU" file=WEL_GISMO\BEK_WEL.asc series=BEK_NH4Bek: "NH4 concentration" file=WEL_TALSIM\TALSIM.wel series=S103_1AB file=ZRE\Olef_Zufl_gem.zre file=ZRXP\Q2.1440.zrx
Notes:
- the path to the file can be specified as an absolute path or as a relative path (relative to the project file)
- if no series are specified, all series contained in the file will be loaded
- all whitespace in the project file is optional (apart from linebreaks)
- lines not starting whith
file=
orseries=
are ignored (useful for adding comments) - support for this file was added in v1.6.1 (r445)