Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
turbulent-channel-model
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor 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
Jonas Krimmer
turbulent-channel-model
Commits
77b0c173
Commit
77b0c173
authored
1 week ago
by
Jonas Krimmer
Browse files
Options
Downloads
Patches
Plain Diff
fix: behavior for non-existent xvals.csv
parent
47f478ca
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/batch_analysis.jl
+8
-7
8 additions, 7 deletions
examples/batch_analysis.jl
with
8 additions
and
7 deletions
examples/batch_analysis.jl
+
8
−
7
View file @
77b0c173
...
...
@@ -107,17 +107,16 @@ function batch_scintillation_index(dirname)
# gather all hdf5 files in the given directory `dirname`
files
=
readdir
(
dirname
,
join
=
true
)
csvidx
=
findfirst
(
contains
(
"xvals.csv"
),
files
)
h5files
=
filter
(
x
->
splitext
(
x
)[
2
]
==
".hdf5"
,
files
)
Nf
=
length
(
h5files
)
# gather xvals from corresponding csv if possible - otherwise 1:N
df
=
if
isnothing
(
csvidx
)
DataFrame
(
:
File
=>
range
(
1
,
Nf
))
else
CSV
.
read
(
files
[
csvidx
],
DataFrame
)
# gather xvals from corresponding csv if possible - otherwise generate xvals.csv and fill with 1:N
xvals_fn
=
joinpath
(
dirname
,
"xvals.csv"
)
!
isfile
(
xvals_fn
)
&&
open
(
xvals_fn
,
"w"
)
do
fid
CSV
.
write
(
fid
,
DataFrame
(
:
file
=>
range
(
1
,
Nf
)))
end
df
=
CSV
.
read
(
xvals_fn
,
DataFrame
)
SI_est
=
zeros
(
Nf
)
SI_pw
=
zeros
(
Nf
)
...
...
@@ -133,7 +132,9 @@ function batch_scintillation_index(dirname)
# make sure the order the files are read matches the xvals in the DataFrame
xname
=
first
(
names
(
df
))
@assert
df
[
k
,
xname
]
==
metadata
[
string
(
xname
)]
if
xname
!=
"file"
@assert
df
[
k
,
xname
]
==
metadata
[
string
(
xname
)]
end
Cn²
=
metadata
[
"Cn2"
]
λ
=
metadata
[
"lambda"
]
...
...
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