good morning, I have a question about the request limit using the sentinel library in python, since in some scenarios I use a loop which makes a series of calls using the WcsRequest object
wms_true_color_request = WcsRequest(
data_collection=DataCollection.SENTINEL2_L1C,
layer='TRUE_COLOR',
bbox=bbox,
time=time_interval,
resx='1m',
resy='1m',
custom_url_params={
CustomUrlParam.SHOWLOGO: False,
CustomUrlParam.GEOMETRY: geometry_string
},
config=config,
image_format=MimeType.PNG
)
It should be noted that this process, being very long, uses these calls within a python Thread, However, this process tends to stop just when it calls the WcsRequest object. My question is, is there a limit to the use of the WcsRequest object?
I am waiting for your answers, thank you very much