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

meh

parent 2a94bcbd
No related branches found
No related tags found
No related merge requests found
......@@ -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.).
......
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