Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web editor raises warning with process definition v2.0.0-rc.1 #328

Open
ValentinaHutter opened this issue Oct 16, 2024 · 1 comment
Open

Comments

@ValentinaHutter
Copy link

In the eodc backend, we updated the process definitions to be compliant with v2.0.0. This is fine for the backend specific editor but leads to a problem with the aggregator:

The loading of the collection is still expected to return a raster-cube, while our backend specific processes such as sen2likeexpect a datacube. For the processes that are available on other backends as well, the old specification is used, so these do not show the warning.

Would it be an option to switch off this check or to allow a raster-cube when a datacube is expected?

The warning looks like this:

Screenshot 2024-10-16 080457

@ValentinaHutter
Copy link
Author

The process_graph to recreate the issue is:

{
  "process_graph": {
    "load1": {
      "process_id": "load_collection",
      "arguments": {
        "id": "SENTINEL2_L1C"
      }
    },
    "sen2": {
      "process_id": "sen2like",
      "arguments": {
        "data": {
          "from_node": "load1"
        }
      }
    },
    "save3": {
      "process_id": "save_result",
      "arguments": {
        "data": {
          "from_node": "sen2"
        },
        "format": "NETCDF"
      },
      "result": true
    }
  },
  "parameters": []
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant