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

revised utils / simplified

parent 3e55b619
No related branches found
No related tags found
1 merge request!22towards release
......@@ -348,7 +348,7 @@ class Variable:
# Uppercase and lowercase ASCII alphanumeric characters
# and underscores.
allAreAlphaOrUnderscore = all(utl.isAsciiAlphaOrUnderscore(x) for x in name)
allAreAlphaOrUnderscore = all(re.match("[a-zA-Z0-9_]", c) for c in name)
# The first character must be a letter,
firstIsAlpha = bool(re.match("[a-zA-Z]", name[0]))
# and the name can be at most 31 characters in length.
......@@ -757,7 +757,7 @@ class Dataset:
:return: is file name valid according to ICARTT standard?
:rtype: bool
"""
allAsciiAlpha = utl.isAsciiAlpha(name)
allAsciiAlpha = all(re.match("[a-zA-Z0-9-_.]", c) for c in name)
lessThan128Characters = len(name) < 128
return allAsciiAlpha and lessThan128Characters and name.endswith(".ict")
......
# -*- coding: utf-8 -*-
import re
class FilehandleWithLinecounter:
"""a file handle that counts the number of files that were read"""
......@@ -19,16 +17,6 @@ class FilehandleWithLinecounter:
return dmp
def isAsciiAlphaOrUnderscore(x: str) -> bool:
"""check if string x contains only characters from [a-zA-Z0-9_] regex"""
return re.match("[a-zA-Z0-9_]", x)
def isAsciiAlpha(x):
"""check if string x contains only characters from [a-zA-Z0-9-_.] regex"""
return re.match("[a-zA-Z0-9-_.]", x)
def extractVardesc(line_parts: list) -> str:
"""extract variable description from ict header line parts (splitted line)"""
shortname, units, standardname, longname, *_ = line_parts + [None] * 3
......
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