Skip to content
Snippets Groups Projects
Commit 332e64fb authored by Christoph.Knote's avatar Christoph.Knote
Browse files

meh meh

parent 784f7361
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ class Dataset:
# Scale factors (1 for most cases, except where grossly inconvenient) - comma delimited.
prnt(self.splitChar.join( [ "{:6.3f}".format(x.scale) for x in self.DVAR ]))
# Missing data indicators (This is -9999 (or -99999, etc.) for any missing data condition, except for the main time (independent) variable which is never missing) - comma delimited.
prnt(self.splitChar.join( [ "{:d}".format(x.miss) for x in self.DVAR ]))
prnt(self.splitChar.join( [ str(x.miss) for x in self.DVAR ]))
# Variable names and units (Short variable name and units are required, and optional long descriptive name, in that order, and separated by commas. If the variable is unitless, enter the keyword "none" for its units. Each short variable name and units (and optional long name) are entered on one line. The short variable name must correspond exactly to the name used for that variable as a column header, i.e., the last header line prior to start of data.).
nul = [ prnt(x.desc) for x in self.DVAR ]
if self.format == 2110:
......@@ -102,7 +102,7 @@ class Dataset:
# Scale factors (1 for most cases, except where grossly inconvenient) - comma delimited.
prnt(self.splitChar.join( [ "{:6.3f}".format(x.scale) for x in self.AUXVAR ]))
# Missing data indicators (This is -9999 (or -99999, etc.) for any missing data condition, except for the main time (independent) variable which is never missing) - comma delimited.
prnt(self.splitChar.join( [ "{:d}".format(x.miss) for x in self.AUXVAR ]))
prnt(self.splitChar.join( [ str(x.miss) for x in self.AUXVAR ]))
# Variable names and units (Short variable name and units are required, and optional long descriptive name, in that order, and separated by commas. If the variable is unitless, enter the keyword "none" for its units. Each short variable name and units (and optional long name) are entered on one line. The short variable name must correspond exactly to the name used for that variable as a column header, i.e., the last header line prior to start of data.).
nul = [ prnt(x.desc) for x in self.AUXVAR ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment