A new parameter extra_search_params has been added the CubeConfig as well as to the data store's open_data() method.
The value of extra_search_params is a dictionary that defines additional search parameters when querying the individual observations (time slices) that will form the data cube. Examples for such parameters are the keys "filter", "filter-lang", or "fields". More on this can be found in the Sentinel Hub Catalog API documentation.
Note that extra_search_params will be ignored if time_period is used
(i.e., given and not None).
A new parameter
extra_search_params
has been added theCubeConfig
as well as to the data store'sopen_data()
method.The value of
extra_search_params
is a dictionary that defines additional search parameters when querying the individual observations (time slices) that will form the data cube. Examples for such parameters are the keys"filter"
,"filter-lang"
, or"fields"
. More on this can be found in the Sentinel Hub Catalog API documentation.Note that
extra_search_params
will be ignored iftime_period
is used (i.e., given and notNone
).Closes #93.