You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Import required packagesimport{OpenEO,Formula}from'@openeo/js-client';// Connect to the back-endletconnection=awaitOpenEO.connect('https://openeo.vito.be');// ToDo: Here you need to add your authentication stepsletbuilder=awaitconnection.buildProcess();// B08 = NIR, B04 = RED, B02 = BLUEletload_collection_LUCZT2231M=builder.load_collection("SENTINEL2_L2A",{"east": 6.646557,"north": 50.82171,"south": 50.811346,"west": 6.631536},["2018-01-01","2019-01-01"],["B08","B04","B02"],{}// <-- Filters missing);letsave_result_ZZGVZ2715G=builder.save_result(load_collection_LUCZT2231M,"GTiff");// The process can be executed synchronously (see below), as batch job or as web service nowletresult=awaitconnection.computeResult(save_result_ZZGVZ2715G);
(applies to all languages)
The text was updated successfully, but these errors were encountered:
Currently, metadata-filters don't get generated:
The following process:
results in incomplete code:
(applies to all languages)
The text was updated successfully, but these errors were encountered: