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

More updates.

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