Skip to content

Commit

Permalink
Update src/tracker/tracker-funcs.jl
Browse files Browse the repository at this point in the history
Remove brackets

Co-authored-by: Carlos Paniagua <[email protected]>
  • Loading branch information
danielmwatkins and cpaniaguam authored Mar 28, 2024
1 parent baa1b59 commit 4952bde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tracker/tracker-funcs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ Convert the floe properties from pixels to kilometers and square kilometers wher
function converttounits!(propdf, latlondata, colstodrop)
if nrow(propdf) == 0
dropcols!(propdf, colstodrop)
insertcols!(propdf, :latitude=>Float64[], :longitude=>Float64[], :x=>Float64, :y=>Float64)
insertcols!(propdf, :latitude=>Float64, :longitude=>Float64, :x=>Float64, :y=>Float64)

Check warning on line 536 in src/tracker/tracker-funcs.jl

View check run for this annotation

Codecov / codecov/patch

src/tracker/tracker-funcs.jl#L536

Added line #L536 was not covered by tests
return nothing
end
convertcentroid!(propdf, latlondata, colstodrop)
Expand Down

0 comments on commit 4952bde

Please sign in to comment.