Hi there. I’m fairly new to using Sentinelhub to automate the download of Sentinel 2 imagery. I got the downloading working using the explanation and descriptions provided on the Sentinelhub “readthedocs” page. I’m using the WcsRequest, which works great according to the examples provided. But when I try to change the spatial resolution from 60m as the example to 10m I get an erroneous raster (all pixels are 255). At 60m it works perfect. Here is an example of my code, if it helps:
wms_true_color_request = WcsRequest(data_folder=OUTPUT_LOC, data_source=DataSource.SENTINEL2_L1C,
layer=‘BANDS-S2-L1C’, bbox=test_bbox,
time=‘2017-12-15’, resx=‘10m’, resy=‘10m’, image_format=MimeType.TIFF_d32f,
instance_id=INSTANCE_ID)
Is it possible that I’m limited due to the trail version I’m currently using?
Thanks for any help,
Divan