source: trunk/src/STAsciiWriter.cpp @ 1375

Last change on this file since 1375 was 1375, checked in by mar637, 17 years ago

export WCS info to ASCII file, this required returng const& of STSubTables. This partly addresses Ticket #110

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.8 KB
Line 
1//#---------------------------------------------------------------------------
2//# STAsciiWriter.cc: ASAP class to write out single dish spectra as FITS images
3//#---------------------------------------------------------------------------
4//# Copyright (C) 2004
5//# ATNF
6//#
7//# This program is free software; you can redistribute it and/or modify it
8//# under the terms of the GNU General Public License as published by the Free
9//# Software Foundation; either version 2 of the License, or (at your option)
10//# any later version.
11//#
12//# This program is distributed in the hope that it will be useful, but
13//# WITHOUT ANY WARRANTY; without even the implied warranty of
14//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
15//# Public License for more details.
16//#
17//# You should have received a copy of the GNU General Public License along
18//# with this program; if not, write to the Free Software Foundation, Inc.,
19//# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
20//#
21//# Correspondence concerning this software should be addressed as follows:
22//#        Internet email: Malte.Marquarding@csiro.au
23//#        Postal address: Malte Marquarding,
24//#                        Australia Telescope National Facility,
25//#                        P.O. Box 76,
26//#                        Epping, NSW, 2121,
27//#                        AUSTRALIA
28//#
29//# $Id: STAsciiWriter.cpp 1375 2007-07-12 01:57:05Z mar637 $
30//#---------------------------------------------------------------------------
31
32#include <casa/aips.h>
33#include <casa/Arrays/Array.h>
34#include <casa/Arrays/Matrix.h>
35#include <casa/Arrays/Vector.h>
36#include <casa/Arrays/VectorIter.h>
37#include <casa/Utilities/CountedPtr.h>
38#include <casa/Quanta/Quantum.h>
39#include <casa/Quanta/MVAngle.h>
40#include <casa/Utilities/Assert.h>
41
42#include <casa/fstream.h>
43#include <casa/sstream.h>
44#include <casa/iomanip.h>
45
46#include <measures/Measures/MEpoch.h>
47
48#include <tables/Tables/Table.h>
49#include <tables/Tables/TableIter.h>
50#include <tables/Tables/TableRecord.h>
51#include <casa/Containers/RecordField.h>
52#include <tables/Tables/TableRow.h>
53#include <tables/Tables/ScalarColumn.h>
54#include <tables/Tables/ArrayColumn.h>
55
56#include "STDefs.h"
57#include "STHeader.h"
58#include "Scantable.h"
59#include "STAsciiWriter.h"
60
61using namespace casa;
62using namespace asap;
63
64
65STAsciiWriter::STAsciiWriter()
66{;}
67
68STAsciiWriter::~STAsciiWriter()
69{;}
70
71
72Bool STAsciiWriter::write(const Scantable& stable, const String& fileName)
73{
74
75// Get global Header from Table
76
77   STHeader hdr = stable.getHeader();
78
79// Column keywords
80
81   Table tab = stable.table();
82
83// Temps
84
85   const Unit RAD(String("rad"));
86
87// Open and write header file
88
89   String rootName(fileName);
90   if (rootName.length()==0) rootName = String("ascii");
91
92  Block<String> cols(4);
93  cols[0] = String("SCANNO");
94  cols[1] = String("CYCLENO");
95  cols[2] = String("BEAMNO");
96  cols[3] = String("IFNO");
97  TableIterator iter(tab, cols);
98  // Open data file
99  while ( !iter.pastEnd() ) {
100    Table t = iter.table();
101    ROTableRow row(t);
102    const TableRecord& rec = row.get(0);
103    String dirtype = stable.getDirectionRefString();
104    ostringstream onstr;
105    onstr << "SCAN" << rec.asuInt("SCANNO")
106    << "_CYCLE" << rec.asuInt("CYCLENO")
107    << "_BEAM" << rec.asuInt("BEAMNO")
108    << "_IF" << rec.asuInt("IFNO");
109    String fName = rootName + String(onstr) + String(".txt");
110    ofstream of(fName.chars(), ios::trunc);
111    int row0 = t.rowNumbers(tab)[0];
112    MDirection mdir = stable.getDirection(row0);
113    of << setfill('#') << setw(70) << "" << setfill(' ') << endl;
114    addLine(of, "Name", rec.asString("SRCNAME"));
115    addLine(of, "Position", String(dirtype+ " "+formatDirection(mdir)));
116    addLine(of, "Time", stable.getTime(row0,true));
117    addLine(of, "Flux Unit", hdr.fluxunit);
118    addLine(of, "Pol Type", stable.getPolType());
119    addLine(of, "Abcissa", stable.getAbcissaLabel(row0));
120    addLine(of, "Beam No", rec.asuInt("BEAMNO"));
121    addLine(of, "IF No", rec.asuInt("IFNO"));
122    String wcs = stable.frequencies().print(rec.asuInt("FREQ_ID"), True);
123    addLine(of, "WCS", wcs);
124    addLine(of, "Rest Freq.",
125            stable.molecules().getRestFrequency(rec.asuInt("MOLECULE_ID") ));
126    of << setfill('#') << setw(70) << "" << setfill(' ') << endl;
127
128    of << std::left << setw(16) << "x";
129    for ( unsigned int i=0; i<t.nrow(); ++i ) {
130      ostringstream os,os1;
131      os << "y" << i;
132      os1 << "yf" << i;
133      of << setw(16) << String(os);
134      of << setw(7) << String(os1);
135    }
136    of << endl;
137    std::vector<double> abc = stable.getAbcissa(row0);
138    ROArrayColumn<Float> specCol(t,"SPECTRA");
139    ROArrayColumn<uChar> flagCol(t,"FLAGTRA");
140    Matrix<Float> specs = specCol.getColumn();
141    Matrix<uChar> flags = flagCol.getColumn();
142    for ( unsigned int i=0; i<specs.nrow(); ++i ) {
143      of << setw(16) << setprecision(8) << abc[i] ;
144      for ( unsigned int j=0; j<specs.ncolumn(); ++j ) {
145        of << setw(16) << setprecision(8) << specs(i,j) ;
146        of << setw(7) << Int(flags(i,j));
147      }
148      of << endl;
149    }
150    of.close();
151    ostringstream oss;
152    oss << "Wrote " << fName;
153    pushLog(String(oss));
154    ++iter;
155  }
156  return True;
157}
158
159
160String STAsciiWriter::formatDirection(const MDirection& md) const
161{
162  Vector<Double> t = md.getAngle(Unit(String("rad"))).getValue();
163  Int prec = 7;
164
165  MVAngle mvLon(t[0]);
166  String sLon = mvLon.string(MVAngle::TIME,prec);
167  uInt tp = md.getRef().getType();
168  if (tp == MDirection::GALACTIC ||
169      tp == MDirection::SUPERGAL ) {
170    sLon = mvLon(0.0).string(MVAngle::ANGLE_CLEAN,prec);
171  }
172  MVAngle mvLat(t[1]);
173  String sLat = mvLat.string(MVAngle::ANGLE+MVAngle::DIG2,prec);
174  return sLon + String(" ") + sLat;
175}
176
177template <class T>
178void STAsciiWriter::addLine(ostream& of, const String& lbl, const T& value)
179{
180  String label = lbl+String(": ");
181  of << std::right << "# " << setw(15) << label << std::left
182     << setw(52) << value << setw(0) << "#"<< endl;
183}
Note: See TracBrowser for help on using the repository browser.