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

Ldds 528 #690

Merged
merged 8 commits into from
Feb 11, 2025
4 changes: 4 additions & 0 deletions config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,7 @@ https://cmr.uat.earthdata.nasa.gov:
subsetting:
variable: true
multiple_variable: true
dimension: true
output_formats:
- application/x-hdf
steps:
Expand Down Expand Up @@ -652,12 +653,15 @@ https://cmr.uat.earthdata.nasa.gov:
bbox: true
variable: true
multiple_variable: true
dimension: true
output_formats:
- application/x-hdf
reprojection: true
steps:
- image: !Env ${QUERY_CMR_IMAGE}
is_sequential: true
- image: !Env ${SUBSET_BAND_NAME_IMAGE}
is_sequential: true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this one should be marked as sequential. Sequential is for something like query-cmr with pages through CMR results and can possibly create additional work items for the same step as part of its process.

I believe you'll want to make this step optional though. For example if a user does not ask for variable subsetting I think you want to skip subset-band-name and go straight to Geoloco. I'm not sure what other operations subset-band-name performs besides variable subsetting.

Something like:

        conditional:
          exists: ['variableSubset']

Similarly are there ever cases where you would only want to perform Geoloco and not subset-band-name? You would want to add a conditional for it as well.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does the variableSubset include dimension subsetting? Or do I add something like dimensionSubset?

Copy link
Author

@cbrownstevenson cbrownstevenson Feb 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind. Found my answer.

- image: !Env ${GEOLOCO_IMAGE}

- name: giovanni-time-series-adapter
Expand Down
Loading