# 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)
问题仍然存在