hello good morning guys, I have a problem when I invoke WcsRequest since immediately from that query the python webserver crashes
here is an example:
print(DataCollection.SENTINEL2_L1C)
print(bbox)
print(time_interval)
print(geometry_string)
print(config)
print(".........init......")
wms_ndvi_request = WcsRequest(
data_collection=DataCollection.SENTINEL2_L1C,
layer='NDVI',
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
)
print(".......pass..........")
here is my output
-70.851314537592,-34.28884913749053,-70.8472481423739,-34.28506256335401
(‘2023-04-20’, ‘2023-04-24’)
POLYGON ((-70.85105945077191 -34.28853333329239, -70.84929374309499 -34.28884913749053, -70.8484491008594 -34.2876306846722, -70.8484898790654 -34.28761672809209, -70.84886952643761 -34.287505167612416, -70.84827626319301 -34.28676107806661, -70.8483179151226 -34.286559716432215, -70.8472481423739 -34.285166477050986, -70.84776167988582 -34.28506256335401, -70.84937820641751 -34.2871701808434, -70.8499282002056 -34.28702339361302, -70.8499709812803 -34.2870119751762, -70.85041179829561 -34.28728840630362, -70.851314537592 -34.28835590458149, -70.8513145283841 -34.28837652966331, -70.8512895941098 -34.288397942625316, -70.85105945077191 -34.28853333329239))
after this statement the web server shuts down as if it went through an exit() statement
I attached an image
It doesn’t show me any kind of error either, Thanks in advance