From f808ae65661f769068bf46b373f3d39951de4ebe Mon Sep 17 00:00:00 2001 From: "Christoph.Knote" Date: Mon, 29 May 2017 19:49:57 +0200 Subject: [PATCH] sdf --- icartt/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icartt/dataset.py b/icartt/dataset.py index a3bd702..b032812 100644 --- a/icartt/dataset.py +++ b/icartt/dataset.py @@ -86,7 +86,7 @@ class Dataset: # Normal comments (SUPPORTING information: This is the place for investigators to more completely describe the data and measurement parameters. The supporting information structure is described below as a list of key word: value pairs. Specifically include here information on the platform used, the geo-location of data, measurement technique, and data revision comments. Note the non-optional information regarding uncertainty, the upper limit of detection (ULOD) and the lower limit of detection (LLOD) for each measured variable. The ULOD and LLOD are the values, in the same units as the measurements that correspond to the flags -7777s and -8888s within the data, respectively. The last line of this section should contain all the short variable names on one line. The key words in this section are written in BOLD below and must appear in this section of the header along with the relevant data listed after the colon. For key words where information is not needed or applicable, simply enter N/A.). nul = [ prnt(x) for x in self.NCOM ] # data! - nul = [ prnt(",".join(x)) for x in self.data ] + nul = [ prnt(",".join( [ str(y) for y in x ] )) for x in self.data ] def __init__(self): -- GitLab