-
Notifications
You must be signed in to change notification settings - Fork 295
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
Update MODIS L1b reader with additional geoinfo datasets #2946
Conversation
satpy/readers/hdfeos_base.py
Outdated
"water_present": "WaterPresent", | ||
"land_sea_mask": "Land/SeaMask", | ||
"height": "Height", | ||
"range": "Range", |
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.
I'm tempted to say these should be assigned via the file_key
in the YAML definition, but then again the way you've done this isn't disallowed... 🤷♂️
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.
I'm just copying the format of what was already there, tbh!
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2946 +/- ##
=======================================
Coverage 96.08% 96.08%
=======================================
Files 377 377
Lines 55134 55134
=======================================
Hits 52976 52976
Misses 2158 2158
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Pull Request Test Coverage Report for Build 11681775231Details
💛 - Coveralls |
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 simple enough to me. 👍
The MODIS L1b reader misses a few useful datasets from the MOD03 files. This PR adds the most commonly used of those datasets:
land_water_mask
,height
,range
,water_present
.