Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8.0.4 LTS Release Prep (old) #5684

Closed
wants to merge 39 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
06aa3d7
Bug fix in noproj to remove persistent temporary lbl file (#5578)
chkim-usgs Nov 25, 2024
b2b87a0
Remove restrictive validity check in caminfo (#5553)
AustinSanders Jul 22, 2024
e8c38f4
Qview command line Fix (#5505)
acpaquette Jun 4, 2024
b461cd8
Fixes qmos segfaults (#5556)
amystamile-usgs Jul 25, 2024
38b472c
CsmSerialNumber.trn - typo and PVL compilant fix (#5561)
amystamile-usgs Jul 30, 2024
449fc61
hrsc2isis support for level 3 images (#5560)
amystamile-usgs Jul 30, 2024
a2ba9d6
Fixed gllssi2isis to support V1.1 data (#5570)
amystamile-usgs Jul 31, 2024
23440f5
Removed a debug output statement inadvertently left in noseam.cpp. Ad…
kledmundson Nov 7, 2024
1a94f1a
Bug fixes to address incorrect handling of RADIUS in the jigsaw GUI a…
kledmundson Oct 25, 2024
ab8c81d
Bug fixed in isisminer to properly handle self-intersecting polygon g…
kledmundson Oct 17, 2024
e556c04
Fix detached label support for kaguyasp2ascii (#5607)
murashinln Aug 30, 2024
163b056
Speeds up FunctionalTestCamstatsDefaultParameters (#5647)
amystamile-usgs Oct 30, 2024
8bb7ec5
XmlToJson Namespace fix (#5652)
acpaquette Oct 31, 2024
8d203f0
fixes photomet not accepting backplanes (#5658)
amystamile-usgs Nov 12, 2024
ae52429
Convert dstripe to gtests (#5665)
amystamile-usgs Nov 13, 2024
e52f970
Adds HRSC support in socetlinescankeywords (#5669)
amystamile-usgs Nov 18, 2024
4f1ef70
Converted skypt to a callable app. Converted existing Makefile tests …
artmathgirl Apr 1, 2024
77c8ffb
Noseam has been refactored to be callable. Makefile test has been con…
kledmundson Oct 4, 2024
9171685
The explode application has been refactored to be callable and Makefi…
kledmundson Sep 11, 2024
0d0da90
Isisminer has been refactored to be callable and Makefile tests conve…
kledmundson Sep 11, 2024
d7ffd99
Algebra has been refactored to be callable; old Makefile tests have b…
kledmundson Sep 11, 2024
30fd887
Photrim has been refactored to be callable; old Makefile tests have b…
kledmundson Aug 16, 2024
7ec076d
Bandtrim has been refactored to be callable; old Makefile tests have …
kledmundson Aug 5, 2024
2b4a78c
Updated kaguyasp2ascii to support newer (detached) data (#5568)
AustinSanders Jul 31, 2024
40dddc0
Jigsaw csm error message (#5562)
AustinSanders Jul 26, 2024
1139482
Pin qwt to 6.2.0 or lower (#5503)
chkim-usgs Jun 4, 2024
fd5ccb8
Pinned suitesparse to below 7.7.0 (#5528)
chkim-usgs Jun 24, 2024
e767ffa
release prep
chkim-usgs Nov 26, 2024
b89bab9
Remove comment
chkim-usgs Nov 26, 2024
005951a
Add codebuild workflow
chkim-usgs Nov 26, 2024
740c55b
Add update workflow files
chkim-usgs Nov 26, 2024
e316aac
Trigger build
chkim-usgs Nov 26, 2024
f0bc319
Update python version
chkim-usgs Nov 26, 2024
bdafade
Update ale
chkim-usgs Nov 26, 2024
2c18a55
Update deps
chkim-usgs Nov 26, 2024
10497cf
Update boost and libopencv
chkim-usgs Nov 26, 2024
19de33b
Update pcl
chkim-usgs Nov 26, 2024
3fcb162
Update pcl cmake
chkim-usgs Nov 26, 2024
117119b
Add float.h to embree
chkim-usgs Nov 26, 2024
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
Prev Previous commit
Next Next commit
Jigsaw csm error message (#5562)
* Added fail-early + error message for csminit'd images without csm solve parameters

* Updated changelog
AustinSanders authored and chkim-usgs committed Nov 26, 2024
commit 40dddc07fb8c22e31180d28acc3ab75ee611fc7b
7 changes: 7 additions & 0 deletions isis/src/control/objs/BundleAdjust/BundleAdjust.cpp
Original file line number Diff line number Diff line change
@@ -474,6 +474,13 @@ namespace Isis {
QString serialNumber = m_serialNumberList->serialNumber(i);
QString fileName = m_serialNumberList->fileName(i);

// If any camera is initialized via CSMInit, but no csm solve options are specified, fail early.
if (camera->GetCameraType() == Camera::Csm && m_bundleSettings->observationSolveSettings(observationNumber).csmSolveOption() == 0){
QString msg = fileName + " camera was initialized using CSMInit, so jigsaw must use CSM parameters." +
" Please refer to documentation for more information." + "\n";
throw IException(IException::User, msg, _FILEINFO_);
}

// create a new BundleImage and add to new (or existing if observation mode is on)
// BundleObservation
BundleImageQsp image = BundleImageQsp(new BundleImage(camera, serialNumber, fileName));