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 de4b919 commit 370ea14Copy full SHA for 370ea14
ext/ArchGDALExt/archgdaldataset.jl
@@ -25,7 +25,7 @@ function DiskArrays.readblock!(b::GDALBand, aout::Matrix, r::AbstractUnitRange..
25
for chunk in eachchunk(b)
26
overlap = tuple((intersect(r[i], chunk[i]) for i in eachindex(r))...)
27
if all(x -> !isempty(x), overlap)
28
- chunk_data = AG.read(b, overlap...)
+ chunk_data = AG.read(b.filename, overlap...)
29
aout_indices = tuple((overlap[i] .- first(r[i]) .+ 1 for i in eachindex(r))...)
30
view(aout, aout_indices...) .= chunk_data
31
end
0 commit comments