Skip to content

Commit 585b334

Browse files
authored
Use CK quality for PCK selection in spiceserver (#5901)
* Change baseKernels to ckKernels for pck * update changelog
1 parent 6ff18b8 commit 585b334

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ ctest FunctionalTestJigsawApollo to validate this output. [#5710](https://github
8787
- Fixed order of observer and target in spiceql call in `ctxcal`. [#5823](https://github.com/DOI-USGS/ISIS3/pull/5823)
8888
- Fixed bundle serialization on MacOS for IPCE [#5808](https://github.com/DOI-USGS/ISIS3/pull/5808)
8989
- Fixed `noseam` to use correct temporary files when running [#5878](https://github.com/DOI-USGS/ISIS3/pull/5878)
90+
- Fixed `spiceserver` to use CK quality for PCK selection [#5901](https://github.com/DOI-USGS/ISIS3/pull/5901)
9091

9192
## [9.0.0] - 09-25-2024
9293

isis/src/base/apps/spiceserver/spiceserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ namespace Isis {
180180
Kernel lk, pck, targetSpk, fk, ik, sclk, spk, iak, dem, exk;
181181
QList< priority_queue<Kernel> > ck;
182182
lk = baseKernels.leapSecond(label);
183-
pck = baseKernels.targetAttitudeShape(label);
183+
pck = ckKernels.targetAttitudeShape(label);
184184
targetSpk = baseKernels.targetPosition(label);
185185
ik = baseKernels.instrument(label);
186186
sclk = baseKernels.spacecraftClock(label);

0 commit comments

Comments
 (0)