mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5216 Uppercase all property names ("kind") in well measurement import
This fixes the problem of mixed case.
This commit is contained in:
@@ -98,7 +98,7 @@ RifWellMeasurement
|
||||
wellMeasurement.wellName = tokens[0];
|
||||
wellMeasurement.MD = parseDouble( tokens[1], "Measured Depth", lineNumber, filePath );
|
||||
wellMeasurement.date = parseDate( tokens[2], "Date", lineNumber, filePath );
|
||||
wellMeasurement.kind = tokens[3];
|
||||
wellMeasurement.kind = tokens[3].toUpper();
|
||||
wellMeasurement.value = parseDouble( tokens[4], "Value", lineNumber, filePath );
|
||||
wellMeasurement.quality = parseInt( tokens[5], "Quality", lineNumber, filePath );
|
||||
wellMeasurement.remark = tokens[6];
|
||||
|
||||
Reference in New Issue
Block a user