Default tiling in rasdaman is only applied on 2D objects
When rasdaman is started it has a certain default tiling (aligned tiling at the moment).
This tiling is applied only to 2D objects however, while 2D+ objects simply have no tiling, i.e. the whole object is one tile by default. This is probably because the tile conf has to be specified and there's no way to leave it out or to say that it should be applicable to objects of any dimensionality. The tile conf now is [0:1023,0:1023], meaning tiles will be constrained to this domain by default, unless they are larger than 4MB in which case they will be smaller.
To fix this ticket we should find a way to allow specifying a tiling scheme that is generic and will work on any object.
Change History
(5)
Complexity: |
→ Very Hard
|
Milestone: |
8.5 → Future
|
Milestone: |
Future → 9.1
|
Owner: |
changed from Dimitar Misev to Bidesh Thapaliya
|
Status: |
new → assigned
|
Resolution: |
→ fixed
|
Status: |
assigned → closed
|
The default tiling should be changed to be adaptable to the dimensionality and base type of the collection.
For 2D it would stay
[0:1023,0:1023]
, for 3D it would be[0:0,0:1023,0:1023]
, etc.