source: trunk/src/Cubes/getImage.cc @ 1339

Last change on this file since 1339 was 1024, checked in by MatthewWhiting, 12 years ago

Getting the initialisation of minChannels correct when it is 2D.

File size: 8.4 KB
RevLine 
[299]1// -----------------------------------------------------------------------
2// getImage.cc: Read in a FITS file to a Cube object.
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
[3]28#include <iostream>
29#include <string>
[142]30#include <string.h>
[394]31#include <wcslib/wcs.h>
32#include <wcslib/wcshdr.h>
[400]33#include <wcslib/fitshdr.h>
[394]34#include <wcslib/wcsfix.h>
35#include <wcslib/wcsunits.h>
[142]36#define WCSLIB_GETWCSTAB // define this so that we don't try and redefine
[321]37                         //  wtbarr (this is a problem when using gcc v.4+)
[66]38#include <fitsio.h>
[69]39#include <math.h>
[393]40#include <duchamp/duchamp.hh>
41#include <duchamp/param.hh>
42#include <duchamp/fitsHeader.hh>
43#include <duchamp/Cubes/cubes.hh>
[3]44
[378]45namespace duchamp
[3]46{
47
[378]48  std::string imageType[4] = {"point", "spectrum", "image", "cube"};
[3]49
[698]50  OUTCOME Cube::getMetadata()
[528]51  { 
52    ///  @details
53    /// A front-end to the Cube::getMetadata() function, that does
54    ///  subsection checks. Does the flux unit conversion if the user
55    ///  has requested it. Assumes the Param is set up properly.
56
[910]57    // int exists;
58    // fits_file_exists(fname.c_str(),&exists,&status);
59    // if(exists<=0){
60    //   fits_report_error(stderr, status);
[913]61    //   DUCHAMPERROR("Cube Reader", Requested image (" << fname << ") does not exist!);
[910]62    //   return FAILURE;
63    // }
64    if(this->par.checkImageExists() == FAILURE) return FAILURE;
65
[442]66    std::string fname = par.getImageFile();
67    if(par.getFlagSubsection()) fname+=par.getSubsection();
[443]68
[971]69    this->head.openFITS(fname);
70
[698]71    OUTCOME result = getMetadata(fname);
[443]72   
73    if(result==SUCCESS){
74      // Convert the flux Units if the user has so requested
[899]75      this->convertFluxUnits(this->head.getFluxUnits(),this->par.getNewFluxUnits());
[443]76    }
77
[971]78    this->head.closeFITS();
79
[443]80    return result;
[442]81  }
82  //--------------------------------------------------------------------
83
[698]84  OUTCOME Cube::getMetadata(std::string fname)
[378]85  {
[528]86    /// @details
87    /// Read in the metadata associated with the cube from the file
88    ///  fname (assumed to be in FITS format).  Function is a front end
89    ///  to the I/O functions in the FitsIO/ directory.  This function
90    ///  will check that the file exists, report the dimensions and
91    ///  then get other functions to read the WCS and necessary header
92    ///  keywords. This function does not read in the data array --
93    ///  that is done by Cube::getCube(). Note that no conversion of
94    ///  flux units is done -- you need to call Cube::getMetadata() or
95    ///  do it separately.
96    ///  \param fname A std::string with name of FITS file.
97    ///  \return SUCCESS or FAILURE.
[168]98
[378]99    int numAxes, status = 0;  /* MUST initialize status */
100
101    // Read the size information -- number and lengths of all axes.
102    // Just use this for reporting purposes.
103    status = 0;
[971]104    if(fits_get_img_dim(this->head.FPTR(), &numAxes, &status)){
[378]105      fits_report_error(stderr, status);
106      return FAILURE;
107    }
[973]108
[944]109    this->head.setNumAxes(numAxes);
[378]110    long *dimAxes = new long[numAxes];
111    for(int i=0;i<numAxes;i++) dimAxes[i]=1;
112    status = 0;
[971]113    if(fits_get_img_size(this->head.FPTR(), numAxes, dimAxes, &status)){
[378]114      fits_report_error(stderr, status);
115      return FAILURE;
116    }
[443]117
[378]118    // Report the size of the FITS file
119    if(this->par.isVerbose()){
120      std::cout << "Dimensions of FITS file: ";
121      int dim = 0;
122      std::cout << dimAxes[dim];
123      while(dim+1<numAxes) std::cout << "x" << dimAxes[++dim];
124      std::cout << std::endl;
125    }
[103]126
[570]127
[378]128    // Get the WCS information
[971]129    if(this->head.defineWCS(this->par) == FAILURE) return FAILURE;
[103]130
[795]131    // Read the necessary header information, and copy some of it into the Param.
[971]132    if(this->head.readHeaderInfo(this->par) == FAILURE){
133     DUCHAMPWARN("Cube Reader", "Problems with metadata, but will press on...");
[945]134    }
[795]135
[378]136    if(!this->head.isWCS())
[913]137      DUCHAMPWARN("Cube Reader","WCS is not good enough to be used.\n");
[3]138
[508]139    // allocate the dimension array in the Cube.
[700]140    if(this->initialiseCube(dimAxes,false) == FAILURE) return FAILURE;
[508]141
142    delete [] dimAxes;
143
[442]144    return SUCCESS;
145
146  }
147  //--------------------------------------------------------------------
148
149
[698]150  OUTCOME Cube::getCube(std::string fname)
[442]151  {
[528]152    /// @details
153    /// Read in a cube from the file fname (assumed to be in FITS
154    ///  format).  Function is a front end to the data I/O function in
155    ///  the FitsIO/ directory.  This function calls the getMetadata()
156    ///  function, then reads in the actual data array.
157    ///  \param fname A std::string with name of FITS file.
158    ///  \return SUCCESS or FAILURE.
[442]159
[971]160    this->head.openFITS(fname);
161
[700]162    if(this->getMetadata(fname) == FAILURE) return FAILURE;
[442]163
[378]164    // Get the data array from the FITS file.
165    // Report the dimensions of the data array that was read (this can be
166    //   different to the full FITS array).
167    if(this->par.isVerbose()) std::cout << "Reading data ... "<<std::flush;
[971]168    if(this->getFITSdata() == FAILURE) return FAILURE;
[443]169
[378]170    if(this->par.isVerbose()){
171      std::cout << "Done. Data array has dimensions: ";
172      std::cout << this->axisDim[0];
[978]173      std::cout  <<"x"<< this->axisDim[1];
[378]174      if(this->axisDim[2]>1) std::cout  <<"x"<< this->axisDim[2];
175      std::cout << "\n";
176    }   
[46]177
[434]178    // Convert the flux Units if the user has so requested
[899]179    this->convertFluxUnits(this->head.getFluxUnits(),this->par.getNewFluxUnits(),ARRAY);
[434]180
[971]181    this->head.closeFITS();
182
[442]183    return SUCCESS;   
[3]184
[378]185  }
[442]186  //--------------------------------------------------------------------
[378]187
[434]188
[899]189  void Cube::convertFluxUnits(std::string oldUnit, std::string newUnit, ARRAYREF whichArray)
[434]190  {
[528]191    /// @details
192    ///  If the user has requested new flux units (via the input
193    ///  parameter newFluxUnits), this function converts the units
194    ///  given by BUNIT to those given by newFluxUnits. If no simple
195    ///  conversion can be found (by using wcsunits()) then nothing is
196    ///  done and the user is informed, otherwise the
197    ///  FitsHeader::fluxUnits parameter is updated and the pixel array
198    ///  is converted accordingly.
[434]199
[899]200    if(newUnit!=""){
[434]201
[443]202      if(oldUnit != newUnit){
[434]203
[443]204        if(this->par.isVerbose()){
205          std::cout << "Converting flux units from " << oldUnit << " to " << newUnit << "... ";
206          std::cout << std::flush;
207        }
[434]208
[443]209        double scale,offset,power;
210        int status = wcsunits(oldUnit.c_str(), newUnit.c_str(), &scale, &offset, &power);
211
212        if(status==0){
[434]213       
[443]214          this->head.setFluxUnits( newUnit );
215          this->head.setIntFluxUnits();
[434]216
[899]217          if(whichArray == ARRAY){
218            if(this->arrayAllocated){
219              for(size_t i=0;i<this->numPixels;i++)
220                if(!this->isBlank(i)) this->array[i] = pow(scale * this->array[i] + offset, power);
221            }
[496]222          }
[899]223          else if(whichArray==RECON){
224            if(this->reconAllocated){
225              for(size_t i=0;i<this->numPixels;i++)
226                if(!this->isBlank(i)) this->recon[i] = pow(scale * this->recon[i] + offset, power);
227            }
228          }
229          else if(whichArray==BASELINE){
230            if(this->baselineAllocated){
231              for(size_t i=0;i<this->numPixels;i++)
232                if(!this->isBlank(i)) this->baseline[i] = pow(scale * this->baseline[i] + offset, power);
233            }
234          }
[443]235          if(this->par.isVerbose()) {
236            std::cout << " Done.\n";
237          }
[434]238        }
[443]239        else{
240          if(this->par.isVerbose()) std::cout << "\n";
[913]241          DUCHAMPWARN("convertFluxUnits", "Could not convert units from " << oldUnit << " to " << newUnit << ". Leaving BUNIT as " << oldUnit);
[443]242        }
[434]243      }
244    }
245
246  }
247
248
[3]249}
Note: See TracBrowser for help on using the repository browser.