diff --git a/CHANGELOG.md b/CHANGELOG.md index c0ddaccd..b8f9513f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added ### Changed +06Feb2026: +- revive knob for aerosol-affected radiances (zero-diff when not used) + 29Jan2026: - revise ABI QC diff --git a/GEOSaana_GridComp/GEOSgsi_Coupler/CMakeLists.txt b/GEOSaana_GridComp/GEOSgsi_Coupler/CMakeLists.txt index e95e9131..fb1e59a9 100644 --- a/GEOSaana_GridComp/GEOSgsi_Coupler/CMakeLists.txt +++ b/GEOSaana_GridComp/GEOSgsi_Coupler/CMakeLists.txt @@ -8,16 +8,17 @@ set (SRCSO geos_nstmod.F90 gsi_fixture_GEOS.F90 g5_pertmod.F90 + crtm_aerosol.F90 cplr_pertmod.F90 cplr_ensemble.F90 cplr_nst.F90 cplr_timermod.F90 + cplr_Set_CRTM_Aerosol.F90 m_zeitTimer.F90 # stub_GEOSagcmPert_GridCompMod.F90 ) set (SRCSX - crtm_aerosol.F90 cplr_Set_CRTM_Aerosol.F90 crtm_cloud.F90 cplr_Set_CRTM_Cloud.F90 ) diff --git a/GEOSaana_GridComp/GEOSgsi_Coupler/crtm_aerosol.F90 b/GEOSaana_GridComp/GEOSgsi_Coupler/crtm_aerosol.F90 index 576462bf..34af012c 100644 --- a/GEOSaana_GridComp/GEOSgsi_Coupler/crtm_aerosol.F90 +++ b/GEOSaana_GridComp/GEOSgsi_Coupler/crtm_aerosol.F90 @@ -14,11 +14,10 @@ module crtm_aerosol use CRTM_Aerosol_Define, only: CRTM_Aerosol_type use CRTM_Parameters, only: DUST_AEROSOL, SEASALT_SSAM_AEROSOL, & SEASALT_SSCM1_AEROSOL, SEASALT_SSCM2_AEROSOL, & - SEASALT_SSCM3_AEROSOL, SEASALT_SSCM3_AEROSOL, & + SEASALT_SSCM3_AEROSOL, & BLACK_CARBON_AEROSOL, ORGANIC_CARBON_AEROSOL, & SULFATE_AEROSOL - use Chem_RegistryMod, only: Chem_Registry, Chem_RegistryCreate, Chem_RegistryDestroy use Chem_MieMod, only: Chem_Mie, Chem_MieCreate, Chem_MieDestroy, & Chem_MieQueryIdx, Chem_MieQuery diff --git a/GEOSaana_GridComp/GSI_GridComp/CMakeLists.txt b/GEOSaana_GridComp/GSI_GridComp/CMakeLists.txt index c341ff32..2e4f811f 100644 --- a/GEOSaana_GridComp/GSI_GridComp/CMakeLists.txt +++ b/GEOSaana_GridComp/GSI_GridComp/CMakeLists.txt @@ -81,6 +81,7 @@ set (SRCS_UTIL gridmod.F90 gscond_ad.f90 gsi_4dcouplermod.f90 + gsi_crtmcoupler_aeromod.f90 gsi_enscouplermod.f90 gsi_io.f90 gsi_nemsio_mod.f90 @@ -139,7 +140,6 @@ set (SRCS_UTIL rsearch.F90 rtlnmc_version3.f90 satthin.F90 - set_crtm_aerosolmod.f90 set_crtm_cloudmod.f90 sfc_model.f90 simpin1.f90 @@ -731,6 +731,7 @@ if (EXTENDED_SOURCE) endif () set (SRCS_STUBS + stub_crtm_aerosol.f90 stub_get_wrf_mass_ensperts.f90 stub_nstmod.f90 stub_pertmod.F90 diff --git a/GEOSaana_GridComp/GSI_GridComp/set_crtm_aerosolmod.f90 b/GEOSaana_GridComp/GSI_GridComp/cplr_gfs_crtm_aeromod.f90 similarity index 86% rename from GEOSaana_GridComp/GSI_GridComp/set_crtm_aerosolmod.f90 rename to GEOSaana_GridComp/GSI_GridComp/cplr_gfs_crtm_aeromod.f90 index 1f91d7b4..aaa2f9ee 100644 --- a/GEOSaana_GridComp/GSI_GridComp/set_crtm_aerosolmod.f90 +++ b/GEOSaana_GridComp/GSI_GridComp/cplr_gfs_crtm_aeromod.f90 @@ -1,36 +1,4 @@ -module set_crtm_aerosolmod -!$$$ module documentation block -! . . . . -! module: set_crtm_aerosolmod -! prgmmr: todling org: gmao date: 2011-06-01 -! -! abstract: module providing interface to set-crtm-aerosol procedures -! -! program history log: -! 2011-06-01 todling -! 2011-09-20 hclin - separate na and na_crtm for p25 handling -! 2019-03-21 martin - replaced blank subroutine here with that previously -! in stub_set_crtm_aerosol.f90; -! also moved eff rad for dust to size function -! -! subroutines included: -! sub Set_CRTM_Aerosol_ -! -! attributes: -! language: f90 -! machine: -! -!$$$ end documentation block - -implicit none - -private - -public Set_CRTM_Aerosol - -contains - - subroutine Set_CRTM_Aerosol ( km, na, na_crtm, aero_name, aero_conc, rh, aerosol) +subroutine Set_CRTM_Aerosol_ ( km, na, na_crtm, aero_name, aero_conc, rh, aerosol) !$$$ subprogram documentation block ! . . . . @@ -213,6 +181,5 @@ function GOCART_Aerosol_size( kk, itype, & ! Input return end function GOCART_Aerosol_size - end subroutine Set_CRTM_Aerosol + end subroutine Set_CRTM_Aerosol_ -end module set_crtm_aerosolmod diff --git a/GEOSaana_GridComp/GSI_GridComp/crtm_interface.f90 b/GEOSaana_GridComp/GSI_GridComp/crtm_interface.f90 index aa841e24..a9e455a7 100644 --- a/GEOSaana_GridComp/GSI_GridComp/crtm_interface.f90 +++ b/GEOSaana_GridComp/GSI_GridComp/crtm_interface.f90 @@ -81,6 +81,7 @@ module crtm_interface n_aerosols_jac,aerosol_names_jac,rad_obs_type,cw_cv,ql_cv use control_vectors, only: lcalc_gfdl_cfrac use ncepnems_io, only: imp_physics +use gsi_crtmcoupler_aeromod, only: Set_CRTM_Aerosol implicit none @@ -886,7 +887,8 @@ subroutine init_crtm(init_pass,mype_diaghdr,mype,nchanl,nreal,isis,obstype,radmo endif ! Initial GFDL saturation water vapor pressure tables - if (n_actual_aerosols_wk>0 .or. n_clouds_fwd_wk>0 .and. imp_physics==11) then + if (imp_physics==11) then + if (n_actual_aerosols_wk>0 .or. n_clouds_fwd_wk>0) then if (mype==0) write(6,*)myname_,':initial and load GFDL saturation water vapor pressure tables' @@ -907,6 +909,7 @@ subroutine init_crtm(init_pass,mype_diaghdr,mype,nchanl,nreal,isis,obstype,radmo des2 (length) = des2 (length - 1) desw (length) = desw (length - 1) + endif endif return @@ -1100,7 +1103,6 @@ subroutine call_crtm(obstype,obstime,data_s,nchanl,nreal,ich, & use constants, only: zero,half,one,one_tenth,fv,r0_05,r10,r100,r1000,constoz,grav,rad2deg, & sqrt_tiny_r_kind,two,three,four,five,t0c,rd,eps,rd_over_cp,rearth use constants, only: max_varname_length,pi - use set_crtm_aerosolmod, only: set_crtm_aerosol use set_crtm_cloudmod, only: set_crtm_cloud use crtm_module, only: limit_exp,o3_id,toa_pressure use obsmod, only: iadate diff --git a/GEOSaana_GridComp/GSI_GridComp/etc/gmao_global_satinfo.txt b/GEOSaana_GridComp/GSI_GridComp/etc/gmao_global_satinfo.txt index 2b49bef8..74a6a937 100644 --- a/GEOSaana_GridComp/GSI_GridComp/etc/gmao_global_satinfo.txt +++ b/GEOSaana_GridComp/GSI_GridComp/etc/gmao_global_satinfo.txt @@ -214,40 +214,40 @@ mhs_metop-a 3 1 2.500 30.000 10.000 10.000 0.000 1 1 -1 mhs_metop-a 4 1 2.000 50.000 10.000 10.000 0.000 1 1 -1 mhs_metop-a 5 1 2.000 60.000 10.000 10.000 0.000 1 1 -1 - iasi_metop-a 16 1 1.380 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 16 1 1.380 0.000 3.000 10.000 0.000 1 -1 1 iasi_metop-a 29 -1 0.810 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-a 32 -1 0.750 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-a 35 -1 0.790 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 38 1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 38 1 0.720 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 41 -1 0.740 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-a 44 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-a 47 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 49 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 49 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 50 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 51 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 51 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 53 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 55 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 55 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 56 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 57 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 59 1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 61 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 57 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 59 1 0.670 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 61 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 62 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 63 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 66 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 63 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 66 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 68 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 70 1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 72 1 1.220 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 74 1 0.780 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 70 1 0.760 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 72 1 1.220 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-a 74 1 0.780 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 76 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-a 78 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 79 1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 81 1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 79 1 0.610 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 81 1 0.690 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 82 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 83 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 83 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 84 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 85 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 85 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 86 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 87 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 87 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 89 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-a 92 -1 4.380 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-a 93 -1 3.050 0.000 2.000 10.000 0.000 1 -1 -1 @@ -256,175 +256,175 @@ iasi_metop-a 99 -1 1.330 0.000 4.000 10.000 0.000 1 -1 -1 iasi_metop-a 101 -1 1.580 0.000 3.500 10.000 0.000 1 -1 -1 iasi_metop-a 103 -1 0.930 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 104 1 1.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 106 1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 109 1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 104 1 1.670 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 106 1 0.720 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 109 1 0.570 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 110 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 111 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 113 1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 116 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 119 1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 122 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 125 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 128 1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 131 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 133 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 135 1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 138 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 141 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 144 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 146 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 148 1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 111 1 0.550 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 113 1 0.680 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 116 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 119 1 0.680 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 122 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 125 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 128 1 0.580 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 131 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 133 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 135 1 0.580 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 138 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 141 1 0.550 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 144 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 146 1 0.500 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 148 1 0.820 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 150 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 151 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 154 1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 157 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 159 1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 151 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 154 1 0.510 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 157 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 159 1 0.520 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 160 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 161 1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 163 1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 167 1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 170 1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 173 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 176 1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 161 1 0.510 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 163 1 0.760 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 167 1 0.520 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 170 1 0.570 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 173 1 0.550 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 176 1 0.690 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 179 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 180 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 185 1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 187 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 180 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 185 1 0.610 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 187 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 191 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 193 1 0.760 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-a 193 1 0.760 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-a 197 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 199 1 1.050 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-a 199 1 1.050 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-a 200 -1 0.750 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-a 202 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-a 203 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 205 1 1.300 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-a 207 1 0.690 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-a 210 1 0.930 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-a 212 1 1.490 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-a 205 1 1.300 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-a 207 1 0.690 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-a 210 1 0.930 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-a 212 1 1.490 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-a 213 -1 1.120 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 214 1 0.680 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-a 217 1 0.660 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-a 214 1 0.680 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-a 217 1 0.660 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-a 218 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 219 1 0.590 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-a 222 1 0.590 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-a 224 1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 219 1 0.590 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-a 222 1 0.590 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-a 224 1 0.690 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 225 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 226 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 226 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 228 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 230 1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 230 1 0.720 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 231 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 232 1 0.660 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 236 1 0.790 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-a 232 1 0.660 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 236 1 0.790 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-a 237 -1 0.780 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 239 1 0.740 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 243 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 246 1 0.770 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 249 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 252 1 0.860 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 254 1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-a 239 1 0.740 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 243 1 0.880 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-a 246 1 0.770 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 249 1 0.880 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-a 252 1 0.860 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-a 254 1 1.000 0.000 3.000 10.000 0.000 1 -1 1 iasi_metop-a 259 -1 0.870 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 260 1 0.850 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 262 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 260 1 0.850 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-a 262 1 0.880 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-a 265 1 0.840 0.000 2.500 10.000 0.000 1 -1 -1 iasi_metop-a 267 1 0.840 0.000 3.500 10.000 0.000 1 -1 -1 iasi_metop-a 269 1 0.840 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 275 1 0.800 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 275 1 0.800 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-a 279 -1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 282 1 0.870 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-a 282 1 0.870 0.000 3.500 10.000 0.000 1 -1 1 iasi_metop-a 285 -1 0.980 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 294 1 0.520 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 296 1 0.650 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 299 1 0.690 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-a 294 1 0.520 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-a 296 1 0.650 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-a 299 1 0.690 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-a 300 -1 0.610 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 303 1 0.600 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 306 1 0.670 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 303 1 0.600 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-a 306 1 0.670 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-a 309 -1 0.790 0.000 4.500 10.000 0.000 1 -1 -1 iasi_metop-a 313 -1 0.620 0.000 4.500 10.000 0.000 1 -1 -1 iasi_metop-a 320 -1 0.660 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-a 323 1 0.700 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 323 1 0.700 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-a 326 -1 0.650 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-a 327 1 0.620 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 329 1 0.610 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 327 1 0.620 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-a 329 1 0.610 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-a 332 -1 0.620 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 335 1 0.530 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 345 1 0.600 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-a 347 1 0.680 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 350 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 354 1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 356 1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 360 1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 335 1 0.530 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-a 345 1 0.600 0.000 4.500 10.000 0.000 1 -1 1 + iasi_metop-a 347 1 0.680 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-a 350 1 0.950 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-a 354 1 0.630 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-a 356 1 0.970 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-a 360 1 0.650 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-a 363 -1 0.980 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 366 1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-a 371 1 0.730 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-a 366 1 0.580 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-a 371 1 0.730 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-a 372 -1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 373 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 375 1 0.990 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 377 1 0.760 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 379 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 381 1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 383 1 0.770 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-a 386 1 0.620 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 389 1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-a 398 1 1.210 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 401 1 1.410 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-a 404 1 1.550 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 373 1 0.850 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-a 375 1 0.990 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-a 377 1 0.760 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-a 379 1 0.850 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-a 381 1 0.970 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-a 383 1 0.770 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-a 386 1 0.620 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-a 389 1 0.630 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-a 398 1 1.210 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-a 401 1 1.410 0.000 4.500 10.000 0.000 1 -1 1 + iasi_metop-a 404 1 1.550 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-a 405 -1 1.780 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-a 407 1 1.350 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 407 1 1.350 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-a 408 -1 1.140 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 410 1 1.690 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-a 410 1 1.690 0.000 5.000 10.000 0.000 1 -1 1 iasi_metop-a 411 -1 1.790 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-a 414 1 1.460 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-a 416 1 1.630 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-a 414 1 1.460 0.000 5.000 10.000 0.000 1 -1 1 + iasi_metop-a 416 1 1.630 0.000 5.000 10.000 0.000 1 -1 1 iasi_metop-a 418 -1 1.940 0.000 5.500 10.000 0.000 1 -1 -1 iasi_metop-a 423 -1 2.010 0.000 5.500 10.000 0.000 1 -1 -1 - iasi_metop-a 426 1 1.240 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-a 428 1 1.760 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-a 432 1 1.260 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 426 1 1.240 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-a 428 1 1.760 0.000 5.000 10.000 0.000 1 -1 1 + iasi_metop-a 432 1 1.260 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-a 433 -1 1.470 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-a 434 1 1.900 0.000 5.500 10.000 0.000 1 -1 -1 - iasi_metop-a 439 1 1.660 0.000 5.500 10.000 0.000 1 -1 -1 + iasi_metop-a 434 1 1.900 0.000 5.500 10.000 0.000 1 -1 1 + iasi_metop-a 439 1 1.660 0.000 5.500 10.000 0.000 1 -1 1 iasi_metop-a 442 -1 2.130 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 445 1 1.490 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-a 445 1 1.490 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-a 450 -1 1.520 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-a 457 1 1.550 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-a 457 1 1.550 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-a 459 -1 1.960 0.000 5.000 10.000 0.000 1 -1 -1 iasi_metop-a 472 -1 2.310 0.000 5.000 10.000 0.000 1 -1 -1 iasi_metop-a 477 -1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-a 483 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-a 509 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 515 1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 546 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 552 1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 559 1 1.840 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 566 1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 571 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 573 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 515 1 2.330 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 546 1 2.230 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 552 1 2.330 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 559 1 1.840 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 566 1 2.290 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 571 1 2.280 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 573 1 2.280 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-a 578 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-a 584 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-a 594 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-a 625 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 646 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 662 1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 668 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 646 1 2.270 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 662 1 2.240 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 668 1 2.230 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-a 705 -1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-a 739 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 756 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 756 1 2.280 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-a 797 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 867 1 2.300 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 906 1 2.150 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 921 1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 1027 1 2.370 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 1046 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 867 1 2.300 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 906 1 2.150 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 921 1 2.310 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 1027 1 2.370 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 1046 1 2.270 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-a 1090 -1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-a 1098 -1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 1121 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 1133 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1121 1 2.230 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 1133 1 2.280 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-a 1173 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 1191 1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 1194 1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1191 1 2.320 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-a 1194 1 2.310 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-a 1222 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-a 1271 1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-a 1271 1 2.320 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-a 1283 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-a 1338 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-a 1409 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 @@ -948,18 +948,18 @@ airs_aqua 362 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 airs_aqua 375 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 airs_aqua 453 -1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 475 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 484 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 497 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 528 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 587 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 672 1 0.925 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 787 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 791 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 475 1 0.950 0.000 3.000 10.000 0.000 1 -1 1 + airs_aqua 484 1 0.950 0.000 3.000 10.000 0.000 1 -1 1 + airs_aqua 497 1 0.950 0.000 3.000 10.000 0.000 1 -1 1 + airs_aqua 528 1 0.950 0.000 3.000 10.000 0.000 1 -1 1 + airs_aqua 587 1 0.900 0.000 3.000 10.000 0.000 1 -1 1 + airs_aqua 672 1 0.925 0.000 3.000 10.000 0.000 1 -1 1 + airs_aqua 787 1 0.900 0.000 3.000 10.000 0.000 1 -1 1 + airs_aqua 791 1 0.900 0.000 3.000 10.000 0.000 1 -1 1 airs_aqua 843 -1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 870 1 0.900 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 914 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 - airs_aqua 950 1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 + airs_aqua 870 1 0.900 0.000 3.000 10.000 0.000 1 -1 1 + airs_aqua 914 1 0.850 0.000 3.000 10.000 0.000 1 -1 1 + airs_aqua 950 1 0.800 0.000 3.000 10.000 0.000 1 -1 1 airs_aqua 1003 -1 0.750 0.000 3.000 10.000 0.000 1 -1 -1 airs_aqua 1012 -1 1.700 0.000 1.700 10.000 0.000 31 -1 -1 airs_aqua 1019 -1 0.750 0.000 3.000 10.000 0.000 1 -1 -1 @@ -1044,21 +1044,21 @@ airs_aqua 1826 1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 airs_aqua 1843 -1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 airs_aqua 1852 -1 2.500 0.000 4.500 10.000 0.000 1 -1 -1 - airs_aqua 1865 1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1866 1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1868 1 0.600 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1869 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1872 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1873 1 0.525 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1876 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1881 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1882 1 0.500 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1865 1 0.600 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1866 1 0.650 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1868 1 0.600 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1869 1 0.550 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1872 1 0.500 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1873 1 0.525 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1876 1 0.550 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1881 1 0.500 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1882 1 0.500 0.000 2.500 10.000 0.000 1 -1 1 airs_aqua 1883 -1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1911 1 0.555 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1917 1 0.575 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1918 1 0.550 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1924 1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 - airs_aqua 1928 1 0.700 0.000 2.500 10.000 0.000 1 -1 -1 + airs_aqua 1911 1 0.555 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1917 1 0.575 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1918 1 0.550 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1924 1 0.650 0.000 2.500 10.000 0.000 1 -1 1 + airs_aqua 1928 1 0.700 0.000 2.500 10.000 0.000 1 -1 1 airs_aqua 1937 -1 1.500 0.000 3.500 10.000 0.000 1 -1 -1 airs_aqua 1941 -1 1.500 0.000 3.500 10.000 0.000 1 -1 -1 airs_aqua 2099 -1 3.000 0.000 3.500 10.000 0.000 1 -1 -1 @@ -1127,17 +1127,17 @@ amsua_aqua 14 -1 3.750 1.400 4.500 10.000 0.000 1 -1 -1 amsua_aqua 15 -1 6.300 10.000 4.500 10.000 0.000 1 -1 -1 avhrr3_n15 3 -1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 - avhrr3_n15 4 -1 0.880 0.000 3.000 10.000 0.000 1 -1 -1 - avhrr3_n15 5 -1 0.920 0.000 3.000 10.000 0.000 1 -1 -1 + avhrr3_n15 4 -1 0.880 0.000 3.000 10.000 0.000 1 -1 1 + avhrr3_n15 5 -1 0.920 0.000 3.000 10.000 0.000 1 -1 1 avhrr3_n16 3 -1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 - avhrr3_n16 4 -1 0.880 0.000 3.000 10.000 0.000 1 -1 -1 - avhrr3_n16 5 -1 0.920 0.000 3.000 10.000 0.000 1 -1 -1 + avhrr3_n16 4 -1 0.880 0.000 3.000 10.000 0.000 1 -1 1 + avhrr3_n16 5 -1 0.920 0.000 3.000 10.000 0.000 1 -1 1 avhrr3_n17 3 -1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 - avhrr3_n17 4 -1 0.880 0.000 3.000 10.000 0.000 1 -1 -1 - avhrr3_n17 5 -1 0.920 0.000 3.000 10.000 0.000 1 -1 -1 + avhrr3_n17 4 -1 0.880 0.000 3.000 10.000 0.000 1 -1 1 + avhrr3_n17 5 -1 0.920 0.000 3.000 10.000 0.000 1 -1 1 avhrr3_n18 3 -1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 - avhrr3_n18 4 -1 1.080 0.000 3.000 10.000 0.000 1 -1 -1 - avhrr3_n18 5 -1 1.120 0.000 3.000 10.000 0.000 1 -1 -1 + avhrr3_n18 4 -1 1.080 0.000 3.000 10.000 0.000 1 -1 1 + avhrr3_n18 5 -1 1.120 0.000 3.000 10.000 0.000 1 -1 1 ssmi_f13 1 -1 1.600 0.000 6.000 10.000 0.000 1 -1 -1 ssmi_f13 2 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 ssmi_f13 3 -1 2.010 0.000 6.000 10.000 0.000 1 -1 -1 @@ -2286,40 +2286,40 @@ mhs_metop-b 3 -1 2.500 30.000 10.000 10.000 0.000 1 1 -1 mhs_metop-b 4 -1 2.000 50.000 10.000 10.000 0.000 1 1 -1 mhs_metop-b 5 -1 2.000 60.000 10.000 10.000 0.000 1 1 -1 - iasi_metop-b 16 -1 1.380 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 16 -1 1.380 0.000 3.000 10.000 0.000 1 -1 1 iasi_metop-b 29 -1 0.810 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-b 32 -1 0.750 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-b 35 -1 0.790 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 38 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 38 -1 0.720 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 41 -1 0.740 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-b 44 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-b 47 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 49 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 49 -1 0.650 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 50 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 51 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 51 -1 0.650 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 53 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 55 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 55 -1 0.640 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 56 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 57 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 59 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 61 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 57 -1 0.650 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 59 -1 0.670 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 61 -1 0.620 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 62 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 63 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 66 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 63 -1 0.620 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 66 -1 0.640 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 68 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 70 -1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 72 -1 1.220 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 74 -1 0.780 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 70 -1 0.760 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 72 -1 1.220 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-b 74 -1 0.780 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 76 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-b 78 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 79 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 81 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 79 -1 0.610 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 81 -1 0.690 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 82 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 83 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 83 -1 0.590 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 84 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 85 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 85 -1 0.590 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 86 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 87 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 87 -1 0.620 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 89 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-b 92 -1 4.380 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-b 93 -1 3.050 0.000 2.000 10.000 0.000 1 -1 -1 @@ -2328,175 +2328,175 @@ iasi_metop-b 99 -1 1.330 0.000 4.000 10.000 0.000 1 -1 -1 iasi_metop-b 101 -1 1.580 0.000 3.500 10.000 0.000 1 -1 -1 iasi_metop-b 103 -1 0.930 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 104 -1 1.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 106 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 109 -1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 104 -1 1.670 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 106 -1 0.720 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 109 -1 0.570 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 110 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 111 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 113 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 116 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 119 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 122 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 125 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 128 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 131 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 133 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 135 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 138 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 141 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 144 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 146 -1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 148 -1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 111 -1 0.550 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 113 -1 0.680 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 116 -1 0.590 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 119 -1 0.680 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 122 -1 0.590 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 125 -1 0.650 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 128 -1 0.580 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 131 -1 0.620 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 133 -1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 135 -1 0.580 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 138 -1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 141 -1 0.550 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 144 -1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 146 -1 0.500 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 148 -1 0.820 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 150 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 151 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 154 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 157 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 159 -1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 151 -1 0.620 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 154 -1 0.510 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 157 -1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 159 -1 0.520 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 160 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 161 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 163 -1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 167 -1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 170 -1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 173 -1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 176 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 161 -1 0.510 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 163 -1 0.760 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 167 -1 0.520 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 170 -1 0.570 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 173 -1 0.550 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 176 -1 0.690 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 179 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 180 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 185 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 187 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 180 -1 0.650 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 185 -1 0.610 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 187 -1 0.590 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 191 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 193 -1 0.760 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-b 193 -1 0.760 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-b 197 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 199 -1 1.050 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-b 199 -1 1.050 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-b 200 -1 0.750 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-b 202 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-b 203 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 205 -1 1.300 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-b 207 -1 0.690 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-b 210 -1 0.930 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-b 212 -1 1.490 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-b 205 -1 1.300 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-b 207 -1 0.690 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-b 210 -1 0.930 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-b 212 -1 1.490 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-b 213 -1 1.120 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 214 -1 0.680 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-b 217 -1 0.660 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-b 214 -1 0.680 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-b 217 -1 0.660 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-b 218 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 219 -1 0.590 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-b 222 -1 0.590 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-b 224 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 219 -1 0.590 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-b 222 -1 0.590 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-b 224 -1 0.690 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 225 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 226 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 226 -1 0.640 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 228 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 230 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 230 -1 0.720 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 231 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 232 -1 0.660 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 236 -1 0.790 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-b 232 -1 0.660 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 236 -1 0.790 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-b 237 -1 0.780 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 239 -1 0.740 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 243 -1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 246 -1 0.770 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 249 -1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 252 -1 0.860 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 254 -1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-b 239 -1 0.740 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 243 -1 0.880 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-b 246 -1 0.770 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 249 -1 0.880 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-b 252 -1 0.860 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-b 254 -1 1.000 0.000 3.000 10.000 0.000 1 -1 1 iasi_metop-b 259 -1 0.870 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 260 -1 0.850 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 262 -1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 260 -1 0.850 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-b 262 -1 0.880 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-b 265 -1 0.840 0.000 2.500 10.000 0.000 1 -1 -1 iasi_metop-b 267 -1 0.840 0.000 3.500 10.000 0.000 1 -1 -1 iasi_metop-b 269 -1 0.840 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 275 -1 0.800 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 275 -1 0.800 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-b 279 -1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 282 -1 0.870 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-b 282 -1 0.870 0.000 3.500 10.000 0.000 1 -1 1 iasi_metop-b 285 -1 0.980 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 294 -1 0.520 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 296 -1 0.650 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 299 -1 0.690 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-b 294 -1 0.520 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-b 296 -1 0.650 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-b 299 -1 0.690 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-b 300 -1 0.610 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 303 -1 0.600 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 306 -1 0.670 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 303 -1 0.600 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-b 306 -1 0.670 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-b 309 -1 0.790 0.000 4.500 10.000 0.000 1 -1 -1 iasi_metop-b 313 -1 0.620 0.000 4.500 10.000 0.000 1 -1 -1 iasi_metop-b 320 -1 0.660 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-b 323 -1 0.700 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 323 -1 0.700 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-b 326 -1 0.650 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-b 327 -1 0.620 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 329 -1 0.610 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 327 -1 0.620 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-b 329 -1 0.610 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-b 332 -1 0.620 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 335 -1 0.530 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 345 -1 0.600 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-b 347 -1 0.680 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 350 -1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 354 -1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 356 -1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 360 -1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 335 -1 0.530 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-b 345 -1 0.600 0.000 4.500 10.000 0.000 1 -1 1 + iasi_metop-b 347 -1 0.680 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-b 350 -1 0.950 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-b 354 -1 0.630 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-b 356 -1 0.970 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-b 360 -1 0.650 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-b 363 -1 0.980 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 366 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-b 371 -1 0.730 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-b 366 -1 0.580 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-b 371 -1 0.730 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-b 372 -1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 373 -1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 375 -1 0.990 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 377 -1 0.760 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 379 -1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 381 -1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 383 -1 0.770 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-b 386 -1 0.620 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 389 -1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-b 398 -1 1.210 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 401 -1 1.410 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-b 404 -1 1.550 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 373 -1 0.850 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-b 375 -1 0.990 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-b 377 -1 0.760 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-b 379 -1 0.850 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-b 381 -1 0.970 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-b 383 -1 0.770 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-b 386 -1 0.620 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-b 389 -1 0.630 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-b 398 -1 1.210 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-b 401 -1 1.410 0.000 4.500 10.000 0.000 1 -1 1 + iasi_metop-b 404 -1 1.550 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-b 405 -1 1.780 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-b 407 -1 1.350 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 407 -1 1.350 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-b 408 -1 1.140 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 410 -1 1.690 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-b 410 -1 1.690 0.000 5.000 10.000 0.000 1 -1 1 iasi_metop-b 411 -1 1.790 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-b 414 -1 1.460 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-b 416 -1 1.630 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-b 414 -1 1.460 0.000 5.000 10.000 0.000 1 -1 1 + iasi_metop-b 416 -1 1.630 0.000 5.000 10.000 0.000 1 -1 1 iasi_metop-b 418 -1 1.940 0.000 5.500 10.000 0.000 1 -1 -1 iasi_metop-b 423 -1 2.010 0.000 5.500 10.000 0.000 1 -1 -1 - iasi_metop-b 426 -1 1.240 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-b 428 -1 1.760 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-b 432 -1 1.260 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 426 -1 1.240 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-b 428 -1 1.760 0.000 5.000 10.000 0.000 1 -1 1 + iasi_metop-b 432 -1 1.260 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-b 433 -1 1.470 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-b 434 -1 1.900 0.000 5.500 10.000 0.000 1 -1 -1 - iasi_metop-b 439 -1 1.660 0.000 5.500 10.000 0.000 1 -1 -1 + iasi_metop-b 434 -1 1.900 0.000 5.500 10.000 0.000 1 -1 1 + iasi_metop-b 439 -1 1.660 0.000 5.500 10.000 0.000 1 -1 1 iasi_metop-b 442 -1 2.130 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 445 -1 1.490 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-b 445 -1 1.490 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-b 450 -1 1.520 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-b 457 -1 1.550 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-b 457 -1 1.550 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-b 459 -1 1.960 0.000 5.000 10.000 0.000 1 -1 -1 iasi_metop-b 472 -1 2.310 0.000 5.000 10.000 0.000 1 -1 -1 iasi_metop-b 477 -1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-b 483 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-b 509 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 515 -1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 546 -1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 552 -1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 559 -1 1.840 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 566 -1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 571 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 573 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 515 -1 2.330 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 546 -1 2.230 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 552 -1 2.330 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 559 -1 1.840 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 566 -1 2.290 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 571 -1 2.280 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 573 -1 2.280 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-b 578 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-b 584 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-b 594 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-b 625 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 646 -1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 662 -1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 668 -1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 646 -1 2.270 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 662 -1 2.240 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 668 -1 2.230 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-b 705 -1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-b 739 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 756 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 756 -1 2.280 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-b 797 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 867 -1 2.300 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 906 -1 2.150 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 921 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 1027 -1 2.370 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 1046 -1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 867 -1 2.300 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 906 -1 2.150 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 921 -1 2.310 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 1027 -1 2.370 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 1046 -1 2.270 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-b 1090 -1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-b 1098 -1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 1121 -1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 1133 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1121 -1 2.230 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 1133 -1 2.280 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-b 1173 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 1191 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 1194 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1191 -1 2.320 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-b 1194 -1 2.310 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-b 1222 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-b 1271 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-b 1271 -1 2.320 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-b 1283 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-b 1338 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-b 1409 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 @@ -3398,40 +3398,40 @@ mhs_metop-c 3 1 2.500 30.000 10.000 10.000 0.000 1 1 -1 mhs_metop-c 4 1 2.000 50.000 10.000 10.000 0.000 1 1 -1 mhs_metop-c 5 1 2.000 60.000 10.000 10.000 0.000 1 1 -1 - iasi_metop-c 16 1 1.380 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 16 1 1.380 0.000 3.000 10.000 0.000 1 -1 1 iasi_metop-c 29 -1 0.810 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-c 32 -1 0.750 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-c 35 -1 0.790 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 38 1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 38 1 0.720 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 41 -1 0.740 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-c 44 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-c 47 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 49 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 49 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 50 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 51 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 51 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 53 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 55 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 55 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 56 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 57 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 59 1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 61 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 57 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 59 1 0.670 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 61 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 62 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 63 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 66 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 63 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 66 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 68 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 70 1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 72 1 1.220 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 74 1 0.780 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 70 1 0.760 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 72 1 1.220 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-c 74 1 0.780 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 76 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-c 78 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 79 1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 81 1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 79 1 0.610 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 81 1 0.690 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 82 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 83 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 83 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 84 -1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 85 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 85 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 86 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 87 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 87 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 89 -1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-c 92 -1 4.380 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-c 93 -1 3.050 0.000 2.000 10.000 0.000 1 -1 -1 @@ -3440,175 +3440,175 @@ iasi_metop-c 99 -1 1.330 0.000 4.000 10.000 0.000 1 -1 -1 iasi_metop-c 101 -1 1.580 0.000 3.500 10.000 0.000 1 -1 -1 iasi_metop-c 103 -1 0.930 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 104 1 1.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 106 1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 109 1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 104 1 1.670 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 106 1 0.720 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 109 1 0.570 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 110 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 111 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 113 1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 116 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 119 1 0.680 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 122 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 125 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 128 1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 131 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 133 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 135 1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 138 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 141 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 144 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 146 1 0.500 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 148 1 0.820 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 111 1 0.550 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 113 1 0.680 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 116 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 119 1 0.680 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 122 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 125 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 128 1 0.580 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 131 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 133 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 135 1 0.580 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 138 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 141 1 0.550 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 144 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 146 1 0.500 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 148 1 0.820 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 150 -1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 151 1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 154 1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 157 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 159 1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 151 1 0.620 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 154 1 0.510 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 157 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 159 1 0.520 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 160 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 161 1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 163 1 0.760 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 167 1 0.520 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 170 1 0.570 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 173 1 0.550 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 176 1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 161 1 0.510 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 163 1 0.760 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 167 1 0.520 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 170 1 0.570 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 173 1 0.550 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 176 1 0.690 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 179 -1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 180 1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 185 1 0.610 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 187 1 0.590 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 180 1 0.650 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 185 1 0.610 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 187 1 0.590 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 191 -1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 193 1 0.760 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-c 193 1 0.760 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-c 197 -1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 199 1 1.050 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-c 199 1 1.050 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-c 200 -1 0.750 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-c 202 -1 0.510 0.000 2.000 10.000 0.000 1 -1 -1 iasi_metop-c 203 -1 0.650 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 205 1 1.300 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-c 207 1 0.690 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-c 210 1 0.930 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-c 212 1 1.490 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-c 205 1 1.300 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-c 207 1 0.690 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-c 210 1 0.930 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-c 212 1 1.490 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-c 213 -1 1.120 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 214 1 0.680 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-c 217 1 0.660 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-c 214 1 0.680 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-c 217 1 0.660 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-c 218 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 219 1 0.590 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-c 222 1 0.590 0.000 0.750 10.000 0.000 1 -1 -1 - iasi_metop-c 224 1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 219 1 0.590 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-c 222 1 0.590 0.000 0.750 10.000 0.000 1 -1 1 + iasi_metop-c 224 1 0.690 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 225 -1 0.670 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 226 1 0.640 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 226 1 0.640 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 228 -1 0.620 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 230 1 0.720 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 230 1 0.720 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 231 -1 0.690 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 232 1 0.660 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 236 1 0.790 0.000 2.000 10.000 0.000 1 -1 -1 + iasi_metop-c 232 1 0.660 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 236 1 0.790 0.000 2.000 10.000 0.000 1 -1 1 iasi_metop-c 237 -1 0.780 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 239 1 0.740 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 243 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 246 1 0.770 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 249 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 252 1 0.860 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 254 1 1.000 0.000 3.000 10.000 0.000 1 -1 -1 + iasi_metop-c 239 1 0.740 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 243 1 0.880 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-c 246 1 0.770 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 249 1 0.880 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-c 252 1 0.860 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-c 254 1 1.000 0.000 3.000 10.000 0.000 1 -1 1 iasi_metop-c 259 -1 0.870 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 260 1 0.850 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 262 1 0.880 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 260 1 0.850 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-c 262 1 0.880 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-c 265 1 0.840 0.000 2.500 10.000 0.000 1 -1 -1 iasi_metop-c 267 1 0.840 0.000 3.500 10.000 0.000 1 -1 -1 iasi_metop-c 269 1 0.840 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 275 1 0.800 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 275 1 0.800 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-c 279 -1 0.800 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 282 1 0.870 0.000 3.500 10.000 0.000 1 -1 -1 + iasi_metop-c 282 1 0.870 0.000 3.500 10.000 0.000 1 -1 1 iasi_metop-c 285 -1 0.980 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 294 1 0.520 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 296 1 0.650 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 299 1 0.690 0.000 0.750 10.000 0.000 1 -1 -1 + iasi_metop-c 294 1 0.520 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-c 296 1 0.650 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-c 299 1 0.690 0.000 0.750 10.000 0.000 1 -1 1 iasi_metop-c 300 -1 0.610 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 303 1 0.600 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 306 1 0.670 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 303 1 0.600 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-c 306 1 0.670 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-c 309 -1 0.790 0.000 4.500 10.000 0.000 1 -1 -1 iasi_metop-c 313 -1 0.620 0.000 4.500 10.000 0.000 1 -1 -1 iasi_metop-c 320 -1 0.660 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-c 323 1 0.700 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 323 1 0.700 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-c 326 -1 0.650 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-c 327 1 0.620 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 329 1 0.610 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 327 1 0.620 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-c 329 1 0.610 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-c 332 -1 0.620 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 335 1 0.530 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 345 1 0.600 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-c 347 1 0.680 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 350 1 0.950 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 354 1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 356 1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 360 1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 335 1 0.530 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-c 345 1 0.600 0.000 4.500 10.000 0.000 1 -1 1 + iasi_metop-c 347 1 0.680 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-c 350 1 0.950 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-c 354 1 0.630 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-c 356 1 0.970 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-c 360 1 0.650 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-c 363 -1 0.980 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 366 1 0.580 0.000 2.000 10.000 0.000 1 -1 -1 - iasi_metop-c 371 1 0.730 0.000 2.500 10.000 0.000 1 -1 -1 + iasi_metop-c 366 1 0.580 0.000 2.000 10.000 0.000 1 -1 1 + iasi_metop-c 371 1 0.730 0.000 2.500 10.000 0.000 1 -1 1 iasi_metop-c 372 -1 0.650 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 373 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 375 1 0.990 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 377 1 0.760 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 379 1 0.850 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 381 1 0.970 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 383 1 0.770 0.000 3.000 10.000 0.000 1 -1 -1 - iasi_metop-c 386 1 0.620 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 389 1 0.630 0.000 2.500 10.000 0.000 1 -1 -1 - iasi_metop-c 398 1 1.210 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 401 1 1.410 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-c 404 1 1.550 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 373 1 0.850 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-c 375 1 0.990 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-c 377 1 0.760 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-c 379 1 0.850 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-c 381 1 0.970 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-c 383 1 0.770 0.000 3.000 10.000 0.000 1 -1 1 + iasi_metop-c 386 1 0.620 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-c 389 1 0.630 0.000 2.500 10.000 0.000 1 -1 1 + iasi_metop-c 398 1 1.210 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-c 401 1 1.410 0.000 4.500 10.000 0.000 1 -1 1 + iasi_metop-c 404 1 1.550 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-c 405 -1 1.780 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-c 407 1 1.350 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 407 1 1.350 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-c 408 -1 1.140 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 410 1 1.690 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-c 410 1 1.690 0.000 5.000 10.000 0.000 1 -1 1 iasi_metop-c 411 -1 1.790 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-c 414 1 1.460 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-c 416 1 1.630 0.000 5.000 10.000 0.000 1 -1 -1 + iasi_metop-c 414 1 1.460 0.000 5.000 10.000 0.000 1 -1 1 + iasi_metop-c 416 1 1.630 0.000 5.000 10.000 0.000 1 -1 1 iasi_metop-c 418 -1 1.940 0.000 5.500 10.000 0.000 1 -1 -1 iasi_metop-c 423 -1 2.010 0.000 5.500 10.000 0.000 1 -1 -1 - iasi_metop-c 426 1 1.240 0.000 4.000 10.000 0.000 1 -1 -1 - iasi_metop-c 428 1 1.760 0.000 5.000 10.000 0.000 1 -1 -1 - iasi_metop-c 432 1 1.260 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 426 1 1.240 0.000 4.000 10.000 0.000 1 -1 1 + iasi_metop-c 428 1 1.760 0.000 5.000 10.000 0.000 1 -1 1 + iasi_metop-c 432 1 1.260 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-c 433 -1 1.470 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-c 434 1 1.900 0.000 5.500 10.000 0.000 1 -1 -1 - iasi_metop-c 439 1 1.660 0.000 5.500 10.000 0.000 1 -1 -1 + iasi_metop-c 434 1 1.900 0.000 5.500 10.000 0.000 1 -1 1 + iasi_metop-c 439 1 1.660 0.000 5.500 10.000 0.000 1 -1 1 iasi_metop-c 442 -1 2.130 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 445 1 1.490 0.000 4.500 10.000 0.000 1 -1 -1 + iasi_metop-c 445 1 1.490 0.000 4.500 10.000 0.000 1 -1 1 iasi_metop-c 450 -1 1.520 0.000 4.500 10.000 0.000 1 -1 -1 - iasi_metop-c 457 1 1.550 0.000 4.000 10.000 0.000 1 -1 -1 + iasi_metop-c 457 1 1.550 0.000 4.000 10.000 0.000 1 -1 1 iasi_metop-c 459 -1 1.960 0.000 5.000 10.000 0.000 1 -1 -1 iasi_metop-c 472 -1 2.310 0.000 5.000 10.000 0.000 1 -1 -1 iasi_metop-c 477 -1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-c 483 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-c 509 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 515 1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 546 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 552 1 2.330 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 559 1 1.840 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 566 1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 571 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 573 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 515 1 2.330 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 546 1 2.230 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 552 1 2.330 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 559 1 1.840 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 566 1 2.290 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 571 1 2.280 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 573 1 2.280 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-c 578 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-c 584 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-c 594 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-c 625 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 646 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 662 1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 668 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 646 1 2.270 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 662 1 2.240 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 668 1 2.230 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-c 705 -1 2.240 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-c 739 -1 2.260 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 756 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 756 1 2.280 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-c 797 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 867 1 2.300 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 906 1 2.150 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 921 1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 1027 1 2.370 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 1046 1 2.270 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 867 1 2.300 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 906 1 2.150 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 921 1 2.310 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 1027 1 2.370 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 1046 1 2.270 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-c 1090 -1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-c 1098 -1 2.290 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 1121 1 2.230 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 1133 1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1121 1 2.230 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 1133 1 2.280 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-c 1173 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 1191 1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 1194 1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1191 1 2.320 0.000 6.000 10.000 0.000 1 -1 1 + iasi_metop-c 1194 1 2.310 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-c 1222 -1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 - iasi_metop-c 1271 1 2.320 0.000 6.000 10.000 0.000 1 -1 -1 + iasi_metop-c 1271 1 2.320 0.000 6.000 10.000 0.000 1 -1 1 iasi_metop-c 1283 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-c 1338 -1 2.310 0.000 6.000 10.000 0.000 1 -1 -1 iasi_metop-c 1409 -1 2.280 0.000 6.000 10.000 0.000 1 -1 -1 diff --git a/GEOSaana_GridComp/GSI_GridComp/gsi_chemguess_mod.F90 b/GEOSaana_GridComp/GSI_GridComp/gsi_chemguess_mod.F90 index fdb312b4..41b3ebf2 100644 --- a/GEOSaana_GridComp/GSI_GridComp/gsi_chemguess_mod.F90 +++ b/GEOSaana_GridComp/GSI_GridComp/gsi_chemguess_mod.F90 @@ -811,7 +811,7 @@ subroutine get_char0d_ ( desc, ivar, istatus ) character(len=*),intent(out):: ivar integer(i_kind),intent(out):: istatus character(len=*),parameter::myname_=myname//'*get_char0d_' - character(len=MAXSTR):: gaslist + character(len=254):: gaslist character(len=MAXSTR),allocatable:: work(:) integer(i_kind) is,ie,i,i0 logical labfound diff --git a/GEOSaana_GridComp/GSI_GridComp/gsi_crtmcoupler_aeromod.f90 b/GEOSaana_GridComp/GSI_GridComp/gsi_crtmcoupler_aeromod.f90 new file mode 100644 index 00000000..c2d6341a --- /dev/null +++ b/GEOSaana_GridComp/GSI_GridComp/gsi_crtmcoupler_aeromod.f90 @@ -0,0 +1,47 @@ +!---------------------------------------------------------------------------- +!BOP +! +! !MODULE: GSI_CRTMcoupler_AeroMod --- +! +! !INTERFACE: +! +! !DESCRIPTION: This module provides general interface for +! Aerosol fields seen by CRTM. +! +! !REVISION HISTORY: +! +! 2026-02-04 Todling - Revive this code (unsure how this got lost over time) +! +!EOP +!------------------------------------------------------------------------- + +module GSI_CRTMCoupler_AeroMod + +implicit none +private + +! +! !PUBLIC MEMBER FUNCTIONS: +! +public Set_CRTM_Aerosol + +interface Set_CRTM_Aerosol + subroutine Set_CRTM_Aerosol_ ( km, na, na_crtm, aero_name, aero_conc, rh, aerosol) + use kinds, only: r_kind, i_kind + use CRTM_Aerosol_Define, only: CRTM_Aerosol_type + implicit none + + integer(i_kind) , intent(in) :: km ! number of levels + integer(i_kind) , intent(in) :: na ! number of aerosols + integer(i_kind) , intent(in) :: na_crtm ! number of aerosols seen by CRTM + character(len=*), intent(in) :: aero_name(na) ! [na] GOCART aerosol names + real(r_kind), intent(inout) :: aero_conc(km,na) ! [km,na] aerosol concentration (Kg/m2) + real(r_kind), intent(in) :: rh(km) ! [km] relative humdity [0,1] + + type(CRTM_Aerosol_type), intent(inout) :: aerosol(na_crtm)! [na] CRTM Aerosol object + + end subroutine Set_CRTM_Aerosol_ +end interface + +end module GSI_CRTMCoupler_AeroMod + diff --git a/GEOSaana_GridComp/GSI_GridComp/setuprad.f90 b/GEOSaana_GridComp/GSI_GridComp/setuprad.f90 index 0c72a09d..f9f77da0 100755 --- a/GEOSaana_GridComp/GSI_GridComp/setuprad.f90 +++ b/GEOSaana_GridComp/GSI_GridComp/setuprad.f90 @@ -297,7 +297,7 @@ subroutine setuprad(obsLL,odiagLL,lunin,mype,aivals,stats,nchanl,nreal,nobs,& ifrac_sea,ifrac_lnd,ifrac_ice,ifrac_sno,itsavg, & izz,idomsfc,isfcr,iff10,ilone,ilate, & isst_hires,isst_navy,idata_type,iclr_sky,itref,idtw,idtc,itz_tr,& - n_clouds_fwd_wk,n_actual_aerosols_wk,n_absorbers + n_clouds_fwd_wk,n_absorbers use crtm_interface, only: iedge_log use crtm_interface, only: ilzen_ang2,iscan_ang2,iszen_ang2,isazi_ang2, ilazi_ang2 use clw_mod, only: calc_clw, ret_amsua, gmi_37pol_diff,mhs_si @@ -2776,13 +2776,17 @@ subroutine contents_netcdf_diag_(odiags,idv,iob) do iabsorb = 1, n_absorbers write (fieldname, "(A,I0.2)") "atmosphere_absorber_", atmosphere(1)%absorber_id(iabsorb) call nc_diag_data2d(trim(fieldname), sngl(atmosphere(1)%absorber(:,iabsorb))) ! check %absorber_units - enddo - do icloud = 1, n_clouds_fwd_wk + enddo + do icloud = 1, n_clouds_fwd_wk write (fieldname, "(A,I0.2)") "atmosphere_mass_content_of_cloud_", atmosphere(1)%Cloud(icloud)%Type call nc_diag_data2d(trim(fieldname), sngl(atmosphere(1)%Cloud(icloud)%Water_Content)) write (fieldname, "(A,I0.2)") "effective_radius_of_cloud_particle_", atmosphere(1)%Cloud(icloud)%Type call nc_diag_data2d(trim(fieldname), sngl(atmosphere(1)%Cloud(icloud)%Effective_Radius)) - enddo + enddo +! do iaero = 1, n_actual_aerosols_wk +! write (fieldname, "(A,I0.2)") "atmosphere_aerosol_", atmosphere(1)%absorber_id(iaero) +! call nc_diag_data2d(trim(fieldname), sngl(atmosphere(1)%aerosols(:,iaero))) ! check %absorber_units +! enddo endif ! wrtgeovals enddo ! if (adp_anglebc) then diff --git a/GEOSaana_GridComp/GSI_GridComp/stub_crtm_aerosol.f90 b/GEOSaana_GridComp/GSI_GridComp/stub_crtm_aerosol.f90 new file mode 100644 index 00000000..a8792c78 --- /dev/null +++ b/GEOSaana_GridComp/GSI_GridComp/stub_crtm_aerosol.f90 @@ -0,0 +1,21 @@ +subroutine Set_CRTM_Aerosol_ ( km, na, na_crtm, aero_name, aero_conc, rh, aerosol) + use mpimod, only: mype + use kinds, only: r_kind, i_kind + use CRTM_Aerosol_Define, only: CRTM_Aerosol_type + implicit none + + integer(i_kind) , intent(in) :: km ! number of levels + integer(i_kind) , intent(in) :: na ! number of aerosols + integer(i_kind) , intent(in) :: na_crtm ! number of aerosols seen by CRTM + character(len=*), intent(in) :: aero_name(na) ! [na] GOCART aerosol names + real(r_kind), intent(inout) :: aero_conc(km,na) ! [km,na] aerosol concentration (Kg/m2) + real(r_kind), intent(in) :: rh(km) ! [km] relative humdity [0,1] + + type(CRTM_Aerosol_type), intent(inout) :: aerosol(na_crtm)! [na] CRTM Aerosol object + + if ( mype == 0 ) & + write(6,*)'Doing nothing in dummy routine Set_CRTM_Aerosol_' + +end subroutine Set_CRTM_Aerosol_ + +