EDSC-3946: Pass spatial params to timeline queries #1829
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
What is the feature?
Our timeline was not matching the granule results list, because we were not passing spatial search parameters to the timeline search.
What is the Solution?
We were passing the spatial parameters to the search function, but the spatial params were not listed in the permitted parameters, so we just needed to add those values.
What areas of the application does this impact?
Timeline queries when spatial exists
Testing
This page shows a single granule returned, but in PROD it shows a solid green bar
PROD: https://search.earthdata.nasa.gov/search/granules?p=C2105091501-LAADS&pg[0][v]=f&sb[0]=-78.27539%2C38.03269%2C-75.90234%2C39.75445&qt=2023-12-07T01%3A35%3A41.733Z%2C2023-12-07T14%3A24%3A05.488Z&fi=MODIS!VIIRS&as[instrument][0]=MODIS&as[instrument][1]=VIIRS&tl=1701934148!1!!
Local fixed with this PR: http://localhost:8080/search/granules?p=C2105091501-LAADS&pg[0][v]=f&sb[0]=-78.27539%2C38.03269%2C-75.90234%2C39.75445&qt=2023-12-07T01%3A35%3A41.733Z%2C2023-12-07T14%3A24%3A05.488Z&fi=MODIS!VIIRS&as[instrument][0]=MODIS&as[instrument][1]=VIIRS&tl=1701934148!1!!
Attachments
PROD
This PR
Checklist