mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Added import for Liquivision LVD log files
Support includes cylinder pressures and works for v3.0 log files. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
09e8adf54e
commit
8136306911
5 changed files with 361 additions and 3 deletions
2
file.c
2
file.c
|
@ -357,6 +357,8 @@ static int open_by_filename(const char *filename, const char *fmt, struct memblo
|
|||
/* Cochran export comma-separated-value files */
|
||||
if (!strcasecmp(fmt, "DPT"))
|
||||
return try_to_open_csv(filename, mem, CSV_DEPTH);
|
||||
if (!strcasecmp(fmt, "LVD"))
|
||||
return try_to_open_liquivision(filename, mem);
|
||||
if (!strcasecmp(fmt, "TMP"))
|
||||
return try_to_open_csv(filename, mem, CSV_TEMP);
|
||||
if (!strcasecmp(fmt, "HP1"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue