Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v1.1.7
### 2025-05-21

This version of HOSS updates the hoss configuration file to include
EASE_column_index and EASE_row_index as ancillary variables for SPL2SMAP_S
Copy link
Contributor

Choose a reason for hiding this comment

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

DAS-2339 AC says SMAP L3. Is it both SPL2SMAP and SPL3SMAP?

AC:
'The requested output from HOSS should contain EASE_row_index and EASE_col_index for SMAP L3 collections and the regression tests should be successful'

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We can do it for all collections. But we decided to only implement it this way for SPL2SMAP_S. The other collections uses the index ranges from the history attribute to determine the subset index.

collection.

## v1.1.6
### 2025-02-24

Expand Down
2 changes: 1 addition & 1 deletion docker/service_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.6
1.1.7
28 changes: 28 additions & 0 deletions hoss/hoss_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
".*shot_number"
]
}

],
"MetadataOverrides": [
{
Expand Down Expand Up @@ -690,6 +691,33 @@
],
"_Description": "Include /delta_time_beg and /delta_time_end as ancillary variables."
},
{
"Applicability": {
"Mission": "SMAP",
"ShortNamePath": "SPL2SMAP_S",
"VariablePattern": "/Soil_Moisture_Retrieval_Data_1km/(.*)_1km$"

},
"Attributes": [
{
"Name": "ancillary_variables",
"Value": "/Soil_Moisture_Retrieval_Data_1km/EASE_column_index_1km,/Soil_Moisture_Retrieval_Data_1km/EASE_row_index_1km"
}
]
},
{
"Applicability": {
"Mission": "SMAP",
"ShortNamePath": "SPL2SMAP_S",
"VariablePattern": "/Soil_Moisture_Retrieval_Data_3km/(.*)_3km$"
},
"Attributes": [
{
"Name": "ancillary_variables",
"Value": "/Soil_Moisture_Retrieval_Data_3km/EASE_column_index_3km,/Soil_Moisture_Retrieval_Data_3km/EASE_row_index_3km"
}
]
},
{
"Applicability": {
"Mission": "MERRA-2",
Expand Down
Loading