JuliaDataCubes / PyramidScheme.jl

Building and using pyramids for large raster data
MIT License
13 stars 1 forks source link

Add interface to compute pyramids of a given datacube #5

Open felixcremer opened 1 year ago

felixcremer commented 1 year ago

Currently the user has to compute the axes and the pyramid sizes before actually computing the pyramids. I would like to have something like:

arr = DimArray(rand(X(10000), Y(10000))
pyramids = getpyramids(arr)

This should give a list of pyramids or even a struct which holds the relevant information of the pyramid so that it can be used for plotting There should be a way to insert the keyword arguments for the fill_pyramids call into the getpyramids function call.

felixcremer commented 8 months ago

This is now done but we have to expose the keywords.