Kirill Kouzoubov
Kirill Kouzoubov
@mrocklin your understanding is correct, assuming typical tiff layout and empty caches this read will generate 5 requests, one for each `x[:100, :500]` shaped slices. If however you were to...
@ashoka1234, @omad I have a few questions/comments: 1. Do we really want 3 separate products? - What is the reason for grouping bands by resolution into separate products? I'm pretty...
@ashoka1234 1. VRT generation is a separate problem from product definition, product can reference different VRT files for different bands. You are right about `dataset.transform` property being confusing and suggesting...
@ashoka1234 that's another datacube limitation. I think the most sane way is to have exactly the same set of bands across both product and dataset definitions. - Having extra bands...
Ingest is not re-entrant. Running ingest second time on the same product while the first run is still in progress will generate duplicate datasets that only differ by uuid (computed...
Datacube is using `Path(dir).absolute()` , if `dir` is supplied as absolute path it will remain as `/g/data/...`, if however `dir` is relative to begin with if will be resolved to...
hm, wonder how `pwd` does it's thing, would be nice to be able to just `cd` into symlinked path and index relative to that without worrying about symlinks upstream.
@omad I think using `PWD` if available is sane enough, so long as you are careful to check that it matches your actual working directory (not too hard to do)....
Absolute paths in dataset documents are a bad idea and should probably generate warning when indexing. I think we need to fix those, and in case of sentinel fix the...
but when you get pass that you'll get ``` import datacube.drivers.s3.driver --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) in () ----> 1 import datacube.drivers.s3.driver /g/data/v10/public/modules/dea/20180515/lib/python3.6/site-packages/datacube/drivers/s3/driver.py in () 8 9 from...