Currently, the paramters x_tile_range and y_tile_range of the time series analysis submodule are set to the edges of the valid range: [-999, 9999]. While this default ensures that any tiles of interest are covered, FORCE processes all tiles, even those that have no input data.
I am not aware of a switch to limit processing to existing tiles. Leaving the default as is may cause users to wait extremely long for their results, even though not much actual computation is happening.
Probably, not setting a default at all may be preferable.
The FORCE default is [0,0] which is not helpful but at least fails fast unlike [-999,9999] which does not fail but is unlikely to be intended usage.
Currently, the paramters
x_tile_rangeandy_tile_rangeof the time series analysis submodule are set to the edges of the valid range:[-999, 9999]. While this default ensures that any tiles of interest are covered, FORCE processes all tiles, even those that have no input data.I am not aware of a switch to limit processing to existing tiles. Leaving the default as is may cause users to wait extremely long for their results, even though not much actual computation is happening.
Probably, not setting a default at all may be preferable.
The FORCE default is
[0,0]which is not helpful but at least fails fast unlike[-999,9999]which does not fail but is unlikely to be intended usage.