Skip to content
Snippets Groups Projects
Commit 172fb3b6 authored by Florian Obersteiner's avatar Florian Obersteiner
Browse files

added __str__ for normalComments

parent dbac459a
No related branches found
No related tags found
1 merge request!22towards release
......@@ -318,6 +318,11 @@ class StandardNormalComments(collections.UserList):
self.keywords["REVISION"].naAllowed = False
def __str__(self):
s = "\n".join(f"{str(v)}" for _, v in self.keywords.items())
return s
class Variable:
"""An ICARTT variable description with name, units, scale and missing value."""
......@@ -1028,6 +1033,11 @@ class Dataset:
if not self.isValidFileName(pathlib.Path(f).name):
warnings.warn(f"{pathlib.Path(f).name} is not a valid ICARTT filename")
else: # try to obtain dataID and locationID from file name
parts = pathlib.Path(f).name.split("_")
if len(parts) > 2:
self.dataID = parts[0]
self.dataID = parts[1]
# TODO: else -> split on "_", then the first part should be dataID, second part locationID
self.readHeader(delimiter)
......
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