mirror of
https://github.com/nasa/trick.git
synced 2025-06-16 22:28:18 +00:00
Remove Line# from data products java table generation. Ref #497
This commit is contained in:
@ -99,7 +99,6 @@ public class PlotUtils {
|
|||||||
|
|
||||||
// build up the data reader list for reading the data and write the variable names on table
|
// build up the data reader list for reading the data and write the variable names on table
|
||||||
// variable names row
|
// variable names row
|
||||||
eachRow.append("Line#\t");
|
|
||||||
for (ProductColumn theColumn : theTable.getColumnList()) {
|
for (ProductColumn theColumn : theTable.getColumnList()) {
|
||||||
DataReader eachReader = getVarDataReader(runDir, theColumn.getVar());
|
DataReader eachReader = getVarDataReader(runDir, theColumn.getVar());
|
||||||
eachRow.append(theColumn.getVar().getShortName() + " {" + theColumn.getVar().getUnits() + "}" + "\t");
|
eachRow.append(theColumn.getVar().getShortName() + " {" + theColumn.getVar().getUnits() + "}" + "\t");
|
||||||
@ -142,7 +141,6 @@ public class PlotUtils {
|
|||||||
int lineIndex = 0;
|
int lineIndex = 0;
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
eachRow.append(lineIndex + "\t");
|
|
||||||
// get one value for each variable at a time
|
// get one value for each variable at a time
|
||||||
for (ProductColumn theColumn : theTable.getColumnList()) {
|
for (ProductColumn theColumn : theTable.getColumnList()) {
|
||||||
try {
|
try {
|
||||||
|
Reference in New Issue
Block a user