-
Notifications
You must be signed in to change notification settings - Fork 303
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
Add VII L2 netCDF-reader. #1219
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the comprehensive PR.
Don't forget to add the reader to index.rst
satpy/readers/netcdf_utils.py
Outdated
full_group_name = base_name + group_name | ||
self.file_content[full_group_name] = group_obj | ||
self._collect_attrs(full_group_name, group_obj) | ||
self.collect_metadata(full_group_name, group_obj) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gerritholl you worked with this last, would you mind checking this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. I originally introduced this for performance reasons, I observe no performance difference in the script I used to measure this back then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for checking it out
@@ -54,7 +54,6 @@ def get_test_content(self, filename, filename_info, filetype_info): | |||
- '/attr/global_attr' | |||
- 'dataset/attr/global_attr' | |||
- 'dataset/shape' | |||
- 'dataset/dimensions' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like you are reverting changes done recently here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as earlier, netcdf_utils
in thi PR is not from the latest Satpy-master.
Trigger rebuild |
Codecov Report
@@ Coverage Diff @@
## master #1219 +/- ##
==========================================
- Coverage 90.03% 90.02% -0.01%
==========================================
Files 216 218 +2
Lines 31197 31242 +45
==========================================
+ Hits 28087 28127 +40
- Misses 3110 3115 +5
Continue to review full report at Codecov.
|
Add EPS-SG VII L2 netCDF reader. Replaces PR #1074 and is based on a most recent master-branch.
flake8 satpy