[470] | 1 | //#---------------------------------------------------------------------------
|
---|
[822] | 2 | //# STWriter.cc: ASAP class to write out single dish spectra.
|
---|
[28] | 3 | //#---------------------------------------------------------------------------
|
---|
| 4 | //# Copyright (C) 2004
|
---|
[125] | 5 | //# ATNF
|
---|
[28] | 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: STWriter.cpp 1446 2008-11-12 06:04:01Z TakTsutsumi $
|
---|
| 30 | //#---------------------------------------------------------------------------
|
---|
| 31 |
|
---|
| 32 | #include <string>
|
---|
| 33 |
|
---|
[81] | 34 | #include <casa/aips.h>
|
---|
[470] | 35 | #include <casa/Arrays/Array.h>
|
---|
| 36 | #include <casa/Arrays/Vector.h>
|
---|
[81] | 37 | #include <casa/BasicSL/Complex.h>
|
---|
| 38 | #include <casa/Utilities/CountedPtr.h>
|
---|
[470] | 39 | #include <casa/Utilities/Assert.h>
|
---|
[28] | 40 |
|
---|
| 41 | #include <atnf/PKSIO/PKSMS2writer.h>
|
---|
| 42 | #include <atnf/PKSIO/PKSSDwriter.h>
|
---|
| 43 |
|
---|
[827] | 44 | #include <tables/Tables/Table.h>
|
---|
| 45 | #include <tables/Tables/TableIter.h>
|
---|
| 46 | #include <tables/Tables/TableRow.h>
|
---|
[324] | 47 | #include <tables/Tables/ArrayColumn.h>
|
---|
| 48 |
|
---|
[827] | 49 | //#include "SDFITSImageWriter.h"
|
---|
[988] | 50 | #include "STAsciiWriter.h"
|
---|
[901] | 51 | #include "STHeader.h"
|
---|
[324] | 52 |
|
---|
[822] | 53 | #include "STWriter.h"
|
---|
[28] | 54 |
|
---|
[125] | 55 | using namespace casa;
|
---|
[827] | 56 | namespace asap {
|
---|
[28] | 57 |
|
---|
[822] | 58 | STWriter::STWriter(const std::string &format)
|
---|
[28] | 59 | {
|
---|
[988] | 60 | format_ = format;
|
---|
| 61 | String t(format_);
|
---|
[450] | 62 | t.upcase();
|
---|
| 63 | if (t== "MS2") {
|
---|
[988] | 64 | writer_ = new PKSMS2writer();
|
---|
[450] | 65 | } else if (t== "SDFITS") {
|
---|
[988] | 66 | writer_ = new PKSSDwriter();
|
---|
[450] | 67 | } else if (t== "ASCII") {
|
---|
[988] | 68 | writer_ = 0;
|
---|
[450] | 69 | } else {
|
---|
[988] | 70 | throw (AipsError("Unrecognized export format"));
|
---|
[28] | 71 | }
|
---|
| 72 | }
|
---|
| 73 |
|
---|
[822] | 74 | STWriter::~STWriter()
|
---|
[28] | 75 | {
|
---|
[988] | 76 | if (writer_) {
|
---|
| 77 | delete writer_;
|
---|
[192] | 78 | }
|
---|
[28] | 79 | }
|
---|
| 80 |
|
---|
[822] | 81 | Int STWriter::setFormat(const std::string &format)
|
---|
[28] | 82 | {
|
---|
[988] | 83 | if (format != format_) {
|
---|
| 84 | if (writer_) delete writer_;
|
---|
[450] | 85 | }
|
---|
[827] | 86 |
|
---|
[988] | 87 | format_ = format;
|
---|
| 88 | String t(format_);
|
---|
[450] | 89 | t.upcase();
|
---|
| 90 | if (t== "MS2") {
|
---|
[988] | 91 | writer_ = new PKSMS2writer();
|
---|
[450] | 92 | } else if (t== "SDFITS") {
|
---|
[988] | 93 | writer_ = new PKSSDwriter();
|
---|
[450] | 94 | } else if (t== "ASCII") {
|
---|
[988] | 95 | writer_ = 0;
|
---|
[450] | 96 | } else {
|
---|
| 97 | throw (AipsError("Unrecognized Format"));
|
---|
[28] | 98 | }
|
---|
| 99 | return 0;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
[827] | 102 | Int STWriter::write(const CountedPtr<Scantable> in,
|
---|
| 103 | const std::string &filename)
|
---|
[28] | 104 | {
|
---|
[192] | 105 |
|
---|
[1280] | 106 | if (format_=="ASCII") {
|
---|
| 107 | STAsciiWriter iw;
|
---|
| 108 | if (iw.write(*in, filename)) {
|
---|
| 109 | return 0;
|
---|
| 110 | } else {
|
---|
| 111 | return 1;
|
---|
| 112 | }
|
---|
[199] | 113 | }
|
---|
[192] | 114 |
|
---|
[827] | 115 | // MS or SDFITS
|
---|
[192] | 116 |
|
---|
[28] | 117 | // Extract the header from the table.
|
---|
[1387] | 118 | // this is a little different from what I have done
|
---|
| 119 | // before. Need to check with the Offline User Test data
|
---|
[901] | 120 | STHeader hdr = in->getHeader();
|
---|
[1060] | 121 | //const Int nPol = hdr.npol;
|
---|
| 122 | //const Int nChan = hdr.nchan;
|
---|
[1295] | 123 | std::vector<uint> ifs = in->getIFNos();
|
---|
| 124 | int nIF = in->nif();//ifs.size();
|
---|
[1060] | 125 | Vector<uInt> nPol(nIF),nChan(nIF);
|
---|
| 126 | Vector<Bool> havexpol(nIF);
|
---|
[1387] | 127 | String fluxUnit = hdr.fluxunit;
|
---|
| 128 |
|
---|
[1295] | 129 | nPol = 0;nChan = 0; havexpol = False;
|
---|
[1305] | 130 | for (uint i=0;i<ifs.size();++i) {
|
---|
[1295] | 131 | nPol(ifs[i]) = in->npol();
|
---|
| 132 | nChan(ifs[i]) = in->nchan(ifs[i]);
|
---|
| 133 | havexpol(ifs[i]) = nPol(ifs[i]) > 2;
|
---|
[1060] | 134 | }
|
---|
[28] | 135 |
|
---|
[324] | 136 | const Table table = in->table();
|
---|
| 137 |
|
---|
[28] | 138 | // Create the output file and write static data.
|
---|
| 139 | Int status;
|
---|
[1060] | 140 | status = writer_->create(String(filename), hdr.observer, hdr.project,
|
---|
[28] | 141 | hdr.antennaname, hdr.antennaposition,
|
---|
| 142 | hdr.obstype, hdr.equinox, hdr.freqref,
|
---|
[1387] | 143 | nChan, nPol, havexpol, False, fluxUnit);
|
---|
[996] | 144 | if ( status ) {
|
---|
[717] | 145 | throw(AipsError("Failed to create output file"));
|
---|
[28] | 146 | }
|
---|
| 147 |
|
---|
[999] | 148 | Double srcVel;
|
---|
[822] | 149 |
|
---|
| 150 | String fieldName, srcName, tcalTime;
|
---|
| 151 | Vector<Float> calFctr, sigma, tcal, tsys;
|
---|
[999] | 152 | Vector<Double> direction(2), scanRate(2), srcDir(2), srcPM(2);
|
---|
[822] | 153 | Matrix<Float> spectra;
|
---|
| 154 | Matrix<uChar> flagtra;
|
---|
| 155 | Complex xCalFctr;
|
---|
[28] | 156 | Int count = 0;
|
---|
[822] | 157 | Int scanno = 1;
|
---|
| 158 | // use spearate iterators to ensure renumbering of all numbers
|
---|
| 159 | TableIterator scanit(table, "SCANNO");
|
---|
| 160 | while (!scanit.pastEnd() ) {
|
---|
| 161 | Table stable = scanit.table();
|
---|
[988] | 162 | TableIterator beamit(stable, "BEAMNO");
|
---|
[822] | 163 | Int beamno = 1;
|
---|
| 164 | while (!beamit.pastEnd() ) {
|
---|
| 165 | Table btable = beamit.table();
|
---|
[827] | 166 | // position only varies by beam
|
---|
[1446] | 167 | // No, we want to pointing data which varies by cycle!
|
---|
[827] | 168 | MDirection::ScalarColumn dirCol(btable, "DIRECTION");
|
---|
| 169 | Vector<Double> direction = dirCol(0).getAngle("rad").getValue();
|
---|
[988] | 170 | TableIterator cycit(btable, "CYCLENO");
|
---|
[999] | 171 | ROArrayColumn<Double> srateCol(btable, "SCANRATE");
|
---|
| 172 | srateCol.get(0, scanRate);
|
---|
| 173 | ROArrayColumn<Double> spmCol(btable, "SRCPROPERMOTION");
|
---|
| 174 | spmCol.get(0, srcPM);
|
---|
| 175 | ROArrayColumn <Double> sdirCol(btable, "SRCDIRECTION");
|
---|
| 176 | sdirCol.get(0, srcDir);
|
---|
| 177 | ROScalarColumn<Double> svelCol(btable, "SRCVELOCITY");
|
---|
| 178 | svelCol.get(0, srcVel);
|
---|
[1295] | 179 | ROScalarColumn<uInt> bCol(btable, "BEAMNO");
|
---|
| 180 | beamno = bCol(0)+1;
|
---|
[988] | 181 | Int cycno = 1;
|
---|
| 182 | while (!cycit.pastEnd() ) {
|
---|
| 183 | Table ctable = cycit.table();
|
---|
[1446] | 184 | //MDirection::ScalarColumn dirCol(ctable, "DIRECTION");
|
---|
| 185 | //Vector<Double> direction = dirCol(0).getAngle("rad").getValue();
|
---|
[988] | 186 | TableIterator ifit(ctable, "IFNO");
|
---|
| 187 | Int ifno = 1;
|
---|
| 188 | while (!ifit.pastEnd() ) {
|
---|
| 189 | Table itable = ifit.table();
|
---|
| 190 | TableRow row(itable);
|
---|
[822] | 191 | // use the first row to fill in all the "metadata"
|
---|
[827] | 192 | const TableRecord& rec = row.get(0);
|
---|
[988] | 193 | ROArrayColumn<Float> specCol(itable, "SPECTRA");
|
---|
[1295] | 194 | ifno = rec.asuInt("IFNO")+1;
|
---|
[822] | 195 | uInt nchan = specCol(0).nelements();
|
---|
[1446] | 196 | //Double cdelt,crval,crpix, restfreq;
|
---|
| 197 | Double cdelt,crval,crpix;
|
---|
| 198 | Vector<Double> restfreq;
|
---|
[827] | 199 | Float focusAxi, focusTan, focusRot,
|
---|
| 200 | temperature, pressure, humidity, windSpeed, windAz;
|
---|
[988] | 201 | Float tmp0,tmp1,tmp2,tmp3,tmp4;
|
---|
[827] | 202 | Vector<Float> tcalval;
|
---|
[1446] | 203 | //String stmp0,stmp1, tcalt;
|
---|
| 204 | String tcalt;
|
---|
| 205 | Vector<String> stmp0, stmp1;
|
---|
[822] | 206 | in->frequencies().getEntry(crpix,crval,cdelt, rec.asuInt("FREQ_ID"));
|
---|
[988] | 207 | in->focus().getEntry(focusAxi, focusTan, focusRot,
|
---|
| 208 | tmp0,tmp1,tmp2,tmp3,tmp4,
|
---|
| 209 | rec.asuInt("FOCUS_ID"));
|
---|
| 210 | in->molecules().getEntry(restfreq,stmp0,stmp1,rec.asuInt("MOLECULE_ID"));
|
---|
[827] | 211 | in->tcal().getEntry(tcalt,tcalval,rec.asuInt("TCAL_ID"));
|
---|
| 212 | in->weather().getEntry(temperature, pressure, humidity,
|
---|
| 213 | windSpeed, windAz,
|
---|
| 214 | rec.asuInt("WEATHER_ID"));
|
---|
[822] | 215 | Double pixel = Double(nchan/2);
|
---|
| 216 | Double refFreqNew = (pixel-crpix)*cdelt + crval;
|
---|
| 217 | // ok, now we have nrows for the n polarizations in this table
|
---|
| 218 | Matrix<Float> specs;
|
---|
| 219 | Matrix<uChar> flags;
|
---|
| 220 | Vector<Complex> xpol;
|
---|
[988] | 221 | polConversion(specs, flags, xpol, itable);
|
---|
| 222 | Vector<Float> tsys = tsysFromTable(itable);
|
---|
[822] | 223 | // dummy data
|
---|
[1446] | 224 | //uInt npol;
|
---|
| 225 | //if ( hdr.antennaname == "GBT" ) {
|
---|
| 226 | // npol = nPolUsed;
|
---|
| 227 | //}
|
---|
| 228 | //else {
|
---|
| 229 | // npol = specs.ncolumn();
|
---|
| 230 | //}
|
---|
[827] | 231 | uInt npol = specs.ncolumn();
|
---|
[988] | 232 |
|
---|
[822] | 233 | Matrix<Float> baseLin(npol,2, 0.0f);
|
---|
| 234 | Matrix<Float> baseSub(npol,9, 0.0f);
|
---|
| 235 | Complex xCalFctr;
|
---|
| 236 | Vector<Double> scanRate(2, 0.0);
|
---|
| 237 | Vector<Float> sigma(npol, 0.0f);
|
---|
| 238 | Vector<Float> calFctr(npol, 0.0f);
|
---|
[996] | 239 | status = writer_->write(scanno, cycno, rec.asDouble("TIME"),
|
---|
[822] | 240 | rec.asDouble("INTERVAL"),
|
---|
| 241 | rec.asString("FIELDNAME"),
|
---|
| 242 | rec.asString("SRCNAME"),
|
---|
[1072] | 243 | srcDir, srcPM, srcVel,hdr.obstype,
|
---|
[822] | 244 | ifno,
|
---|
| 245 | refFreqNew, nchan*abs(cdelt), cdelt,
|
---|
| 246 | restfreq,
|
---|
[1446] | 247 | tcalval,
|
---|
[827] | 248 | tcalt,
|
---|
[822] | 249 | rec.asFloat("AZIMUTH"),
|
---|
| 250 | rec.asFloat("ELEVATION"),
|
---|
| 251 | rec.asFloat("PARANGLE"),
|
---|
[988] | 252 | focusAxi, focusTan, focusRot,
|
---|
[827] | 253 | temperature,
|
---|
| 254 | pressure, humidity, windSpeed, windAz,
|
---|
[988] | 255 | rec.asInt("REFBEAMNO")+1, beamno,
|
---|
[827] | 256 | direction,
|
---|
[999] | 257 | scanRate,
|
---|
[827] | 258 | tsys,
|
---|
[822] | 259 | sigma, calFctr,// not in scantable
|
---|
| 260 | baseLin, baseSub,// not in scantable
|
---|
| 261 | specs, flags,
|
---|
| 262 | xCalFctr,//
|
---|
[996] | 263 | xpol);
|
---|
| 264 | if ( status ) {
|
---|
[988] | 265 | writer_->close();
|
---|
| 266 | throw(AipsError("STWriter: Failed to export Scantable."));
|
---|
[822] | 267 | }
|
---|
[999] | 268 | ++count;
|
---|
[1446] | 269 | ++ifno;
|
---|
[988] | 270 | ++ifit;
|
---|
[470] | 271 | }
|
---|
[988] | 272 | ++cycno;
|
---|
| 273 | ++cycit;
|
---|
[28] | 274 | }
|
---|
[1446] | 275 | ++beamno;
|
---|
[822] | 276 | ++beamit;
|
---|
[28] | 277 | }
|
---|
[822] | 278 | ++scanno;
|
---|
| 279 | ++scanit;
|
---|
[28] | 280 | }
|
---|
[717] | 281 | ostringstream oss;
|
---|
[999] | 282 | oss << "STWriter: wrote " << count << " rows to " << filename;
|
---|
[717] | 283 | pushLog(String(oss));
|
---|
[988] | 284 | writer_->close();
|
---|
[1387] | 285 | //if MS2 delete POINTING table exists and copy the one in the keyword
|
---|
| 286 | if ( format_ == "MS2" ) {
|
---|
| 287 | replacePtTab(table, filename);
|
---|
[1446] | 288 | }
|
---|
[28] | 289 | return 0;
|
---|
| 290 | }
|
---|
[470] | 291 |
|
---|
[827] | 292 | Vector<Float> STWriter::tsysFromTable(const Table& tab)
|
---|
| 293 | {
|
---|
| 294 | ROArrayColumn<Float> tsysCol(tab, "TSYS");
|
---|
| 295 | Vector<Float> out(tab.nrow());
|
---|
| 296 | Vector<Float> tmp;
|
---|
| 297 | for (uInt i=0; i<tab.nrow(); ++i) {
|
---|
[988] | 298 | tmp.resize();
|
---|
[827] | 299 | tmp = tsysCol(i);
|
---|
| 300 | out[i] = tmp[0];
|
---|
| 301 | }
|
---|
[988] | 302 | return out;
|
---|
[827] | 303 | }
|
---|
| 304 |
|
---|
| 305 | void STWriter::polConversion( Matrix< Float >& specs, Matrix< uChar >& flags,
|
---|
[822] | 306 | Vector< Complex > & xpol, const Table & tab )
|
---|
| 307 | {
|
---|
| 308 | String poltype = tab.keywordSet().asString("POLTYPE");
|
---|
[1259] | 309 | if ( poltype == "stokes") {
|
---|
[822] | 310 | String msg = "poltype = " + poltype + " not yet supported in output.";
|
---|
[988] | 311 | throw(AipsError(msg));
|
---|
| 312 | }
|
---|
[827] | 313 | ROArrayColumn<Float> specCol(tab, "SPECTRA");
|
---|
| 314 | ROArrayColumn<uChar> flagCol(tab, "FLAGTRA");
|
---|
[822] | 315 | uInt nchan = specCol(0).nelements();
|
---|
[988] | 316 | uInt ncol = (tab.nrow()==1 ? 1: 2 );
|
---|
| 317 | specs.resize(nchan, ncol);
|
---|
| 318 | flags.resize(nchan, ncol);
|
---|
[822] | 319 | // the linears
|
---|
[988] | 320 | for (uInt i=0; i<ncol; ++i) {
|
---|
[822] | 321 | specs.column(i) = specCol(i);
|
---|
| 322 | flags.column(i) = flagCol(i);
|
---|
| 323 | }
|
---|
| 324 | // now the complex if exists
|
---|
| 325 | Bool hasxpol = False;
|
---|
| 326 | xpol.resize();
|
---|
[827] | 327 | if ( tab.nrow() == 4 ) {
|
---|
[822] | 328 | hasxpol = True;
|
---|
| 329 | xpol.resize(nchan);
|
---|
| 330 | Vector<Float> reals, imags;
|
---|
| 331 | reals = specCol(2); imags = specCol(3);
|
---|
| 332 | for (uInt k=0; k < nchan; ++k) {
|
---|
[827] | 333 | xpol[k] = Complex(reals[k], imags[k]);
|
---|
[822] | 334 | }
|
---|
| 335 | }
|
---|
| 336 | }
|
---|
[827] | 337 |
|
---|
[1387] | 338 | // For writing MS data, if there is the reference to
|
---|
| 339 | // original pointing table it replace it by it.
|
---|
| 340 | void STWriter::replacePtTab (const Table& tab, const std::string& fname)
|
---|
| 341 | {
|
---|
| 342 | String oldPtTabName = fname;
|
---|
| 343 | oldPtTabName.append("/POINTING");
|
---|
| 344 | if ( tab.keywordSet().isDefined("POINTING") ) {
|
---|
| 345 | String PointingTab = tab.keywordSet().asString("POINTING");
|
---|
| 346 | if ( Table::isReadable(PointingTab) ) {
|
---|
| 347 | Table newPtTab(PointingTab, Table::Old);
|
---|
| 348 | newPtTab.copy(oldPtTabName, Table::New);
|
---|
| 349 | ostringstream oss;
|
---|
| 350 | oss << "STWriter: copied " <<PointingTab << " to " << fname;
|
---|
| 351 | pushLog(String(oss));
|
---|
| 352 | }
|
---|
| 353 | }
|
---|
| 354 | }
|
---|
[827] | 355 |
|
---|
| 356 | }
|
---|