Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
mpim-sw
cdo
Commits
3969ca9f
Commit
3969ca9f
authored
Feb 25, 2021
by
Uwe Schulzweida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Docu update.
parent
911349fb
Pipeline
#6777
passed with stages
in 15 minutes and 41 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
NEWS
NEWS
+3
-0
src/Selbox.cc
src/Selbox.cc
+4
-2
No files found.
NEWS
View file @
3969ca9f
...
...
@@ -7,6 +7,9 @@ Version 2.0.0 (25 October 2021):
New features:
* Changed to C++14
New operators:
* fldint: field integral
Fixed bugs:
Version 1.9.10 (25 January 2021):
...
...
src/Selbox.cc
View file @
3969ca9f
...
...
@@ -948,7 +948,6 @@ window_cell(const Field &field1, Field &field2, const std::vector<long> &cellidx
void
*
Selbox
(
void
*
process
)
{
int
nrecs
;
int
varID
,
levelID
;
int
index
;
...
...
@@ -1052,8 +1051,11 @@ Selbox(void *process)
Field
field1
,
field2
;
int
tsID
=
0
;
while
(
(
nrecs
=
cdoStreamInqTimestep
(
streamID1
,
tsID
))
)
while
(
true
)
{
const
auto
nrecs
=
cdoStreamInqTimestep
(
streamID1
,
tsID
);
if
(
nrecs
==
0
)
break
;
taxisCopyTimestep
(
taxisID2
,
taxisID1
);
cdoDefTimestep
(
streamID2
,
tsID
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment