Conversation
sjavis
force-pushed
the
batching-combine-trajectories
branch
2 times, most recently
from
August 28, 2026 10:45
7d02005 to
6aab36c
Compare
sjavis
force-pushed
the
batching-registry
branch
from
August 28, 2026 12:35
b00f608 to
66713a5
Compare
sjavis
force-pushed
the
batching-combine-trajectories
branch
from
August 28, 2026 12:35
6aab36c to
b55726d
Compare
sjavis
force-pushed
the
batching-registry
branch
from
August 28, 2026 13:22
66713a5 to
4dcd5a5
Compare
sjavis
force-pushed
the
batching-combine-trajectories
branch
from
August 28, 2026 13:22
b55726d to
ecdf9b4
Compare
sjavis
marked this pull request as ready for review
August 28, 2026 13:27
sjavis
force-pushed
the
batching-registry
branch
from
August 28, 2026 14:23
4dcd5a5 to
bf1a7ac
Compare
sjavis
force-pushed
the
batching-combine-trajectories
branch
from
August 28, 2026 14:23
ecdf9b4 to
b13d586
Compare
sjavis
force-pushed
the
batching-registry
branch
from
August 28, 2026 14:54
bf1a7ac to
8fb5fe9
Compare
sjavis
force-pushed
the
batching-combine-trajectories
branch
from
August 28, 2026 14:54
b13d586 to
8df00ba
Compare
sjavis
removed this pull request from stack #251
September 10, 2026 15:48
sjavis
force-pushed
the
batching-combine-trajectories
branch
from
September 10, 2026 15:49
8df00ba to
d50d035
Compare
sjavis
force-pushed
the
batching-registry
branch
from
September 10, 2026 15:49
8fb5fe9 to
866467d
Compare
sjavis
force-pushed
the
batching-combine-trajectories
branch
from
September 16, 2026 17:02
d50d035 to
b1667b5
Compare
sjavis
force-pushed
the
batching-registry
branch
from
September 16, 2026 17:02
866467d to
540aae6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This combines the multiple batched trajectory files into one single netcdf file.
It does this by re-indexing the trajectories since each file starts from an index of zero, padding the trajectories so they all match in length, and then combining them with
cf.aggregate.The netcdf variable names are used to match variables in
cf.aggregatebecause the default method fails due to the start and end flags both having the same standard_name.It also fixes a mistake in the padding in
to_netcdfwhich was causing issues with the concatenation.Closes #247