# Import required packages
import openeo
from openeo.processes import process
# Connect to the back-end
connection = openeo.connect("https://openeo.dataspace.copernicus.eu")
# ToDo: Here you need to authenticate with authenticate_basic() or authenticate_oidc()
loadco1 = connection.load_collection(collection_id = "SENTINEL1_GRD", spatial_extent = {"east": -6.13279592954927, "north": 43.46046556339803, "south": 43.40424444976031, "west": -6.202756085062023}, temporal_extent = ["2023-09-01", "2023-09-13"])
savere1 = loadco1.save_result(format = "NETCDF")
# The process can be executed synchronously (see below), as batch job or as web service now
result = connection.execute(savere1)
追加情報/実施したテスト:
ステージング環境でテストしています
プラグイン/拡張機能のない Firefox でテストしました。
/safe-mode でテストしましたが、問題は解決しませんでした。
言語を ```python… と指定してテストしましたが、問題は解決しませんでした。
result = connection.execu
te(savere1)
のように次の行に分割しても問題は解決しません