Skip to content

Commit 0e2ebdb

Browse files
committed
plotting in disk
1 parent 9c8e70a commit 0e2ebdb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/plotting_example.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ using YAXArrays
66
data = rand(20000, 20000)
77
dd = DimArray(data, (X(1:size(data, 1)), Y(1:size(data, 2))))
88
dd = YAXArray((X(1:size(data, 1)), Y(1:size(data, 2))), data)
9-
sc = savecube(dd, "test/data/test.zarr")
10-
pyramid = PS.Pyramid(dd)
9+
savecube(dd, "test/data/test.zarr")
10+
PS.buildpyramids("test/data/test.zarr")
11+
pyramid = PS.Pyramid("test/data/test.zarr")
12+
# pyramid = PS.Pyramid(dd)
1113

1214
fig = Figure()
1315
sli = Slider(fig[2, 1], range = LinRange(extrema(data)..., 100), startvalue = (maximum(data) + minimum(data))/2, tellwidth = false, tellheight = true)

0 commit comments

Comments
 (0)