Skip to content
Merged
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions src/Coefficients/SpcCoeff/SpcCoeff_Binary_IO.f90
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ FUNCTION SpcCoeff_Binary_ReadFile( &
END IF

! ...Read the channel data
IF( dummy%Version > 2 ) THEN
IF( dummy%Version > 3 ) THEN
! Binary coefficient version 3 introduced for TROPICS instrument.
! The SpcCoeff coefficients contain 'PolAngle' as an additional
! array.
Expand All @@ -435,7 +435,7 @@ FUNCTION SpcCoeff_Binary_ReadFile( &
SpcCoeff%Band_C2 , &
SpcCoeff%Cosmic_Background_Radiance, &
SpcCoeff%Solar_Irradiance
ELSE IF( dummy%Version < 3 ) THEN
ELSE IF( dummy%Version < 4 ) THEN
! Version 2 is the default binary SpcCoeff version for
! REL-2.4.0 and older.
READ ( fid, IOSTAT=io_stat, IOMSG=io_msg ) &
Expand Down