mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
fitsHeader.cpp
Go to the documentation of this file.
1/** \file fitsHeader.cpp
2 * \brief Implementation of a class to work with a FITS header
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
37
39{
40 operator=( head );
41}
42
47
49{
50 cards = head.cards;
51
52 headerIterator it = cards.begin();
53
54 cardMap.clear();
55 while( it != cards.end() )
56 {
57 cardMap.insert( std::pair<std::string, headerIterator>( it->keyword(), it ) );
58 ++it;
59 }
60
61 return *this;
62}
63
68
73
75{
76 return cardMap.find( keyword )->second;
77}
78
80{
81 return cards.empty();
82}
83
85{
86 return cards.size();
87}
88
90{
91 cards.clear();
92 cardMap.clear();
93}
94
95size_t fitsHeader::count( const std::string &keyword )
96{
97 return cardMap.count( keyword );
98}
99
100void fitsHeader::erase( const std::string &keyword )
101{
102 if( keyword == "COMMENT" || keyword == "HISTORY" )
103 {
104 return;
105 }
107 it = ( cardMap.find( keyword ) )->second; // trying to fool codacy
108 cardMap.erase( keyword );
109 cards.erase( it );
110}
111
113{
114 mapIterator mit = cardMap.find( it->keyword() );
115
116 if( it->keyword() == "COMMENT" || it->keyword() == "HISTORY" )
117 {
118 while( mit->second->keyword() == it->keyword() && it->comment() != mit->second->comment() )
119 ++mit;
120 }
121 cardMap.erase( mit );
122 cards.erase( it );
123}
124
126{
127
128 headerIterator it = begin(), nit;
129
130 int n = 0;
131 while( it != end() )
132 {
133 nit = it;
134 ++nit;
135 if( it->keyword() == "SIMPLE" || it->keyword() == "BITPIX" || it->keyword() == "NAXIS" ||
136 it->keyword() == "NAXIS1" || it->keyword() == "NAXIS2" || it->keyword() == "NAXIS3" ||
137 it->keyword() == "EXTEND" || it->keyword() == "BZERO" || it->keyword() == "BSCALE" ||
138 it->keyword() == "LONGSTRN" )
139 {
140 erase( it );
141 }
142
143 if( it->keyword() == "COMMENT" )
144 {
145 if( it->comment().find( "FITS (Flexible Image" ) != std::string::npos )
146 erase( it );
147 else if( it->comment().find( "and Astrophysics'" ) != std::string::npos )
148 erase( it );
149 }
150
151 if( nit == end() )
152 break;
153 it = nit;
154 ++n;
155 }
156}
157
159{
160 // First check if duplicate key
161 if( cardMap.count( card.keyword() ) > 0 )
162 {
163 if( card.type() != fitsType<fitsCommentType>() && card.type() != fitsType<fitsHistoryType>() )
164 {
165 std::cerr << "attempt to duplicate keyword: " << card.keyword() << "\n";
166 return;
167 }
168 }
169
170 // Now insert in list
171 cards.push_back( card );
172
173 // Then add to the Map.
174 headerIterator insertedIt = cards.end();
175 --insertedIt;
176 cardMap.insert( std::pair<std::string, headerIterator>( card.keyword(), insertedIt ) );
177}
178
180{
182
183 for( it = head.begin(); it != head.end(); ++it )
184 {
185 append( *it );
186 }
187}
188
189void fitsHeader::append( const std::string &k )
190{
191 append( fitsHeaderCard( k ) );
192}
193
195{
196 // First check if duplicate key
197 if( cardMap.count( card.keyword() ) > 0 )
198 {
199 if( card.type() != fitsType<fitsCommentType>() && card.type() != fitsType<fitsHistoryType>() )
200 {
201 std::cerr << "attempt to duplicate keyword: " << card.keyword() << "\n";
202 return;
203 }
204 }
205
206 // Now insert in list
207 headerIterator insertedIt = cards.insert( it, card );
208
209 // Then add to the Map.
210 cardMap.insert( std::pair<std::string, headerIterator>( card.keyword(), insertedIt ) );
211}
212
214{
215 // First check if duplicate key
216 if( cardMap.count( card.keyword() ) > 0 )
217 {
218 if( card.type() != fitsType<fitsCommentType>() && card.type() != fitsType<fitsHistoryType>() )
219 {
220 std::cerr << "attempt to duplicate keyword:" << card.keyword() << "\n";
221 return;
222 }
223 }
224
225 // Now insert in list
226 headerIterator insertedIt = cards.insert( ++it, card );
227
228 // Then add to the Map.
229 cardMap.insert( std::pair<std::string, headerIterator>( card.keyword(), insertedIt ) );
230}
231
232fitsHeaderCard &fitsHeader::operator[]( const std::string &keyword )
233{
235
236 // If not found, append it.
237 if( cardMap.find( keyword ) == cardMap.end() )
238 {
239 append( keyword );
240 }
241
242 it = cardMap.find( keyword )->second;
243
244 return *it;
245}
246
247const fitsHeaderCard &fitsHeader::operator[]( const std::string &keyword ) const
248{
249 if( cardMap.find( keyword ) == cardMap.end() )
250 {
251 std::cerr << "Fits header card with keyword: " << keyword << " not found.\n";
252 }
253
254 headerIterator it = cardMap.find( keyword )->second;
255
256 return *it;
257}
258
259void fitsHeaderGitStatus( fitsHeader &head, const std::string &repoName, const char *sha1, int modified )
260{
261 std::string hist = "Git status for " + repoName + ":";
262 head.append( "", fitsHistoryType(), hist );
263
264 hist = " sha1=";
265 hist += sha1;
266 if( modified )
267 hist += ", modified";
268
269 head.append( "", fitsHistoryType(), hist );
270}
271
272} // namespace fits
273} // namespace mx
Class to manage the three components of a FITS header card.
const std::string & keyword() const
Get the keyword.
int type() const
Get the type.
Class to manage a complete fits header.
size_t count(const std::string &keyword)
Get number of cards with a given keyword.
~fitsHeader()
Destructor.
std::list< fitsHeaderCard >::iterator headerIterator
The iterator type for the cards list.
fitsHeader()
Default c'tor.
fitsHeaderCard & operator[](const std::string &keyword)
Card access by keyword operator.
headerIterator begin()
Get iterator to the beginning of the cards list.
void clear()
Clear all cards from the header.
std::list< fitsHeaderCard > cards
The storage for the FITS header cards.
void eraseStandardTop()
Erase the standard entries at the top of the header.
headerIterator iterator(const std::string &keyword)
Get iterator pointing to a specific element.
void erase(const std::string &keyword)
Erase card by keyword.
void insert_before(headerIterator it, fitsHeaderCard card)
Insert a card before another card.
size_t size()
Get number of cards currently stored in the header.
std::unordered_multimap< std::string, headerIterator > cardMap
This multimap allows for fast lookup by keyword.
std::unordered_multimap< std::string, headerIterator >::iterator mapIterator
The iterator type for the card map.
fitsHeader & operator=(const fitsHeader &head)
Assignment.
bool empty()
Test whether the header is empty.
void append(const fitsHeaderCard &card)
Append a fitsHeaderCard to the end of the header.
void insert_after(headerIterator it, fitsHeaderCard card)
Insert a card after another card.
headerIterator end()
Get iterator to the end of the cards list.
Declares and defines a class to work with a FITS header.
void fitsHeaderGitStatus(fitsHeader &head, const std::string &repoName, const char *sha1, int modified)
Write the status of a Git repository to HISTORY in a FITS header.
The mxlib c++ namespace.
Definition mxError.hpp:106