From 2a94bcbd8b55f2b8af238aa841f31297e854c3dc Mon Sep 17 00:00:00 2001 From: "Christoph.Knote" Date: Sun, 23 Jul 2017 18:33:56 +0200 Subject: [PATCH] Upgrades, shmupgrades --- icartt/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icartt/dataset.py b/icartt/dataset.py index 684aa8d..c25b7c3 100644 --- a/icartt/dataset.py +++ b/icartt/dataset.py @@ -78,7 +78,7 @@ class Dataset: # Mission name (usually the mission acronym). prnt(self.mission) # File volume number, number of file volumes (these integer values are used when the data require more than one file per day; for data that require only one file these values are set to 1, 1) - comma delimited. - prnt(self.splitChar.join(self.VOL, self.NVOL)) + prnt(self.splitChar.join([ self.VOL, self.NVOL ])) # UTC date when data begin, UTC date of data reduction or revision - comma delimited (yyyy, mm, dd, yyyy, mm, dd). prnt(self.splitChar.join([ datetime.datetime.strftime(x, "%Y, %m, %d") for x in [ self.dateValid, self.dateRevised ] ])) # Data Interval (This value describes the time spacing (in seconds) between consecutive data records. It is the (constant) interval between values of the independent variable. For 1 Hz data the data interval value is 1 and for 10 Hz data the value is 0.1. All intervals longer than 1 second must be reported as Start and Stop times, and the Data Interval value is set to 0. The Mid-point time is required when it is not at the average of Start and Stop times. For additional information see Section 2.5 below.). -- GitLab