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 more platforms to VIIRS EDR reader #2949

Merged
merged 7 commits into from
Oct 23, 2024
Merged
5 changes: 4 additions & 1 deletion satpy/readers/viirs_edr.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,9 +197,12 @@ def platform_name(self):
platform_path = self.filename_info["platform_shortname"]
platform_dict = {"NPP": "Suomi-NPP",
"JPSS-1": "NOAA-20",
"SNPP": "Suomi-NPP",
"J01": "NOAA-20",
"N20": "NOAA-20",
"JPSS-2": "NOAA-21",
"J02": "NOAA-21"}
"J02": "NOAA-21",
"N21": "NOAA-21"}
return platform_dict[platform_path.upper()]

def available_datasets(self, configured_datasets=None):
Expand Down
Loading