We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b38bae2 commit b4e9e7dCopy full SHA for b4e9e7d
examples/combine_daily_rvs_1.0.jl
@@ -93,7 +93,7 @@ for file in files
93
=#
94
@info "# Processing $file"
95
d = CSV.read(file,DataFrame)
96
- if in(Date(julian2datetime(first(d.jd_drp))), df_exclude.date_to_exclude) continue end
+ if hasproperty(df_exclude,:date_to_exclude) && in(Date(julian2datetime(first(d.jd_drp))), df_exclude.date_to_exclude) continue end
97
global j += 1
98
daily[j] = d
99
end
0 commit comments