Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
42bee71
initial commit of seviri decoder
BenjaminRuston Sep 16, 2025
dbaecfa
finish adding dateTime and remapping all channels to common grid
BenjaminRuston Sep 17, 2025
9d213d5
add flexible resolution control by degree
BenjaminRuston Sep 17, 2025
b6f1503
getting a seg fault thinking may be obs dictionary being passed to bu…
BenjaminRuston Sep 17, 2025
1ace521
add some gross QC and use 10-degree resolution for testing
BenjaminRuston Sep 18, 2025
1bb180a
add isfinite check but still getting weird ObsValue and ObsError and …
BenjaminRuston Sep 19, 2025
a66c531
remove pdb and sys and comply with pep8
BenjaminRuston Sep 19, 2025
7fde995
back to resolution desired roughly 10km
BenjaminRuston Sep 23, 2025
b2a60cb
Merge branch 'develop' into feature/seviri_l1b_native_satpy
BenjaminRuston Oct 2, 2025
618504a
in the DimDict set channel numbers correctly
BenjaminRuston Oct 3, 2025
d686cbb
update and correct WMO BUFR satellite IDs
BenjaminRuston Oct 3, 2025
67a9b81
update channel numbers for brightness temperature channels
BenjaminRuston Oct 20, 2025
e5218ba
also correct Channel dimiension
BenjaminRuston Oct 20, 2025
76b7f30
add satellite zenith and sensor scan and ability for native grid
BenjaminRuston Oct 22, 2025
f0d9699
add sensorScanPosition to IODA output and sensorViewAngle same as zen…
BenjaminRuston Oct 23, 2025
1ce33a8
Merge branch 'develop' into feature/seviri_l1b_native_satpy
BenjaminRuston Dec 8, 2025
a64b2b6
add meteosat number to global platform attribute
BenjaminRuston Dec 11, 2025
3d277df
Merge branch 'develop' into feature/seviri_l1b_native_satpy
BenjaminRuston Dec 11, 2025
cb2e9fe
add a README with information on satpy installation
BenjaminRuston Dec 18, 2025
b1fcff9
Update src/satpy/seviri_l1b_to_ioda.py
BenjaminRuston Dec 18, 2025
0f92dfc
address comments small cleanup
BenjaminRuston Dec 18, 2025
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
12 changes: 12 additions & 0 deletions src/satpy/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Satpy converter setup guide

The `ioda-converter/src/satpy` directory contains IODA converters that use the ([Satpy](https://satpy.readthedocs.io/en/stable/index.html)) python library. To use these converters it is asssumed one can build ioda-converters:
- Use ([spack-stack](https://jointcenterforsatellitedataassimilation-jedi-docs.readthedocs-hosted.com/en/latest/using/jedi_environment/spackbuild.html)) environment
- Have a python virtual environment created via: `python3 -m venv --system-site-packages venv` followed by `source venv/bin/activate`

If one has these prerequisites they can proceed to install satpy into that virtual environment

## Configuration Guide

**satpy**
- Recommend [pip install](https://satpy.readthedocs.io/en/stable/install.html#pip-based-installation) to virtual environment
Loading