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
e7c24a4f
Commit
e7c24a4f
authored
2 years ago
by
Christoph Knote
Browse files
Options
Downloads
Patches
Plain Diff
Rename utils class
parent
dc849c0e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!24
Prep for publish
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/icartt/dataset.py
+6
-6
6 additions, 6 deletions
src/icartt/dataset.py
src/icartt/utils.py
+0
-0
0 additions, 0 deletions
src/icartt/utils.py
with
6 additions
and
6 deletions
src/icartt/dataset.py
+
6
−
6
View file @
e7c24a4f
...
...
@@ -8,7 +8,7 @@ from enum import IntEnum
import
numpy
as
np
from
.
import
ict
utils
as
utl
from
.
import
utils
DEFAULT_NUM_FORMAT
=
"
%g
"
"""
Default number format for output. Provides the `fmt` parameter of :func:`numpy.savetxt` internally.
"""
...
...
@@ -504,7 +504,7 @@ class Dataset:
if
self
.
inputFhandle
:
if
self
.
inputFhandle
.
closed
:
self
.
inputFhandle
=
open
(
self
.
inputFhandle
.
name
,
encoding
=
"
utf-8
"
)
f
=
ut
l
.
FilehandleWithLinecounter
(
self
.
inputFhandle
,
delimiter
)
f
=
ut
ils
.
FilehandleWithLinecounter
(
self
.
inputFhandle
,
delimiter
)
self
.
_readHeader
(
f
)
self
.
inputFhandle
.
close
()
...
...
@@ -569,7 +569,7 @@ class Dataset:
if
self
.
format
==
Formats
.
FFI2110
:
dmp
=
f
.
readline
()
shortname
,
units
,
standardname
,
longname
=
ut
l
.
extractVardesc
(
dmp
)
shortname
,
units
,
standardname
,
longname
=
ut
ils
.
extractVardesc
(
dmp
)
self
.
independentBoundedVariable
=
Variable
(
shortname
,
units
,
...
...
@@ -579,7 +579,7 @@ class Dataset:
)
dmp
=
f
.
readline
()
shortname
,
units
,
standardname
,
longname
=
ut
l
.
extractVardesc
(
dmp
)
shortname
,
units
,
standardname
,
longname
=
ut
ils
.
extractVardesc
(
dmp
)
self
.
independentVariable
=
Variable
(
shortname
,
units
,
...
...
@@ -612,7 +612,7 @@ class Dataset:
# the name used for that variable as a column header, i.e., the last header
# line prior to start of data.).
dmp
=
f
.
readline
()
shortname
,
units
,
standardname
,
longname
=
ut
l
.
extractVardesc
(
dmp
)
shortname
,
units
,
standardname
,
longname
=
ut
ils
.
extractVardesc
(
dmp
)
vshortname
=
[
shortname
]
vunits
=
[
units
]
vstandardname
=
[
standardname
]
...
...
@@ -620,7 +620,7 @@ class Dataset:
for
_
in
range
(
1
,
nvar
):
dmp
=
f
.
readline
()
shortname
,
units
,
standardname
,
longname
=
ut
l
.
extractVardesc
(
dmp
)
shortname
,
units
,
standardname
,
longname
=
ut
ils
.
extractVardesc
(
dmp
)
vshortname
+=
[
shortname
]
vunits
+=
[
units
]
vstandardname
+=
[
standardname
]
...
...
This diff is collapsed.
Click to expand it.
src/icartt/
ict
utils.py
→
src/icartt/utils.py
+
0
−
0
View file @
e7c24a4f
File moved
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