Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.1.1] - 2025-08-28

### Fixed

- Inherited dimensions on the output files now have their data included for panoply support.

## [v1.1.0] - 2025-08-13

### Changed
Expand Down Expand Up @@ -80,6 +86,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
for a variable as specified via an `earthdata-varinfo` configuration file.
- Initial repository setup with utility scripts and Dockerfiles.

[v1.1.1]: https://github.com/nasa/harmony-metadata-annotator/releases/tag/1.1.1
[v1.1.0]: https://github.com/nasa/harmony-metadata-annotator/releases/tag/1.1.0
[v1.0.4]: https://github.com/nasa/harmony-metadata-annotator/releases/tag/1.0.4
[v1.0.3]: https://github.com/nasa/harmony-metadata-annotator/releases/tag/1.0.3
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.0
1.1.1
2 changes: 1 addition & 1 deletion metadata_annotator/annotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def amend_in_file_metadata(
# whole `xarray.DataTree` in one operation. Making this write variables
# and group separately reduces the memory usage, but makes the
# operation slower. (See Harmony SMAP L2 Gridder implementation)
datatree.to_netcdf(output_file_name)
datatree.to_netcdf(output_file_name, write_inherited_coords=True)

Choose a reason for hiding this comment

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

Is there a JIRA to investigation/fix a better solution?

Copy link
Member Author

Choose a reason for hiding this comment

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

Nope. I'm going to do some quick investigation today if I get a chance.

Copy link
Member Author

Choose a reason for hiding this comment

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

Actually this is going to end up involved. But I've discovered why HRS is failing after this update and will have to implement configuration changes there also. before generating the regression output.



def get_matching_groups_and_variables(
Expand Down