1.5.1.1.7.1.10. polar2grid.readers.amsr2_l1b module¶
AMSR2 L1B files contain various parameters from the GCOM-W1 AMSR2 instrument.
This reader can be used by specifying the reader name
amsr2_l1b
to the polar2grid.sh
script.
Supported files usually have the following naming scheme:
GW1AM2_201607201808_128A_L1DLBTBR_1110110.h5
This reader’s default remapping algorithm is nearest
for nearest
neighbor resampling due to the instruments scan pattern and swath shape.
The --distance_upper_bound
flag defaults to 12.
Currently this reader provides only the following datasets:
Product Name |
Description |
---|---|
btemp_36.5v |
Brightness Temperature 36.5GHz Polarization Vertical |
btemp_36.5h |
Brightness Temperature 36.5GHz Polarization Horizontal |
btemp_89.0av |
Brightness Temperature 89.0GHz A Polarization Vertical |
btemp_89.0ah |
Brightness Temperature 89.0GHz A Polarization Horizontal |
btemp_89.0bv |
Brightness Temperature 89.0GHz B Polarization Vertical |
btemp_89.0bh |
Brightness Temperature 89.0GHz B Polarization Horizontal |
- class polar2grid.readers.amsr2_l1b.ReaderProxy(scn: Scene, user_products: list[str])[source]¶
Bases:
ReaderProxyBase
Provide Polar2Grid-specific information about this reader’s products.
- polar2grid.readers.amsr2_l1b.add_reader_argument_groups(parser: ArgumentParser, group: _ArgumentGroup | None = None) tuple[_ArgumentGroup | None, _ArgumentGroup | None] [source]¶
Add reader-specific command line arguments to an existing argument parser.
If
group
is provided then arguments are added to this group. If not, a new group is added to the parser and arguments added to this new group.