The documentation states here that
By default, your temporary files such as cleaned spectral bands are written on disk in this output folder. You can prevent them from being written by specifying the remove_tmp argument.
But the remove_tmp kwarg prod = reader.open(path, output_path="/my/output", remove_tmp=True) does not prevent the temporary files from being created, it only makes sure that they are deleted after the product object is deleted.
Source code (notebook) here :
|
"You can prevent them from being written by specifying the `remove_tmp` argument. \n", |
The documentation states here that
But the
remove_tmpkwargprod = reader.open(path, output_path="/my/output", remove_tmp=True)does not prevent the temporary files from being created, it only makes sure that they are deleted after the product object is deleted.Source code (notebook) here :
eoreader/docs/notebooks/base.ipynb
Line 164 in 5e8cf41