Skip to content

Commit 2107e5f

Browse files
committed
use S2A RSR for S2C/S2D. Needs further adjustment!
1 parent 9714ab4 commit 2107e5f

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

misc/force-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.12-dev:::2024-12-20_10:07:38
1+
3.7.12-dev:::2024-12-20_10:10:56

src/modules/lower-level/meta-ll.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -751,6 +751,16 @@ int svgrid = 5000;
751751
b_rsr = _RSR_START_SEN2A_;
752752
} else if (strcmp(sensor, "SEN2B") == 0){
753753
b_rsr = _RSR_START_SEN2B_;
754+
} else if (strcmp(sensor, "SEN2C") == 0){
755+
#ifdef FORCE_DEBUG
756+
printf("SEN2C: using SEN2A RSR. Adjust later!\n");
757+
#endif
758+
b_rsr = _RSR_START_SEN2A_;
759+
} else if (strcmp(sensor, "SEN2D") == 0){
760+
#ifdef FORCE_DEBUG
761+
printf("SEN2D: using SEN2A RSR. Adjust later!\n");
762+
#endif
763+
b_rsr = _RSR_START_SEN2A_;
754764
} else {
755765
printf("unknown/unsupported Sentinel-2! "); return FAILURE;
756766
}

0 commit comments

Comments
 (0)