source: trunk/src/Scantable.cpp @ 1727

Last change on this file since 1727 was 1727, checked in by Malte Marquarding, 14 years ago

Ticket #181: temporary fix for saving memory tables with selection. This needs to be fixed in casacore itself. Remove when new release of casacore is available.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 34.4 KB
Line 
1//
2// C++ Implementation: Scantable
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2005
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#include <map>
13
14#include <casa/aips.h>
15#include <casa/iostream.h>
16#include <casa/iomanip.h>
17#include <casa/OS/Path.h>
18#include <casa/OS/File.h>
19#include <casa/Arrays/Array.h>
20#include <casa/Arrays/ArrayMath.h>
21#include <casa/Arrays/MaskArrMath.h>
22#include <casa/Arrays/ArrayLogical.h>
23#include <casa/Arrays/ArrayAccessor.h>
24#include <casa/Arrays/Vector.h>
25#include <casa/Arrays/VectorSTLIterator.h>
26#include <casa/BasicMath/Math.h>
27#include <casa/BasicSL/Constants.h>
28#include <casa/Quanta/MVAngle.h>
29#include <casa/Containers/RecordField.h>
30#include <casa/Utilities/GenSort.h>
31
32#include <tables/Tables/TableParse.h>
33#include <tables/Tables/TableDesc.h>
34#include <tables/Tables/TableCopy.h>
35#include <tables/Tables/SetupNewTab.h>
36#include <tables/Tables/ScaColDesc.h>
37#include <tables/Tables/ArrColDesc.h>
38#include <tables/Tables/TableRow.h>
39#include <tables/Tables/TableVector.h>
40#include <tables/Tables/TableIter.h>
41
42#include <tables/Tables/ExprNode.h>
43#include <tables/Tables/TableRecord.h>
44#include <casa/Quanta/MVTime.h>
45#include <casa/Quanta/MVAngle.h>
46#include <measures/Measures/MeasRef.h>
47#include <measures/Measures/MeasTable.h>
48// needed to avoid error in .tcc
49#include <measures/Measures/MCDirection.h>
50//
51#include <measures/Measures/MDirection.h>
52#include <measures/Measures/MFrequency.h>
53#include <measures/Measures/MEpoch.h>
54#include <measures/TableMeasures/TableMeasRefDesc.h>
55#include <measures/TableMeasures/TableMeasValueDesc.h>
56#include <measures/TableMeasures/TableMeasDesc.h>
57#include <measures/TableMeasures/ScalarMeasColumn.h>
58#include <coordinates/Coordinates/CoordinateUtil.h>
59
60#include "Scantable.h"
61#include "STPolLinear.h"
62#include "STPolCircular.h"
63#include "STPolStokes.h"
64#include "STAttr.h"
65#include "MathUtils.h"
66
67using namespace casa;
68
69namespace asap {
70
71std::map<std::string, STPol::STPolFactory *> Scantable::factories_;
72
73void Scantable::initFactories() {
74  if ( factories_.empty() ) {
75    Scantable::factories_["linear"] = &STPolLinear::myFactory;
76    Scantable::factories_["circular"] = &STPolCircular::myFactory;
77    Scantable::factories_["stokes"] = &STPolStokes::myFactory;
78  }
79}
80
81Scantable::Scantable(Table::TableType ttype) :
82  type_(ttype)
83{
84  initFactories();
85  setupMainTable();
86  freqTable_ = STFrequencies(*this);
87  table_.rwKeywordSet().defineTable("FREQUENCIES", freqTable_.table());
88  weatherTable_ = STWeather(*this);
89  table_.rwKeywordSet().defineTable("WEATHER", weatherTable_.table());
90  focusTable_ = STFocus(*this);
91  table_.rwKeywordSet().defineTable("FOCUS", focusTable_.table());
92  tcalTable_ = STTcal(*this);
93  table_.rwKeywordSet().defineTable("TCAL", tcalTable_.table());
94  moleculeTable_ = STMolecules(*this);
95  table_.rwKeywordSet().defineTable("MOLECULES", moleculeTable_.table());
96  historyTable_ = STHistory(*this);
97  table_.rwKeywordSet().defineTable("HISTORY", historyTable_.table());
98  fitTable_ = STFit(*this);
99  table_.rwKeywordSet().defineTable("FIT", fitTable_.table());
100  originalTable_ = table_;
101  attach();
102}
103
104Scantable::Scantable(const std::string& name, Table::TableType ttype) :
105  type_(ttype)
106{
107  initFactories();
108  Table tab(name, Table::Update);
109  uInt version = tab.keywordSet().asuInt("VERSION");
110  if (version != version_) {
111    throw(AipsError("Unsupported version of ASAP file."));
112  }
113  if ( type_ == Table::Memory ) {
114    table_ = tab.copyToMemoryTable(generateName());
115  } else {
116    table_ = tab;
117  }
118
119  attachSubtables();
120  originalTable_ = table_;
121  attach();
122}
123
124Scantable::Scantable( const Scantable& other, bool clear )
125{
126  // with or without data
127  String newname = String(generateName());
128  type_ = other.table_.tableType();
129  if ( other.table_.tableType() == Table::Memory ) {
130      if ( clear ) {
131        table_ = TableCopy::makeEmptyMemoryTable(newname,
132                                                 other.table_, True);
133      } else
134        table_ = other.table_.copyToMemoryTable(newname);
135  } else {
136      other.table_.deepCopy(newname, Table::New, False,
137                            other.table_.endianFormat(),
138                            Bool(clear));
139      table_ = Table(newname, Table::Update);
140      table_.markForDelete();
141  }
142  /// @todo reindex SCANNO, recompute nbeam, nif, npol
143  if ( clear ) copySubtables(other);
144  attachSubtables();
145  originalTable_ = table_;
146  attach();
147}
148
149void Scantable::copySubtables(const Scantable& other) {
150  Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
151  TableCopy::copyRows(t, other.freqTable_.table());
152  t = table_.rwKeywordSet().asTable("FOCUS");
153  TableCopy::copyRows(t, other.focusTable_.table());
154  t = table_.rwKeywordSet().asTable("WEATHER");
155  TableCopy::copyRows(t, other.weatherTable_.table());
156  t = table_.rwKeywordSet().asTable("TCAL");
157  TableCopy::copyRows(t, other.tcalTable_.table());
158  t = table_.rwKeywordSet().asTable("MOLECULES");
159  TableCopy::copyRows(t, other.moleculeTable_.table());
160  t = table_.rwKeywordSet().asTable("HISTORY");
161  TableCopy::copyRows(t, other.historyTable_.table());
162  t = table_.rwKeywordSet().asTable("FIT");
163  TableCopy::copyRows(t, other.fitTable_.table());
164}
165
166void Scantable::attachSubtables()
167{
168  freqTable_ = STFrequencies(table_);
169  focusTable_ = STFocus(table_);
170  weatherTable_ = STWeather(table_);
171  tcalTable_ = STTcal(table_);
172  moleculeTable_ = STMolecules(table_);
173  historyTable_ = STHistory(table_);
174  fitTable_ = STFit(table_);
175}
176
177Scantable::~Scantable()
178{
179  //cout << "~Scantable() " << this << endl;
180}
181
182void Scantable::setupMainTable()
183{
184  TableDesc td("", "1", TableDesc::Scratch);
185  td.comment() = "An ASAP Scantable";
186  td.rwKeywordSet().define("VERSION", uInt(version_));
187
188  // n Cycles
189  td.addColumn(ScalarColumnDesc<uInt>("SCANNO"));
190  // new index every nBeam x nIF x nPol
191  td.addColumn(ScalarColumnDesc<uInt>("CYCLENO"));
192
193  td.addColumn(ScalarColumnDesc<uInt>("BEAMNO"));
194  td.addColumn(ScalarColumnDesc<uInt>("IFNO"));
195  // linear, circular, stokes
196  td.rwKeywordSet().define("POLTYPE", String("linear"));
197  td.addColumn(ScalarColumnDesc<uInt>("POLNO"));
198
199  td.addColumn(ScalarColumnDesc<uInt>("FREQ_ID"));
200  td.addColumn(ScalarColumnDesc<uInt>("MOLECULE_ID"));
201  td.addColumn(ScalarColumnDesc<Int>("REFBEAMNO"));
202
203  td.addColumn(ScalarColumnDesc<Double>("TIME"));
204  TableMeasRefDesc measRef(MEpoch::UTC); // UTC as default
205  TableMeasValueDesc measVal(td, "TIME");
206  TableMeasDesc<MEpoch> mepochCol(measVal, measRef);
207  mepochCol.write(td);
208
209  td.addColumn(ScalarColumnDesc<Double>("INTERVAL"));
210
211  td.addColumn(ScalarColumnDesc<String>("SRCNAME"));
212  // Type of source (on=0, off=1, other=-1)
213  ScalarColumnDesc<Int> stypeColumn("SRCTYPE");
214  stypeColumn.setDefault(Int(-1));
215  td.addColumn(stypeColumn);
216  td.addColumn(ScalarColumnDesc<String>("FIELDNAME"));
217
218  //The actual Data Vectors
219  td.addColumn(ArrayColumnDesc<Float>("SPECTRA"));
220  td.addColumn(ArrayColumnDesc<uChar>("FLAGTRA"));
221  td.addColumn(ArrayColumnDesc<Float>("TSYS"));
222
223  td.addColumn(ArrayColumnDesc<Double>("DIRECTION",
224                                       IPosition(1,2),
225                                       ColumnDesc::Direct));
226  TableMeasRefDesc mdirRef(MDirection::J2000); // default
227  TableMeasValueDesc tmvdMDir(td, "DIRECTION");
228  // the TableMeasDesc gives the column a type
229  TableMeasDesc<MDirection> mdirCol(tmvdMDir, mdirRef);
230  // a uder set table type e.g. GALCTIC, B1950 ...
231  td.rwKeywordSet().define("DIRECTIONREF", String("J2000"));
232  // writing create the measure column
233  mdirCol.write(td);
234  td.addColumn(ScalarColumnDesc<Float>("AZIMUTH"));
235  td.addColumn(ScalarColumnDesc<Float>("ELEVATION"));
236  td.addColumn(ScalarColumnDesc<Float>("OPACITY"));
237
238  td.addColumn(ScalarColumnDesc<uInt>("TCAL_ID"));
239  ScalarColumnDesc<Int> fitColumn("FIT_ID");
240  fitColumn.setDefault(Int(-1));
241  td.addColumn(fitColumn);
242
243  td.addColumn(ScalarColumnDesc<uInt>("FOCUS_ID"));
244  td.addColumn(ScalarColumnDesc<uInt>("WEATHER_ID"));
245
246  // columns which just get dragged along, as they aren't used in asap
247  td.addColumn(ScalarColumnDesc<Double>("SRCVELOCITY"));
248  td.addColumn(ArrayColumnDesc<Double>("SRCPROPERMOTION"));
249  td.addColumn(ArrayColumnDesc<Double>("SRCDIRECTION"));
250  td.addColumn(ArrayColumnDesc<Double>("SCANRATE"));
251
252  td.rwKeywordSet().define("OBSMODE", String(""));
253
254  // Now create Table SetUp from the description.
255  SetupNewTable aNewTab(generateName(), td, Table::Scratch);
256  table_ = Table(aNewTab, type_, 0);
257  originalTable_ = table_;
258}
259
260
261void Scantable::attach()
262{
263  timeCol_.attach(table_, "TIME");
264  srcnCol_.attach(table_, "SRCNAME");
265  srctCol_.attach(table_, "SRCTYPE");
266  specCol_.attach(table_, "SPECTRA");
267  flagsCol_.attach(table_, "FLAGTRA");
268  tsysCol_.attach(table_, "TSYS");
269  cycleCol_.attach(table_,"CYCLENO");
270  scanCol_.attach(table_, "SCANNO");
271  beamCol_.attach(table_, "BEAMNO");
272  ifCol_.attach(table_, "IFNO");
273  polCol_.attach(table_, "POLNO");
274  integrCol_.attach(table_, "INTERVAL");
275  azCol_.attach(table_, "AZIMUTH");
276  elCol_.attach(table_, "ELEVATION");
277  dirCol_.attach(table_, "DIRECTION");
278  fldnCol_.attach(table_, "FIELDNAME");
279  rbeamCol_.attach(table_, "REFBEAMNO");
280
281  mfitidCol_.attach(table_,"FIT_ID");
282  mfreqidCol_.attach(table_, "FREQ_ID");
283  mtcalidCol_.attach(table_, "TCAL_ID");
284  mfocusidCol_.attach(table_, "FOCUS_ID");
285  mmolidCol_.attach(table_, "MOLECULE_ID");
286}
287
288void Scantable::setHeader(const STHeader& sdh)
289{
290  table_.rwKeywordSet().define("nIF", sdh.nif);
291  table_.rwKeywordSet().define("nBeam", sdh.nbeam);
292  table_.rwKeywordSet().define("nPol", sdh.npol);
293  table_.rwKeywordSet().define("nChan", sdh.nchan);
294  table_.rwKeywordSet().define("Observer", sdh.observer);
295  table_.rwKeywordSet().define("Project", sdh.project);
296  table_.rwKeywordSet().define("Obstype", sdh.obstype);
297  table_.rwKeywordSet().define("AntennaName", sdh.antennaname);
298  table_.rwKeywordSet().define("AntennaPosition", sdh.antennaposition);
299  table_.rwKeywordSet().define("Equinox", sdh.equinox);
300  table_.rwKeywordSet().define("FreqRefFrame", sdh.freqref);
301  table_.rwKeywordSet().define("FreqRefVal", sdh.reffreq);
302  table_.rwKeywordSet().define("Bandwidth", sdh.bandwidth);
303  table_.rwKeywordSet().define("UTC", sdh.utc);
304  table_.rwKeywordSet().define("FluxUnit", sdh.fluxunit);
305  table_.rwKeywordSet().define("Epoch", sdh.epoch);
306  table_.rwKeywordSet().define("POLTYPE", sdh.poltype);
307}
308
309STHeader Scantable::getHeader() const
310{
311  STHeader sdh;
312  table_.keywordSet().get("nBeam",sdh.nbeam);
313  table_.keywordSet().get("nIF",sdh.nif);
314  table_.keywordSet().get("nPol",sdh.npol);
315  table_.keywordSet().get("nChan",sdh.nchan);
316  table_.keywordSet().get("Observer", sdh.observer);
317  table_.keywordSet().get("Project", sdh.project);
318  table_.keywordSet().get("Obstype", sdh.obstype);
319  table_.keywordSet().get("AntennaName", sdh.antennaname);
320  table_.keywordSet().get("AntennaPosition", sdh.antennaposition);
321  table_.keywordSet().get("Equinox", sdh.equinox);
322  table_.keywordSet().get("FreqRefFrame", sdh.freqref);
323  table_.keywordSet().get("FreqRefVal", sdh.reffreq);
324  table_.keywordSet().get("Bandwidth", sdh.bandwidth);
325  table_.keywordSet().get("UTC", sdh.utc);
326  table_.keywordSet().get("FluxUnit", sdh.fluxunit);
327  table_.keywordSet().get("Epoch", sdh.epoch);
328  table_.keywordSet().get("POLTYPE", sdh.poltype);
329  return sdh;
330}
331
332void Scantable::setSourceType( int stype )
333{
334  if ( stype < 0 || stype > 1 )
335    throw(AipsError("Illegal sourcetype."));
336  TableVector<Int> tabvec(table_, "SRCTYPE");
337  tabvec = Int(stype);
338}
339
340bool Scantable::conformant( const Scantable& other )
341{
342  return this->getHeader().conformant(other.getHeader());
343}
344
345
346
347std::string Scantable::formatSec(Double x) const
348{
349  Double xcop = x;
350  MVTime mvt(xcop/24./3600.);  // make days
351
352  if (x < 59.95)
353    return  String("      ") + mvt.string(MVTime::TIME_CLEAN_NO_HM, 7)+"s";
354  else if (x < 3599.95)
355    return String("   ") + mvt.string(MVTime::TIME_CLEAN_NO_H,7)+" ";
356  else {
357    ostringstream oss;
358    oss << setw(2) << std::right << setprecision(1) << mvt.hour();
359    oss << ":" << mvt.string(MVTime::TIME_CLEAN_NO_H,7) << " ";
360    return String(oss);
361  }
362};
363
364std::string Scantable::formatDirection(const MDirection& md) const
365{
366  Vector<Double> t = md.getAngle(Unit(String("rad"))).getValue();
367  Int prec = 7;
368
369  MVAngle mvLon(t[0]);
370  String sLon = mvLon.string(MVAngle::TIME,prec);
371  uInt tp = md.getRef().getType();
372  if (tp == MDirection::GALACTIC ||
373      tp == MDirection::SUPERGAL ) {
374    sLon = mvLon(0.0).string(MVAngle::ANGLE_CLEAN,prec);
375  }
376  MVAngle mvLat(t[1]);
377  String sLat = mvLat.string(MVAngle::ANGLE+MVAngle::DIG2,prec);
378  return sLon + String(" ") + sLat;
379}
380
381
382std::string Scantable::getFluxUnit() const
383{
384  return table_.keywordSet().asString("FluxUnit");
385}
386
387void Scantable::setFluxUnit(const std::string& unit)
388{
389  String tmp(unit);
390  Unit tU(tmp);
391  if (tU==Unit("K") || tU==Unit("Jy")) {
392     table_.rwKeywordSet().define(String("FluxUnit"), tmp);
393  } else {
394     throw AipsError("Illegal unit - must be compatible with Jy or K");
395  }
396}
397
398void Scantable::setInstrument(const std::string& name)
399{
400  bool throwIt = true;
401  // create an Instrument to see if this is valid
402  STAttr::convertInstrument(name, throwIt);
403  String nameU(name);
404  nameU.upcase();
405  table_.rwKeywordSet().define(String("AntennaName"), nameU);
406}
407
408void Scantable::setFeedType(const std::string& feedtype)
409{
410  if ( Scantable::factories_.find(feedtype) ==  Scantable::factories_.end() ) {
411    std::string msg = "Illegal feed type "+ feedtype;
412    throw(casa::AipsError(msg));
413  }
414  table_.rwKeywordSet().define(String("POLTYPE"), feedtype);
415}
416
417MPosition Scantable::getAntennaPosition () const
418{
419  Vector<Double> antpos;
420  table_.keywordSet().get("AntennaPosition", antpos);
421  MVPosition mvpos(antpos(0),antpos(1),antpos(2));
422  return MPosition(mvpos);
423}
424
425void Scantable::makePersistent(const std::string& filename)
426{
427  String inname(filename);
428  Path path(inname);
429  /// @todo reindex SCANNO, recompute nbeam, nif, npol
430  inname = path.expandedName();
431  // WORKAROUND !!! for Table bug
432  // Remove when fixed in casacore
433  if ( table_.tableType() == Table::Memory  && selector_.empty() ) {
434    Table tab = table_.copyToMemoryTable(generateName());
435    tab.deepCopy(inname, Table::New);
436  } else {
437    table_.deepCopy(inname, Table::New);
438  }
439}
440
441int Scantable::nbeam( int scanno ) const
442{
443  if ( scanno < 0 ) {
444    Int n;
445    table_.keywordSet().get("nBeam",n);
446    return int(n);
447  } else {
448    // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
449    Table t = table_(table_.col("SCANNO") == scanno);
450    ROTableRow row(t);
451    const TableRecord& rec = row.get(0);
452    Table subt = t( t.col("IFNO") == Int(rec.asuInt("IFNO"))
453                    && t.col("POLNO") == Int(rec.asuInt("POLNO"))
454                    && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
455    ROTableVector<uInt> v(subt, "BEAMNO");
456    return int(v.nelements());
457  }
458  return 0;
459}
460
461int Scantable::nif( int scanno ) const
462{
463  if ( scanno < 0 ) {
464    Int n;
465    table_.keywordSet().get("nIF",n);
466    return int(n);
467  } else {
468    // take the first POLNO,BEAMNO,CYCLENO as nbeam shouldn't vary with these
469    Table t = table_(table_.col("SCANNO") == scanno);
470    ROTableRow row(t);
471    const TableRecord& rec = row.get(0);
472    Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
473                    && t.col("POLNO") == Int(rec.asuInt("POLNO"))
474                    && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
475    if ( subt.nrow() == 0 ) return 0;
476    ROTableVector<uInt> v(subt, "IFNO");
477    return int(v.nelements());
478  }
479  return 0;
480}
481
482int Scantable::npol( int scanno ) const
483{
484  if ( scanno < 0 ) {
485    Int n;
486    table_.keywordSet().get("nPol",n);
487    return n;
488  } else {
489    // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
490    Table t = table_(table_.col("SCANNO") == scanno);
491    ROTableRow row(t);
492    const TableRecord& rec = row.get(0);
493    Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
494                    && t.col("IFNO") == Int(rec.asuInt("IFNO"))
495                    && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
496    if ( subt.nrow() == 0 ) return 0;
497    ROTableVector<uInt> v(subt, "POLNO");
498    return int(v.nelements());
499  }
500  return 0;
501}
502
503int Scantable::ncycle( int scanno ) const
504{
505  if ( scanno < 0 ) {
506    Block<String> cols(2);
507    cols[0] = "SCANNO";
508    cols[1] = "CYCLENO";
509    TableIterator it(table_, cols);
510    int n = 0;
511    while ( !it.pastEnd() ) {
512      ++n;
513      ++it;
514    }
515    return n;
516  } else {
517    Table t = table_(table_.col("SCANNO") == scanno);
518    ROTableRow row(t);
519    const TableRecord& rec = row.get(0);
520    Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
521                    && t.col("POLNO") == Int(rec.asuInt("POLNO"))
522                    && t.col("IFNO") == Int(rec.asuInt("IFNO")) );
523    if ( subt.nrow() == 0 ) return 0;
524    return int(subt.nrow());
525  }
526  return 0;
527}
528
529
530int Scantable::nrow( int scanno ) const
531{
532  return int(table_.nrow());
533}
534
535int Scantable::nchan( int ifno ) const
536{
537  if ( ifno < 0 ) {
538    Int n;
539    table_.keywordSet().get("nChan",n);
540    return int(n);
541  } else {
542    // take the first SCANNO,POLNO,BEAMNO,CYCLENO as nbeam shouldn't
543    // vary with these
544    Table t = table_(table_.col("IFNO") == ifno);
545    if ( t.nrow() == 0 ) return 0;
546    ROArrayColumn<Float> v(t, "SPECTRA");
547    return v.shape(0)(0);
548  }
549  return 0;
550}
551
552int Scantable::nscan() const {
553  Vector<uInt> scannos(scanCol_.getColumn());
554  uInt nout = genSort( scannos, Sort::Ascending,
555                       Sort::QuickSort|Sort::NoDuplicates );
556  return int(nout);
557}
558
559int Scantable::getChannels(int whichrow) const
560{
561  return specCol_.shape(whichrow)(0);
562}
563
564int Scantable::getBeam(int whichrow) const
565{
566  return beamCol_(whichrow);
567}
568
569std::vector<uint> Scantable::getNumbers(const ScalarColumn<uInt>& col) const
570{
571  Vector<uInt> nos(col.getColumn());
572  uInt n = genSort( nos, Sort::Ascending, Sort::QuickSort|Sort::NoDuplicates );
573  nos.resize(n, True);
574  std::vector<uint> stlout;
575  nos.tovector(stlout);
576  return stlout;
577}
578
579int Scantable::getIF(int whichrow) const
580{
581  return ifCol_(whichrow);
582}
583
584int Scantable::getPol(int whichrow) const
585{
586  return polCol_(whichrow);
587}
588
589std::string Scantable::formatTime(const MEpoch& me, bool showdate) const
590{
591  MVTime mvt(me.getValue());
592  if (showdate)
593    mvt.setFormat(MVTime::YMD);
594  else
595    mvt.setFormat(MVTime::TIME);
596  ostringstream oss;
597  oss << mvt;
598  return String(oss);
599}
600
601void Scantable::calculateAZEL()
602{
603  MPosition mp = getAntennaPosition();
604  MEpoch::ROScalarColumn timeCol(table_, "TIME");
605  ostringstream oss;
606  oss << "Computed azimuth/elevation using " << endl
607      << mp << endl;
608  for (Int i=0; i<nrow(); ++i) {
609    MEpoch me = timeCol(i);
610    MDirection md = getDirection(i);
611    oss  << " Time: " << formatTime(me,False) << " Direction: " << formatDirection(md)
612         << endl << "     => ";
613    MeasFrame frame(mp, me);
614    Vector<Double> azel =
615        MDirection::Convert(md, MDirection::Ref(MDirection::AZEL,
616                                                frame)
617                            )().getAngle("rad").getValue();
618    azCol_.put(i,Float(azel[0]));
619    elCol_.put(i,Float(azel[1]));
620    oss << "azel: " << azel[0]/C::pi*180.0 << " "
621        << azel[1]/C::pi*180.0 << " (deg)" << endl;
622  }
623  pushLog(String(oss));
624}
625
626void Scantable::flag(const std::vector<bool>& msk, bool unflag)
627{
628  std::vector<bool>::const_iterator it;
629  uInt ntrue = 0;
630  for (it = msk.begin(); it != msk.end(); ++it) {
631    if ( *it ) {
632      ntrue++;
633    }
634  }
635  if ( selector_.empty()  && (msk.size() == 0 || msk.size() == ntrue) )
636    throw(AipsError("Trying to flag whole scantable."));
637  if ( msk.size() == 0 ) {
638    uChar userflag = 1 << 7;
639    if ( unflag ) {
640      userflag = 0 << 7;
641    }
642    for ( uInt i=0; i<table_.nrow(); ++i) {
643      Vector<uChar> flgs = flagsCol_(i);
644      flgs = userflag;
645      flagsCol_.put(i, flgs);
646    }
647    return;
648  }
649  if ( int(msk.size()) != nchan() ) {
650    throw(AipsError("Mask has incorrect number of channels."));
651  }
652  for ( uInt i=0; i<table_.nrow(); ++i) {
653    Vector<uChar> flgs = flagsCol_(i);
654    if ( flgs.nelements() != msk.size() ) {
655      throw(AipsError("Mask has incorrect number of channels."
656                      " Probably varying with IF. Please flag per IF"));
657    }
658    std::vector<bool>::const_iterator it;
659    uInt j = 0;
660    uChar userflag = 1 << 7;
661    if ( unflag ) {
662      userflag = 0 << 7;
663    }
664    for (it = msk.begin(); it != msk.end(); ++it) {
665      if ( *it ) {
666        flgs(j) = userflag;
667      }
668      ++j;
669    }
670    flagsCol_.put(i, flgs);
671  }
672}
673
674std::vector<bool> Scantable::getMask(int whichrow) const
675{
676  Vector<uChar> flags;
677  flagsCol_.get(uInt(whichrow), flags);
678  Vector<Bool> bflag(flags.shape());
679  convertArray(bflag, flags);
680  bflag = !bflag;
681  std::vector<bool> mask;
682  bflag.tovector(mask);
683  return mask;
684}
685
686std::vector<float> Scantable::getSpectrum( int whichrow,
687                                           const std::string& poltype ) const
688{
689  String ptype = poltype;
690  if (poltype == "" ) ptype = getPolType();
691  if ( whichrow  < 0 || whichrow >= nrow() )
692    throw(AipsError("Illegal row number."));
693  std::vector<float> out;
694  Vector<Float> arr;
695  uInt requestedpol = polCol_(whichrow);
696  String basetype = getPolType();
697  if ( ptype == basetype ) {
698    specCol_.get(whichrow, arr);
699  } else {
700    CountedPtr<STPol> stpol(STPol::getPolClass(Scantable::factories_,
701                                               basetype));
702    uInt row = uInt(whichrow);
703    stpol->setSpectra(getPolMatrix(row));
704    Float fang,fhand,parang;
705    fang = focusTable_.getTotalAngle(mfocusidCol_(row));
706    fhand = focusTable_.getFeedHand(mfocusidCol_(row));
707    stpol->setPhaseCorrections(fang, fhand);
708    arr = stpol->getSpectrum(requestedpol, ptype);
709  }
710  if ( arr.nelements() == 0 )
711    pushLog("Not enough polarisations present to do the conversion.");
712  arr.tovector(out);
713  return out;
714}
715
716void Scantable::setSpectrum( const std::vector<float>& spec,
717                                   int whichrow )
718{
719  Vector<Float> spectrum(spec);
720  Vector<Float> arr;
721  specCol_.get(whichrow, arr);
722  if ( spectrum.nelements() != arr.nelements() )
723    throw AipsError("The spectrum has incorrect number of channels.");
724  specCol_.put(whichrow, spectrum);
725}
726
727
728String Scantable::generateName()
729{
730  return (File::newUniqueName("./","temp")).baseName();
731}
732
733const casa::Table& Scantable::table( ) const
734{
735  return table_;
736}
737
738casa::Table& Scantable::table( )
739{
740  return table_;
741}
742
743std::string Scantable::getPolType() const
744{
745  return table_.keywordSet().asString("POLTYPE");
746}
747
748void Scantable::unsetSelection()
749{
750  table_ = originalTable_;
751  attach();
752  selector_.reset();
753}
754
755void Scantable::setSelection( const STSelector& selection )
756{
757  Table tab = const_cast<STSelector&>(selection).apply(originalTable_);
758  if ( tab.nrow() == 0 ) {
759    throw(AipsError("Selection contains no data. Not applying it."));
760  }
761  table_ = tab;
762  attach();
763  selector_ = selection;
764}
765
766std::string Scantable::summary( bool verbose )
767{
768  // Format header info
769  ostringstream oss;
770  oss << endl;
771  oss << asap::SEPERATOR << endl;
772  oss << " Scan Table Summary" << endl;
773  oss << asap::SEPERATOR << endl;
774  oss.flags(std::ios_base::left);
775  oss << setw(15) << "Beams:" << setw(4) << nbeam() << endl
776      << setw(15) << "IFs:" << setw(4) << nif() << endl
777      << setw(15) << "Polarisations:" << setw(4) << npol()
778      << "(" << getPolType() << ")" << endl
779      << setw(15) << "Channels:" << nchan() << endl;
780  String tmp;
781  oss << setw(15) << "Observer:"
782      << table_.keywordSet().asString("Observer") << endl;
783  oss << setw(15) << "Obs Date:" << getTime(-1,true) << endl;
784  table_.keywordSet().get("Project", tmp);
785  oss << setw(15) << "Project:" << tmp << endl;
786  table_.keywordSet().get("Obstype", tmp);
787  oss << setw(15) << "Obs. Type:" << tmp << endl;
788  table_.keywordSet().get("AntennaName", tmp);
789  oss << setw(15) << "Antenna Name:" << tmp << endl;
790  table_.keywordSet().get("FluxUnit", tmp);
791  oss << setw(15) << "Flux Unit:" << tmp << endl;
792  Vector<Double> vec(moleculeTable_.getRestFrequencies());
793  oss << setw(15) << "Rest Freqs:";
794  if (vec.nelements() > 0) {
795      oss << setprecision(10) << vec << " [Hz]" << endl;
796  } else {
797      oss << "none" << endl;
798  }
799
800  oss << setw(15) << "Abcissa:" << getAbcissaLabel(0) << endl;
801  oss << selector_.print() << endl;
802  oss << endl;
803  // main table
804  String dirtype = "Position ("
805                  + getDirectionRefString()
806                  + ")";
807  oss << setw(5) << "Scan" << setw(15) << "Source"
808      << setw(10) << "Time" << setw(18) << "Integration" << endl;
809  oss << setw(5) << "" << setw(5) << "Beam" << setw(3) << "" << dirtype << endl;
810  oss << setw(10) << "" << setw(3) << "IF" << setw(3) << ""
811      << setw(8) << "Frame" << setw(16)
812      << "RefVal" << setw(10) << "RefPix" << setw(12) << "Increment"
813      << setw(7) << "Channels"
814      << endl;
815  oss << asap::SEPERATOR << endl;
816  TableIterator iter(table_, "SCANNO");
817  while (!iter.pastEnd()) {
818    Table subt = iter.table();
819    ROTableRow row(subt);
820    MEpoch::ROScalarColumn timeCol(subt,"TIME");
821    const TableRecord& rec = row.get(0);
822    oss << setw(4) << std::right << rec.asuInt("SCANNO")
823        << std::left << setw(1) << ""
824        << setw(15) << rec.asString("SRCNAME")
825        << setw(10) << formatTime(timeCol(0), false);
826    // count the cycles in the scan
827    TableIterator cyciter(subt, "CYCLENO");
828    int nint = 0;
829    while (!cyciter.pastEnd()) {
830      ++nint;
831      ++cyciter;
832    }
833    oss << setw(3) << std::right << nint  << setw(3) << " x " << std::left
834        << setw(6) <<  formatSec(rec.asFloat("INTERVAL")) << endl;
835
836    TableIterator biter(subt, "BEAMNO");
837    while (!biter.pastEnd()) {
838      Table bsubt = biter.table();
839      ROTableRow brow(bsubt);
840      const TableRecord& brec = brow.get(0);
841      uInt row0 = bsubt.rowNumbers(table_)[0];
842      oss << setw(5) << "" <<  setw(4) << std::right << brec.asuInt("BEAMNO")<< std::left;
843      oss  << setw(4) << ""  << formatDirection(getDirection(row0)) << endl;
844      TableIterator iiter(bsubt, "IFNO");
845      while (!iiter.pastEnd()) {
846        Table isubt = iiter.table();
847        ROTableRow irow(isubt);
848        const TableRecord& irec = irow.get(0);
849        oss << setw(9) << "";
850        oss << setw(3) << std::right << irec.asuInt("IFNO") << std::left
851            << setw(1) << "" << frequencies().print(irec.asuInt("FREQ_ID"))
852            << setw(3) << "" << nchan(irec.asuInt("IFNO"))
853            << endl;
854
855        ++iiter;
856      }
857      ++biter;
858    }
859    ++iter;
860  }
861  /// @todo implement verbose mode
862  return String(oss);
863}
864
865std::string Scantable::getTime(int whichrow, bool showdate) const
866{
867  MEpoch::ROScalarColumn timeCol(table_, "TIME");
868  MEpoch me;
869  if (whichrow > -1) {
870    me = timeCol(uInt(whichrow));
871  } else {
872    Double tm;
873    table_.keywordSet().get("UTC",tm);
874    me = MEpoch(MVEpoch(tm));
875  }
876  return formatTime(me, showdate);
877}
878
879MEpoch Scantable::getEpoch(int whichrow) const
880{
881  if (whichrow > -1) {
882    return timeCol_(uInt(whichrow));
883  } else {
884    Double tm;
885    table_.keywordSet().get("UTC",tm);
886    return MEpoch(MVEpoch(tm));
887  }
888}
889
890std::string Scantable::getDirectionString(int whichrow) const
891{
892  return formatDirection(getDirection(uInt(whichrow)));
893}
894
895
896SpectralCoordinate Scantable::getSpectralCoordinate(int whichrow) const {
897  const MPosition& mp = getAntennaPosition();
898  const MDirection& md = getDirection(whichrow);
899  const MEpoch& me = timeCol_(whichrow);
900  Double rf = moleculeTable_.getRestFrequency(mmolidCol_(whichrow));
901  return freqTable_.getSpectralCoordinate(md, mp, me, rf,
902                                          mfreqidCol_(whichrow));
903}
904
905std::vector< double > Scantable::getAbcissa( int whichrow ) const
906{
907  if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal row number"));
908  std::vector<double> stlout;
909  int nchan = specCol_(whichrow).nelements();
910  String us = freqTable_.getUnitString();
911  if ( us == "" || us == "pixel" || us == "channel" ) {
912    for (int i=0; i<nchan; ++i) {
913      stlout.push_back(double(i));
914    }
915    return stlout;
916  }
917  SpectralCoordinate spc = getSpectralCoordinate(whichrow);
918  Vector<Double> pixel(nchan);
919  Vector<Double> world;
920  indgen(pixel);
921  if ( Unit(us) == Unit("Hz") ) {
922    for ( int i=0; i < nchan; ++i) {
923      Double world;
924      spc.toWorld(world, pixel[i]);
925      stlout.push_back(double(world));
926    }
927  } else if ( Unit(us) == Unit("km/s") ) {
928    Vector<Double> world;
929    spc.pixelToVelocity(world, pixel);
930    world.tovector(stlout);
931  }
932  return stlout;
933}
934void Scantable::setDirectionRefString( const std::string & refstr )
935{
936  MDirection::Types mdt;
937  if (refstr != "" && !MDirection::getType(mdt, refstr)) {
938    throw(AipsError("Illegal Direction frame."));
939  }
940  if ( refstr == "" ) {
941    String defaultstr = MDirection::showType(dirCol_.getMeasRef().getType());
942    table_.rwKeywordSet().define("DIRECTIONREF", defaultstr);
943  } else {
944    table_.rwKeywordSet().define("DIRECTIONREF", String(refstr));
945  }
946}
947
948std::string Scantable::getDirectionRefString( ) const
949{
950  return table_.keywordSet().asString("DIRECTIONREF");
951}
952
953MDirection Scantable::getDirection(int whichrow ) const
954{
955  String usertype = table_.keywordSet().asString("DIRECTIONREF");
956  String type = MDirection::showType(dirCol_.getMeasRef().getType());
957  if ( usertype != type ) {
958    MDirection::Types mdt;
959    if (!MDirection::getType(mdt, usertype)) {
960      throw(AipsError("Illegal Direction frame."));
961    }
962    return dirCol_.convert(uInt(whichrow), mdt);
963  } else {
964    return dirCol_(uInt(whichrow));
965  }
966}
967
968std::string Scantable::getAbcissaLabel( int whichrow ) const
969{
970  if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal ro number"));
971  const MPosition& mp = getAntennaPosition();
972  const MDirection& md = getDirection(whichrow);
973  const MEpoch& me = timeCol_(whichrow);
974  const Double& rf = mmolidCol_(whichrow);
975  SpectralCoordinate spc =
976    freqTable_.getSpectralCoordinate(md, mp, me, rf, mfreqidCol_(whichrow));
977
978  String s = "Channel";
979  Unit u = Unit(freqTable_.getUnitString());
980  if (u == Unit("km/s")) {
981    s = CoordinateUtil::axisLabel(spc, 0, True,True,  True);
982  } else if (u == Unit("Hz")) {
983    Vector<String> wau(1);wau = u.getName();
984    spc.setWorldAxisUnits(wau);
985    s = CoordinateUtil::axisLabel(spc, 0, True, True, False);
986  }
987  return s;
988
989}
990
991void Scantable::setRestFrequencies( double rf, const std::string& name,
992                                          const std::string& unit )
993{
994  ///@todo lookup in line table to fill in name and formattedname
995  Unit u(unit);
996  Quantum<Double> urf(rf, u);
997  uInt id = moleculeTable_.addEntry(urf.getValue("Hz"), name, "");
998  TableVector<uInt> tabvec(table_, "MOLECULE_ID");
999  tabvec = id;
1000}
1001
1002void Scantable::setRestFrequencies( const std::string& name )
1003{
1004  throw(AipsError("setRestFrequencies( const std::string& name ) NYI"));
1005  ///@todo implement
1006}
1007
1008std::vector< unsigned int > Scantable::rownumbers( ) const
1009{
1010  std::vector<unsigned int> stlout;
1011  Vector<uInt> vec = table_.rowNumbers();
1012  vec.tovector(stlout);
1013  return stlout;
1014}
1015
1016
1017Matrix<Float> Scantable::getPolMatrix( uInt whichrow ) const
1018{
1019  ROTableRow row(table_);
1020  const TableRecord& rec = row.get(whichrow);
1021  Table t =
1022    originalTable_( originalTable_.col("SCANNO") == Int(rec.asuInt("SCANNO"))
1023                    && originalTable_.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
1024                    && originalTable_.col("IFNO") == Int(rec.asuInt("IFNO"))
1025                    && originalTable_.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
1026  ROArrayColumn<Float> speccol(t, "SPECTRA");
1027  return speccol.getColumn();
1028}
1029
1030std::vector< std::string > Scantable::columnNames( ) const
1031{
1032  Vector<String> vec = table_.tableDesc().columnNames();
1033  return mathutil::tovectorstring(vec);
1034}
1035
1036MEpoch::Types Scantable::getTimeReference( ) const
1037{
1038  return MEpoch::castType(timeCol_.getMeasRef().getType());
1039}
1040
1041void Scantable::addFit( const STFitEntry& fit, int row )
1042{
1043  cout << mfitidCol_(uInt(row)) << endl;
1044  uInt id = fitTable_.addEntry(fit, mfitidCol_(uInt(row)));
1045  mfitidCol_.put(uInt(row), id);
1046}
1047
1048void Scantable::shift(int npix)
1049{
1050  Vector<uInt> fids(mfreqidCol_.getColumn());
1051  genSort( fids, Sort::Ascending,
1052           Sort::QuickSort|Sort::NoDuplicates );
1053  for (uInt i=0; i<fids.nelements(); ++i) {
1054    frequencies().shiftRefPix(npix, fids[i]);
1055  }
1056}
1057
1058std::string asap::Scantable::getAntennaName() const
1059{
1060  String out;
1061  table_.keywordSet().get("AntennaName", out);
1062  return out;
1063}
1064
1065int asap::Scantable::checkScanInfo(const std::vector<int>& scanlist) const
1066{
1067  String tbpath;
1068  int ret = 0;
1069  if ( table_.keywordSet().isDefined("GBT_GO") ) {
1070    table_.keywordSet().get("GBT_GO", tbpath);
1071    Table t(tbpath,Table::Old);
1072    // check each scan if other scan of the pair exist
1073    int nscan = scanlist.size();
1074    for (int i = 0; i < nscan; i++) {
1075      Table subt = t( t.col("SCAN") == scanlist[i]+1 );
1076      if (subt.nrow()==0) {
1077        cerr <<"Scan "<<scanlist[i]<<" cannot be found in the scantable."<<endl;
1078        ret = 1;
1079        break;
1080      }
1081      ROTableRow row(subt);
1082      const TableRecord& rec = row.get(0);
1083      int scan1seqn = rec.asuInt("PROCSEQN");
1084      int laston1 = rec.asuInt("LASTON");
1085      if ( rec.asuInt("PROCSIZE")==2 ) {
1086        if ( i < nscan-1 ) {
1087          Table subt2 = t( t.col("SCAN") == scanlist[i+1]+1 );
1088          if ( subt2.nrow() == 0) {
1089            cerr<<"Scan "<<scanlist[i+1]<<" cannot be found in the scantable."<<endl;
1090            ret = 1;
1091            break;
1092          }
1093          ROTableRow row2(subt2);
1094          const TableRecord& rec2 = row2.get(0);
1095          int scan2seqn = rec2.asuInt("PROCSEQN");
1096          int laston2 = rec2.asuInt("LASTON");
1097          if (scan1seqn == 1 && scan2seqn == 2) {
1098            if (laston1 == laston2) {
1099              cerr<<"A valid scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<endl;
1100              i +=1;
1101            }
1102            else {
1103              cerr<<"Incorrect scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<endl;
1104            }
1105          }
1106          else if (scan1seqn==2 && scan2seqn == 1) {
1107            if (laston1 == laston2) {
1108              cerr<<"["<<scanlist[i]<<","<<scanlist[i+1]<<"] is a valid scan pair but in incorrect order."<<endl;
1109              ret = 1;
1110              break;
1111            }
1112          }
1113          else {
1114            cerr<<"The other scan for  "<<scanlist[i]<<" appears to be missing. Check the input scan numbers."<<endl;
1115            ret = 1;
1116            break;
1117          }
1118        }
1119      }
1120      else {
1121        cerr<<"The scan does not appear to be standard obsevation."<<endl;
1122      }
1123    //if ( i >= nscan ) break;
1124    }
1125  }
1126  else {
1127    cerr<<"No reference to GBT_GO table."<<endl;
1128    ret = 1;
1129  }
1130  return ret;
1131}
1132
1133std::vector<double>  asap::Scantable::getDirectionVector(int whichrow) const
1134{
1135  Vector<Double> Dir = dirCol_(whichrow).getAngle("rad").getValue();
1136  std::vector<double> dir;
1137  Dir.tovector(dir);
1138  return dir;
1139}
1140
1141}
1142 //namespace asap
Note: See TracBrowser for help on using the repository browser.