Skip to content

Commit

Permalink
Fix unit issue in the presence of duplicate rows
Browse files Browse the repository at this point in the history
  • Loading branch information
juliohm committed Sep 10, 2024
1 parent 4070c04 commit eebe1df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/desurvey.jl
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ function preprocess(collar, survey, intervals, indip, inunit)
for hole in groupby(stable, :HOLEID)
if size(hole, 1) == 1
single = copy(hole)
single.AT .+= 1
single.AT .+= oneunit(eltype(single.AT))
push!(singles, single)
end
end
Expand Down

0 comments on commit eebe1df

Please sign in to comment.