Skip to content

Commit

Permalink
add support for VIIRS OSPO v2.80 IDF conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
aperrin66 committed Jan 2, 2023
1 parent d48073f commit 202afbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion geospaas_processing/converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ class SingleResultIDFConverter(IDFConverter):
(('ghrsst_l2p_viirs_jpl_sst',), lambda d: '-JPL-L2P_GHRSST-SSTskin-VIIRS' in d.entry_id),
(('ghrsst_l2p_viirs_navo_sst',), lambda d: '-NAVO-L2P_GHRSST-SST1m-VIIRS' in d.entry_id),
(('ghrsst_l2p_viirs_ospo_sst',),
lambda d: 'OSPO-L2P_GHRSST-SSTsubskin-VIIRS' in d.entry_id),
lambda d: ('OSPO-L2P_GHRSST-SSTsubskin-VIIRS' in d.entry_id or
'-STAR-L2P_GHRSST-SSTsubskin-VIIRS' in d.entry_id)),
(('ghrsst_l3c_avhrr_metop_b_sst',),
lambda d: '-OSISAF-L3C_GHRSST-SSTsubskin-AVHRR_SST_METOP_B_GLB-' in d.entry_id),
(('ghrsst_l3c_goes16_sst',),
Expand Down

0 comments on commit 202afbe

Please sign in to comment.