Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Education
KStars
Commits
95c40333
Commit
95c40333
authored
Jul 12, 2017
by
Jasem Mutlaq
Browse files
Add more debug statements to WCS stuff
parent
86bea8d1
Changes
1
Hide whitespace changes
Inline
Side-by-side
kstars/fitsviewer/fitsdata.cpp
View file @
95c40333
...
...
@@ -2144,6 +2144,9 @@ bool FITSData::loadWCS()
return
true
;
}
if
(
Options
::
fITSLogging
())
qDebug
()
<<
"Started WCS Data Processing..."
;
int
status
=
0
;
char
*
header
;
int
nkeyrec
,
nreject
,
nwcs
,
stat
[
2
];
...
...
@@ -2225,6 +2228,9 @@ bool FITSData::loadWCS()
WCSLoaded
=
true
;
if
(
Options
::
fITSLogging
())
qDebug
()
<<
"Finished WCS Data processing..."
;
return
true
;
#endif
#endif
...
...
@@ -3818,6 +3824,8 @@ bool FITSData::createWCSFile(const QString &newWCSFile, double orientation, doub
{
QFile
::
remove
(
filename
);
tempFile
=
false
;
if
(
Options
::
fITSLogging
())
qDebug
()
<<
"Removing FITS File: "
<<
filename
;
}
filename
=
newWCSFile
;
...
...
@@ -3948,6 +3956,9 @@ bool FITSData::createWCSFile(const QString &newWCSFile, double orientation, doub
WCSLoaded
=
false
;
if
(
Options
::
fITSLogging
())
qDebug
()
<<
"Finished creating WCS file: "
<<
newWCSFile
;
return
true
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment