Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

better filestack performance #614

Merged
merged 25 commits into from
Mar 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
more fix grd tests
  • Loading branch information
rafaqz committed Mar 24, 2024
commit 849bf96e22563c945e7d43e1848370acf2fa3132
4 changes: 2 additions & 2 deletions test/sources/grd.jl
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ grdpath = stem * ".gri"
@testset "3d with subset" begin
geoA = grdarray[1:100, 1:50, 1:2]
filename = tempname() * ".grd"
write(filename, GRDsource, geoA)
write(filename, GRDsource(), geoA)
saved = Raster(filename)
@test size(saved) == size(geoA)
@test refdims(saved) == ()
Expand Down Expand Up @@ -239,7 +239,7 @@ grdpath = stem * ".gri"
@testset "to gdal" begin
# No Band
gdalfilename = tempname() * ".tif"
write(gdalfilename, GDALsource, grdarray[Band(1)])
write(gdalfilename, GDALsource(), grdarray[Band(1)])
gdalarray = Raster(gdalfilename)
# @test convert(ProjString, crs(gdalarray)) == convert(ProjString, EPSG(4326))
@test val(dims(gdalarray, X)) ≈ val(dims(grdarray, X))
Expand Down
Loading