mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Import dive number from Seabear CSV file
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
parent
0dfa448d8c
commit
cef56c6290
2 changed files with 20 additions and 0 deletions
|
@ -1517,6 +1517,19 @@ int parse_seabear_header(const char *filename, char **params, int pnr)
|
|||
f.open(QFile::ReadOnly);
|
||||
QString parseLine = f.readLine();
|
||||
|
||||
/*
|
||||
* Parse dive number from Seabear CSV header
|
||||
*/
|
||||
|
||||
while ((parseLine = f.readLine().trimmed()).length() > 0 && !f.atEnd()) {
|
||||
if (parseLine.contains("//DIVE NR: ")) {
|
||||
qDebug() << "DEBGU: " << parseLine;
|
||||
params[pnr++] = strdup("diveNro");
|
||||
params[pnr++] = strdup(parseLine.replace(QString::fromLatin1("//DIVE NR: "), QString::fromLatin1("")).toUtf8().data());
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Parse header - currently only interested in sample
|
||||
* interval and hardware version. If we have old format
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue