Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ICARTT Python Package
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MBEES
ICARTT Python Package
Commits
96da4f77
Commit
96da4f77
authored
2 years ago
by
Florian Obersteiner
Browse files
Options
Downloads
Patches
Plain Diff
revised utils / simplified
parent
3e55b619
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!22
towards release
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/icartt/dataset.py
+2
-2
2 additions, 2 deletions
src/icartt/dataset.py
src/icartt/ictutils.py
+0
-12
0 additions, 12 deletions
src/icartt/ictutils.py
with
2 additions
and
14 deletions
src/icartt/dataset.py
+
2
−
2
View file @
96da4f77
...
...
@@ -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
"
)
...
...
This diff is collapsed.
Click to expand it.
src/icartt/ictutils.py
+
0
−
12
View file @
96da4f77
# -*- 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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment