openEO useCase Dataset for WUR
Land use, Land cover, collection, No Keywords Available, No Platform Information Available
No License Information Available
eurac research - Institute for Earth Observation |
bartolomeo.ventura@eurac.edu |
Viale Druso, 1 / Drususallee 1, eurac research, Bolzano, Autonomous Province of Bolzano, 39100, Italy |
2017-01-01T00:00:00Z 2019-12-29T00:00:00Z
WGS-84 (32721:EPSG)
Grid
install.packages("openeo")
library(openeo)
# login ----
host = "https://openeo.eurac.edu"
con = connect(host = host)
login()
# check login ---
con$isConnected()
con$isLoggedIn()
describe_account()
# load collection - save result ----
p = processes()
data = p$load_collection(id = "openEO_WUR_Usecase",
spatial_extent = list(west = -54.888571,
east = -54.709239,
south = -3.59937,
north = -3.417507),
temporal_extent = list("2017-01-01T00:00:00Z", "2019-12-29T00:00:00Z"))
result = p$save_result(data = data, format="netCDF")
# download results ----
# either directly (suitable for smaller requests)
compute_result(result,
format = "netCDF",
output_file = "openEO_WUR_Usecase.nc",
con = eurac)
# or start a batch job (suitable for larger requests)
job_id = create_job(graph = result,
title = "openEO_WUR_Usecase",
description = "openEO_WUR_Usecase",
format = "netCDF")
start_job(job = job_id)
result_list = list_results(job = job_id)
download_results(job = job_id, folder = ".")
#pip install openeo
import openeo
# login ----
euracHost = "https://openeo.eurac.edu"
eurac = openeo.connect(euracHost).authenticate_oidc(client_id="openEO_PKCE")
# load collection - save result ----
data = eurac.load_collection("openEO_WUR_Usecase",spatial_extent={'west':-54.888571,'east':-54.709239,'south':-3.59937,'north':-3.417507},temporal_extent=["2017-01-01T00:00:00Z", "2019-12-29T00:00:00Z"])
result = data.save_result(format="NetCDF")
# download results ----
# either directly (suitable for smaller requests, closes the connection after 2 minutes)
data.download("openEO_WUR_Usecase.nc",format="netCDF")
# or start a batch job (suitable for larger requests, e.g. when .download() timeouts)
job = result.create_job(title = "openEO_WUR_Usecase",description = "openEO_WUR_Usecase",out_format = "netCDF")
jobId = job.job_id
job.start_job()
jobResults = job.get_results()
jobResults.download_files('.')
Name | Description | Link | Date published | Category |
---|---|---|---|---|
openEO for ADO project | Tutorial and snippets on how to use openEO in the ADO project | Link | Sept. 15, 2021 | OpenEO |
EDP video tutorial | Presentation of edp-platform and tutorial for data analysis and processing | Link | Sept. 15, 2021 | OpenEO |
Official OpenEO documentation and project site | Official Documentation provided in the project web site for a deeper overview and introduction. | Link | June 10, 2021 | OpenEO |
OpenEO doc | Documentation for OpenEO API | Link | June 9, 2021 | OpenEO |
Eurac - OpenEO | openEO endpoint | Link | April 28, 2021 | OpenEO |