mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
fitsUtils.cpp
Go to the documentation of this file.
1/** \file fitsUtils.cpp
2 * \brief Implementation of utilities to work with FITS files
3 * \ingroup fits_processing_files
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2015-2022 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
28
29namespace mx
30{
31namespace fits
32{
33
34int fitsStripApost( std::string &s )
35{
36 int stripped = 0;
37 int p = s.find_first_not_of( " \t\n\t" );
38 if( s[p] == '\'' )
39 {
40 s.erase( 0, p + 1 );
41 ++stripped;
42 }
43
44 p = s.find_last_not_of( " \t\n\t" );
45 if( s[p] == '\'' )
46 {
47 s.erase( p );
48 ++stripped;
49 }
50
51 --p;
52
53 while( s[p] == ' ' && p >= 0 )
54 {
55 s.erase( p );
56 --p;
57 ++stripped;
58 }
59
60 return stripped;
61}
62
63void fitsPopulateCard( char headStr[81], char *keyword, char *value, char *comment )
64{
65 memset( headStr, ' ', 80 );
66 headStr[80] = '\0';
67
68 int rpos = 0;
69
70 if( strlen( keyword ) > 8 )
71 {
72 rpos += snprintf( headStr, 81, "HIERARCH " );
73
74 rpos += snprintf( headStr + rpos, 81 - rpos, "%s =", keyword );
75 }
76 else
77 {
78 rpos += snprintf( headStr, 81, "%-8s=", keyword );
79 }
80
81 if( strlen( value ) < stdValWidth )
82 {
83 char fstr[10];
84 snprintf( fstr, 10, "%%+%ds", stdValWidth );
85 rpos += snprintf( headStr + rpos, 81 - rpos, fstr, value );
86 }
87 else
88 {
89 rpos += snprintf( headStr + rpos, 81 - rpos, "%s", value );
90 }
91
92 headStr[rpos] = ' ';
93 ++rpos;
94
95 headStr[rpos] = '/';
96 ++rpos;
97
98 headStr[rpos] = ' ';
99 ++rpos;
100
101 snprintf( headStr + rpos, 81 - rpos, "%s", comment );
102}
103
104template <>
105int fits_write_key<char *>( fitsfile *fptr, char *keyword, void *value, char *comment )
106{
107 int fstatus = 0;
108
109 fits_write_key_longwarn( fptr, &fstatus );
110
111 fits_write_key_longstr( fptr, keyword, (const char *)value, comment, &fstatus );
112
113 return fstatus;
114}
115
116template <>
117int fits_write_key<std::string>( fitsfile *fptr, char *keyword, void *value, char *comment )
118{
119 return fits_write_key<char *>( fptr, keyword, value, comment );
120}
121
122template <>
123int fits_write_key<bool>( fitsfile *fptr, char *keyword, void *value, char *comment )
124{
125 unsigned char bc = *( (bool *)value );
126
127 int fstatus = 0;
128
129 fits_write_key( fptr, fitsType<unsigned char>(), keyword, &bc, comment, &fstatus );
130
131 return fstatus;
132}
133
134template <>
135int fits_write_key<fitsUnknownType>( fitsfile *fptr, char *keyword, void *value, char *comment )
136{
137
138 int fstatus = 0;
139
140 char *vstr = (char *)value;
141
142 // If type is unkown, do it verbatim
143 char headStr[81];
144
145 fitsPopulateCard( headStr, keyword, vstr, comment );
146
147 fits_write_record( fptr, headStr, &fstatus );
148 return fstatus;
149}
150
151int fits_write_comment( fitsfile *fptr, char *comment )
152{
153 int fstatus = 0;
154
155 fits_write_comment( fptr, comment, &fstatus );
156
157 return fstatus;
158}
159
160int fits_write_history( fitsfile *fptr, char *history )
161{
162 int fstatus = 0;
163
164 fits_write_history( fptr, history, &fstatus );
165
166 return fstatus;
167}
168
169void fitsErrText( std::string &explan, const std::string &filename, int fstatus )
170{
171 char emnem[31];
172
173 fits_get_errstatus( fstatus, emnem );
174
175 explan += ": ";
176 explan += filename;
177 explan += ". CFITSIO: ";
178
179 explan += emnem;
180 explan += " (";
181 explan += ioutils::convertToString( fstatus );
182 explan += ")";
183}
184
185} // namespace fits
186} // namespace mx
Declares and defines utilities to work with FITS files.
int fitsStripApost(std::string &s)
Strip the apostrophes from a FITS value string.
Definition fitsUtils.cpp:34
void fitsErrText(std::string &explan, const std::string &filename, int fstatus)
Generate a rich error meesage from a FITS status code.
int fits_write_key(fitsfile *fptr, char *keyword, void *value, char *comment)
Write a header card to a file.
void fitsPopulateCard(char headStr[81], char *keyword, char *value, char *comment)
Populate a fits header card with the value string copied verbatim.
Definition fitsUtils.cpp:63
int fits_write_key< bool >(fitsfile *fptr, char *keyword, void *value, char *comment)
Specialization to handle the case bool.
std::string convertToString(const typeT &value, int precision=0)
Convert a numerical value to a string.
The mxlib c++ namespace.
Definition mxError.hpp:106