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
55845199
Commit
55845199
authored
3 years ago
by
Christoph Knote
Browse files
Options
Downloads
Patches
Plain Diff
Rename license file, format .py
parent
bbd80004
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
LICENSE
+0
-0
0 additions, 0 deletions
LICENSE
docs/source/index.rst
+5
-0
5 additions, 0 deletions
docs/source/index.rst
src/icartt/dataset.py
+2
-4
2 additions, 4 deletions
src/icartt/dataset.py
with
7 additions
and
4 deletions
LICENSE
.txt
→
LICENSE
+
0
−
0
View file @
55845199
File moved
This diff is collapsed.
Click to expand it.
docs/source/index.rst
+
5
−
0
View file @
55845199
...
...
@@ -47,6 +47,11 @@ Formats
.. autoenum:: Formats
Variable types
********
.. autoenum:: VariableType
Indices and tables
###################
...
...
This diff is collapsed.
Click to expand it.
src/icartt/dataset.py
+
2
−
4
View file @
55845199
...
...
@@ -113,7 +113,7 @@ class DataStore2110(collections.UserDict):
self
.
auxvars
=
auxvars
self
.
ibvar
=
ibvar
self
.
dvars
=
dvars
def
__getitem__
(
self
,
s
=
slice
(
None
)):
return
self
.
data
[
s
]
...
...
@@ -148,9 +148,7 @@ class DataStore2110(collections.UserDict):
# stupid, but at first auxline added, nprimaryData ist a 0-dim array...
ndepData
=
self
.
data
[
ivarvalue
][
"
AUX
"
][
self
.
nauxvarname
]
ndepData
=
(
int
(
ndepData
)
if
ndepData
.
shape
==
()
else
int
(
ndepData
[
-
1
])
)
ndepData
=
int
(
ndepData
)
if
ndepData
.
shape
==
()
else
int
(
ndepData
[
-
1
])
self
.
_addDeplines
(
ivarvalue
,
raw
[
cur
:
(
cur
+
ndepData
)],
ndepData
)
...
...
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