Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MUG
visad
Commits
2cd8a68d
Commit
2cd8a68d
authored
Sep 26, 2018
by
rink
Browse files
make TrajVisibilityTimeWindow settable in parameter file.
parent
b4a87f97
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/src/visad/TrajectoryManager.java
View file @
2cd8a68d
...
...
@@ -2476,6 +2476,11 @@ public class TrajectoryManager {
trajParams
.
setTrajRefreshInterval
(
Double
.
valueOf
(
propStr
.
trim
()));
}
propStr
=
prop
.
getProperty
(
"TrajVisiblityTimeWindow"
);
if
(
propStr
!=
null
)
{
trajParams
.
setTrajVisibilityTimeWindow
(
Double
.
valueOf
(
propStr
.
trim
()));
}
propStr
=
prop
.
getProperty
(
"StartSkip"
);
if
(
propStr
!=
null
)
{
trajParams
.
setStartSkip
(
Integer
.
valueOf
(
propStr
.
trim
()));
...
...
Write
Preview
Supports
Markdown
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