Hello there,
I’m newbe here, I’m looking for how to download soil moisture data “CGLS_SSM_V1_EUROPE”. I would like to use jupyter with python to do the job.
I tried a follow snipped:
import openeo
connection = openeo.connect(“https://openeo.vito.be/openeo/1.1”).authenticate_oidc()
ssm = connection.load_collection(
“CGLS_SSM_V1_EUROPE”,
spatial_extent={“west”: 5.6521734844315876, “south”: 43.4795957689671582, “east”: 6.1841798149571403, “north”: 43.7639111043769304},
temporal_extent=[“2024-04-01”, “2024-06-14”],
)
lets execute the process
ssm.download(“ssm.nc”)
I can not download the data, and I got this error:
OpenEoApiError: [401] TokenExchangeFailure: Authentication failed. Please login on our marketplace web https://portal.terrascope.be first, and then try authenticate again.
I need help, I’ll be very greatfull if someone can help me.
Thank a lot