Skip to content

Commit

Permalink
bug(ddt): bbox
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoisot committed Nov 14, 2024
1 parent 95fca51 commit 97b56cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boundingbox.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@ end
function boundingbox(fc::Vector{Tuple{F,F}}; kwargs...) where {F <: AbstractFloat}
lons = [c[1] for c in fc]
lats = [c[2] for c in fc]
return _padbbox(extrema(lons)..., extrema(lats)..., kwargs...)
return _padbbox(extrema(lons)..., extrema(lats)...; kwargs...)
end

0 comments on commit 97b56cf

Please sign in to comment.