Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Detection eddies
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
IPSL
LMD
DPAO
Detection eddies
Commits
6aef09ea
Commit
6aef09ea
authored
2 years ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Also output the list of unexpanded segments
parent
9cc717df
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gt_matlab_trajs.py
+4
-1
4 additions, 1 deletion
gt_matlab_trajs.py
with
4 additions
and
1 deletion
gt_matlab_trajs.py
+
4
−
1
View file @
6aef09ea
...
...
@@ -66,6 +66,9 @@ for node in g.vertices():
else
:
trajectories
[
g
.
vp
.
traj
[
node
]].
append
(
g
.
vp
.
name
[
node
])
with
open
(
"
trajectories.json
"
,
"
w
"
)
as
outfile
:
json
.
dump
(
trajectories
,
outfile
,
indent
=
4
)
# Setup a new trajectory that holds the expanded segments:
expanded_trajectories
=
{}
...
...
@@ -88,7 +91,7 @@ for trajectory in trajectories.values():
else
:
expanded_trajectories
[
key
].
append
(
s
)
with
open
(
"
trajectories.json
"
,
"
w
"
)
as
outfile
:
with
open
(
"
expanded_
trajectories.json
"
,
"
w
"
)
as
outfile
:
json
.
dump
(
expanded_trajectories
,
outfile
,
indent
=
4
)
print
(
f
'
Done saving json:
{
len
(
trajectories
)
}
trajectories.
'
)
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