Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
artoa4argo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
argoTools
artoa4argo
Commits
27f9b4b4
Commit
27f9b4b4
authored
4 years ago
by
leprob001
Browse files
Options
Downloads
Patches
Plain Diff
The minimum x limit is now based on the launch date of the float.
parent
cac3180a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
VERSION
+1
-1
1 addition, 1 deletion
VERSION
lib/+artoa/+controller/+edit/+timeOfArrival/plot.m
+0
-9
0 additions, 9 deletions
lib/+artoa/+controller/+edit/+timeOfArrival/plot.m
lib/+artoa/+data/getToaLimits.m
+2
-2
2 additions, 2 deletions
lib/+artoa/+data/getToaLimits.m
with
3 additions
and
12 deletions
VERSION
+
1
−
1
View file @
27f9b4b4
300
\ No newline at end of file
301
\ No newline at end of file
This diff is collapsed.
Click to expand it.
lib/+artoa/+controller/+edit/+timeOfArrival/plot.m
+
0
−
9
View file @
27f9b4b4
...
...
@@ -74,15 +74,6 @@ artoaGui.editTimeOfArrival.scatterTimeOfArrival = scatter( ...
artoaGui
.
editTimeOfArrival
.
axesScatterTimeOfArrival
.
XLim
,
...
artoaGui
.
editTimeOfArrival
.
axesScatterTimeOfArrival
.
YLim
...
]
=
artoa
.
data
.
getToaLimits
(
artoaWorkspace
,
~
artoaWorkspace
.
hideDeletedDataPoints
);
% add buffer to x and y axis
xlim
=
artoaGui
.
editTimeOfArrival
.
axesScatterTimeOfArrival
.
XLim
;
xlim
(
1
)
=
xlim
(
1
)
-
10
;
xlim
(
2
)
=
xlim
(
2
)
+
10
;
artoaGui
.
editTimeOfArrival
.
axesScatterTimeOfArrival
.
XLim
=
xlim
;
ylim
=
artoaGui
.
editTimeOfArrival
.
axesScatterTimeOfArrival
.
YLim
;
ylim
(
1
)
=
ylim
(
1
)
-
60
;
ylim
(
2
)
=
ylim
(
2
)
+
60
;
artoaGui
.
editTimeOfArrival
.
axesScatterTimeOfArrival
.
YLim
=
ylim
;
artoaGui
.
editTimeOfArrival
.
axesScatterTimeOfArrival
.
CLim
=
...
[
...
...
...
This diff is collapsed.
Click to expand it.
lib/+artoa/+data/getToaLimits.m
+
2
−
2
View file @
27f9b4b4
...
...
@@ -17,8 +17,8 @@ end
selection
=
repmat
(
temperatureSelection
&
pressureSelection
,
pWorkspace
.
float
.
toaperphase
,
1
);
toaLimits
=
[
min
(
pWorkspace
.
toaData
.
toa
(
selection
)),
max
(
pWorkspace
.
toaData
.
toa
(
selection
))];
rafosLimits
=
[
min
(
pWorkspace
.
toaData
.
toaDate
(
selection
))
,
max
(
pWorkspace
.
toaData
.
toaDate
(
selection
))];
toaLimits
=
[
min
(
pWorkspace
.
toaData
.
toa
(
selection
))
-
60
,
max
(
pWorkspace
.
toaData
.
toa
(
selection
))
+
60
];
rafosLimits
=
[
artoa
.
convert
.
datevec2rd
([
pWorkspace
.
float
.
launchtime
,
0
])
-
10
,
max
(
pWorkspace
.
toaData
.
toaDate
(
selection
))
+
10
];
end
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