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
26c10427
Commit
26c10427
authored
2 years ago
by
Florian Obersteiner
Browse files
Options
Downloads
Patches
Plain Diff
cosmetics
parent
96da4f77
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!22
towards release
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/icartt/dataset.py
+9
-4
9 additions, 4 deletions
src/icartt/dataset.py
with
9 additions
and
4 deletions
src/icartt/dataset.py
+
9
−
4
View file @
26c10427
...
...
@@ -352,9 +352,9 @@ class Variable:
# 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.
le
ssThan
31Chars
=
len
(
name
)
<=
31
le31Chars
=
len
(
name
)
<=
31
return
allAreAlphaOrUnderscore
and
firstIsAlpha
and
le
ssThan
31Chars
return
allAreAlphaOrUnderscore
and
firstIsAlpha
and
le31Chars
def
__init__
(
self
,
...
...
@@ -401,6 +401,9 @@ class Variable:
self
.
scale
=
scale
self
.
miss
=
miss
def
__repr__
(
self
):
return
f
"
[
{
self
.
units
}
],
{
self
.
vartype
.
name
}
"
def
__str__
(
self
):
return
self
.
desc
()
...
...
@@ -448,7 +451,7 @@ class Dataset:
if
self
.
defineMode
:
return
np
.
datetime64
(
"
NaT
"
)
# for 1001
,
its an array, for 2110 a dict
# for 1001 it
'
s an array, for 2110 a dict
if
not
isinstance
(
self
.
data
.
data
,
(
np
.
ndarray
,
dict
)):
return
np
.
datetime64
(
"
NaT
"
)
...
...
@@ -1011,8 +1014,10 @@ 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
else
:
# try to obtain dataID and locationID from file name
parts
=
pathlib
.
Path
(
f
).
name
.
split
(
"
_
"
)
# there should be at least 3 parts; data ID, location ID and revision date + file name extension
if
len
(
parts
)
>
2
:
self
.
dataID
=
parts
[
0
]
self
.
locationID
=
parts
[
1
]
...
...
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