From 2b24a48572fdd4ca72c371217d2e53efe5f55a4e Mon Sep 17 00:00:00 2001 From: "Christoph.Knote" Date: Tue, 20 Jun 2017 17:15:29 +0200 Subject: [PATCH] More updates. --- icartt/dataset.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/icartt/dataset.py b/icartt/dataset.py index 0ae68fc..3d64ad6 100644 --- a/icartt/dataset.py +++ b/icartt/dataset.py @@ -2,6 +2,9 @@ import datetime import sys class Variable: + ''' + A Variable is a full ICARTT variable with name, units, scale and missing value. + ''' @property def desc(self): return self.splitChar.join( [self.name, self.units, self.units ] ) @@ -12,6 +15,10 @@ class Variable: self.miss = str(miss) class Dataset: + ''' + An ICARTT dataset that can be created from scratch or read from a file, + manipulated, and then written to a file. + ''' @property def nheader(self): total = 12 + self.ndvar + 1 + self.nscom + 1 + self.nncom -- GitLab