#3464 Well Path Export. Simplified

This commit is contained in:
Bjørn Erik Jensen 2018-11-01 10:30:42 +01:00
parent 46bf5119c3
commit 64227c5a3b

View File

@ -88,10 +88,10 @@ void RicExportSelectedWellPathsFeature::writeWellPathGeometryToStream(QTextStrea
auto numberFormat = RifEclipseOutputTableDoubleFormatting(RIF_FLOAT, 2);
formatter.header(
{
RifEclipseOutputTableColumn("X", numberFormat, RIGHT),
RifEclipseOutputTableColumn("Y", numberFormat, RIGHT),
RifEclipseOutputTableColumn("TVD", numberFormat, RIGHT),
RifEclipseOutputTableColumn("MD", numberFormat, RIGHT)
{"X", numberFormat, RIGHT},
{"Y", numberFormat, RIGHT},
{"TVD", numberFormat, RIGHT},
{"MD", numberFormat, RIGHT}
});
while (currMd < endMd)