From 784f7361be81968b2a691f3037191eeb5390f360 Mon Sep 17 00:00:00 2001 From: "Christoph.Knote" Date: Sun, 23 Jul 2017 19:18:31 +0200 Subject: [PATCH] meh --- icartt/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icartt/dataset.py b/icartt/dataset.py index c25b7c3..bfa7e75 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([ str(self.VOL), str(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