Skip to content
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 reader for MWS onboard EPS-SG-A #2120

Merged
merged 27 commits into from
Sep 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
58ddaa0
Add first draft reader for MWS onboard EPS-SG-A
Jun 1, 2022
e7b4e63
Refactor frequency handling
Jun 14, 2022
05afe37
Refactor frequency handling
Jun 14, 2022
da2d843
Fix module import
Jun 14, 2022
c0d4b34
Fix resolution and add support for navigation and other aux data
Jun 23, 2022
f1b4cf1
Update list of supported readers
Jun 23, 2022
67d5bb8
Merge branch 'main' into add-epssg-mws-level1b-reader
Aug 23, 2022
af49fc8
Adding tests for the reader
Aug 23, 2022
27c5008
Remove line never used - module not meant to be run as script
Aug 23, 2022
4c0a81f
Improve and bugfix documentation, and follow feedback from reviewer
Aug 23, 2022
123c8fb
Refactor, add tests and change string representations of bands
Aug 24, 2022
6b447da
Improve test coverage and enhance attribute handling
Aug 24, 2022
f3463a6
Refactor
Aug 26, 2022
3b7bd70
Refactoring and adding test
Aug 26, 2022
8e12963
Improve test coverage
Aug 26, 2022
f739ca6
Remove redundant code, all datasets in the file will have a missing_v…
Aug 27, 2022
10e5d60
Improve documentation
Aug 27, 2022
ea6155f
Increase test coverage
Aug 27, 2022
6d94e72
Bugfix
Aug 27, 2022
c1f71ff
Bugfix - Throw exception if expected dataset is not present in file
Aug 28, 2022
953fb80
Increase test coverage
Aug 28, 2022
cba9a24
Refactor and use a mixin class with common operations among all Frequ…
Aug 31, 2022
b54129f
Move back the hash'es to the child classes
Aug 31, 2022
afd2358
Remove redundant code and add test cases and coverage
Sep 2, 2022
6183e1a
Update satpy/readers/mws_l1b.py
adybbroe Sep 2, 2022
d03fc0a
Add test coverage and test scaling the data upon reading
Sep 5, 2022
40e8461
Merge branch 'add-epssg-mws-level1b-reader' of github.com:adybbroe/sa…
Sep 5, 2022
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
23 changes: 0 additions & 23 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,29 +76,6 @@ the base Satpy installation.

.. include:: reader_table.rst

.. note::

Status description:

Defunct
Most likely the reader is not functional. If it is there is a good chance of
bugs and/or performance problems (e.g. not ported to dask/xarray yet). Future
development is unclear. Users are encouraged to contribute (see section
:doc:`dev_guide/CONTRIBUTING` and/or get help on Slack or by opening a Github issue).

Alpha
This denotes early development status. Reader is functional and implements some
or all of the nominal features. There might be bugs. Exactness of results is
not be guaranteed. Use at your own risk.

Beta
This denotes final developement status. Reader is functional and implements all
nominal features. Results should be dependable but there might be bugs. Users
are actively encouraged to test and report bugs.

Nominal
This denotes a finished status. Reader is functional and most likely no new
features will be introduced. It has been tested and there are no known bugs.

Indices and tables
==================
Expand Down
4 changes: 2 additions & 2 deletions satpy/etc/readers/mhs_l1c_aapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ reader:
name:
required: true
frequency_double_sideband:
type: !!python/name:satpy.readers.aapp_mhs_amsub_l1c.FrequencyDoubleSideBand
type: !!python/name:satpy.readers.pmw_channels_definitions.FrequencyDoubleSideBand
frequency_range:
type: !!python/name:satpy.readers.aapp_mhs_amsub_l1c.FrequencyRange
type: !!python/name:satpy.readers.pmw_channels_definitions.FrequencyRange
resolution:
polarization:
enum:
Expand Down
Loading