Using the sentinelhub module, I am trying to visualize some Sentinel-1 data. However, SentinelHubRequest doesn’t seem to like my inputs:
from sentinelhub import SentinelHubRequest, DataSource
SentinelHubRequest.input_data(data_source=DataSource.SENTINEL1_IW)
This generates a KeyError, despite SENTINEL1_IW being an acceptable DataSource. Substituting SENTINEL2_L2A does not generate a KeyError, so there seems to be something about Sentinel-1 that it doesn’t like.
How can I request Sentinel-1 IW data from the API?