source: trunk/src/Scantable.cpp @ 1743

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

Cosmetics

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 34.7 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  mweatheridCol_.attach(table_,"WEATHER_ID");
282  mfitidCol_.attach(table_,"FIT_ID");
283  mfreqidCol_.attach(table_, "FREQ_ID");
284  mtcalidCol_.attach(table_, "TCAL_ID");
285  mfocusidCol_.attach(table_, "FOCUS_ID");
286  mmolidCol_.attach(table_, "MOLECULE_ID");
287}
288
289void Scantable::setHeader(const STHeader& sdh)
290{
291  table_.rwKeywordSet().define("nIF", sdh.nif);
292  table_.rwKeywordSet().define("nBeam", sdh.nbeam);
293  table_.rwKeywordSet().define("nPol", sdh.npol);
294  table_.rwKeywordSet().define("nChan", sdh.nchan);
295  table_.rwKeywordSet().define("Observer", sdh.observer);
296  table_.rwKeywordSet().define("Project", sdh.project);
297  table_.rwKeywordSet().define("Obstype", sdh.obstype);
298  table_.rwKeywordSet().define("AntennaName", sdh.antennaname);
299  table_.rwKeywordSet().define("AntennaPosition", sdh.antennaposition);
300  table_.rwKeywordSet().define("Equinox", sdh.equinox);
301  table_.rwKeywordSet().define("FreqRefFrame", sdh.freqref);
302  table_.rwKeywordSet().define("FreqRefVal", sdh.reffreq);
303  table_.rwKeywordSet().define("Bandwidth", sdh.bandwidth);
304  table_.rwKeywordSet().define("UTC", sdh.utc);
305  table_.rwKeywordSet().define("FluxUnit", sdh.fluxunit);
306  table_.rwKeywordSet().define("Epoch", sdh.epoch);
307  table_.rwKeywordSet().define("POLTYPE", sdh.poltype);
308}
309
310STHeader Scantable::getHeader() const
311{
312  STHeader sdh;
313  table_.keywordSet().get("nBeam",sdh.nbeam);
314  table_.keywordSet().get("nIF",sdh.nif);
315  table_.keywordSet().get("nPol",sdh.npol);
316  table_.keywordSet().get("nChan",sdh.nchan);
317  table_.keywordSet().get("Observer", sdh.observer);
318  table_.keywordSet().get("Project", sdh.project);
319  table_.keywordSet().get("Obstype", sdh.obstype);
320  table_.keywordSet().get("AntennaName", sdh.antennaname);
321  table_.keywordSet().get("AntennaPosition", sdh.antennaposition);
322  table_.keywordSet().get("Equinox", sdh.equinox);
323  table_.keywordSet().get("FreqRefFrame", sdh.freqref);
324  table_.keywordSet().get("FreqRefVal", sdh.reffreq);
325  table_.keywordSet().get("Bandwidth", sdh.bandwidth);
326  table_.keywordSet().get("UTC", sdh.utc);
327  table_.keywordSet().get("FluxUnit", sdh.fluxunit);
328  table_.keywordSet().get("Epoch", sdh.epoch);
329  table_.keywordSet().get("POLTYPE", sdh.poltype);
330  return sdh;
331}
332
333void Scantable::setSourceType( int stype )
334{
335  if ( stype < 0 || stype > 1 )
336    throw(AipsError("Illegal sourcetype."));
337  TableVector<Int> tabvec(table_, "SRCTYPE");
338  tabvec = Int(stype);
339}
340
341bool Scantable::conformant( const Scantable& other )
342{
343  return this->getHeader().conformant(other.getHeader());
344}
345
346
347
348std::string Scantable::formatSec(Double x) const
349{
350  Double xcop = x;
351  MVTime mvt(xcop/24./3600.);  // make days
352
353  if (x < 59.95)
354    return  String("      ") + mvt.string(MVTime::TIME_CLEAN_NO_HM, 7)+"s";
355  else if (x < 3599.95)
356    return String("   ") + mvt.string(MVTime::TIME_CLEAN_NO_H,7)+" ";
357  else {
358    ostringstream oss;
359    oss << setw(2) << std::right << setprecision(1) << mvt.hour();
360    oss << ":" << mvt.string(MVTime::TIME_CLEAN_NO_H,7) << " ";
361    return String(oss);
362  }
363};
364
365std::string Scantable::formatDirection(const MDirection& md) const
366{
367  Vector<Double> t = md.getAngle(Unit(String("rad"))).getValue();
368  Int prec = 7;
369
370  MVAngle mvLon(t[0]);
371  String sLon = mvLon.string(MVAngle::TIME,prec);
372  uInt tp = md.getRef().getType();
373  if (tp == MDirection::GALACTIC ||
374      tp == MDirection::SUPERGAL ) {
375    sLon = mvLon(0.0).string(MVAngle::ANGLE_CLEAN,prec);
376  }
377  MVAngle mvLat(t[1]);
378  String sLat = mvLat.string(MVAngle::ANGLE+MVAngle::DIG2,prec);
379  return sLon + String(" ") + sLat;
380}
381
382
383std::string Scantable::getFluxUnit() const
384{
385  return table_.keywordSet().asString("FluxUnit");
386}
387
388void Scantable::setFluxUnit(const std::string& unit)
389{
390  String tmp(unit);
391  Unit tU(tmp);
392  if (tU==Unit("K") || tU==Unit("Jy")) {
393     table_.rwKeywordSet().define(String("FluxUnit"), tmp);
394  } else {
395     throw AipsError("Illegal unit - must be compatible with Jy or K");
396  }
397}
398
399void Scantable::setInstrument(const std::string& name)
400{
401  bool throwIt = true;
402  // create an Instrument to see if this is valid
403  STAttr::convertInstrument(name, throwIt);
404  String nameU(name);
405  nameU.upcase();
406  table_.rwKeywordSet().define(String("AntennaName"), nameU);
407}
408
409void Scantable::setFeedType(const std::string& feedtype)
410{
411  if ( Scantable::factories_.find(feedtype) ==  Scantable::factories_.end() ) {
412    std::string msg = "Illegal feed type "+ feedtype;
413    throw(casa::AipsError(msg));
414  }
415  table_.rwKeywordSet().define(String("POLTYPE"), feedtype);
416}
417
418MPosition Scantable::getAntennaPosition() const
419{
420  Vector<Double> antpos;
421  table_.keywordSet().get("AntennaPosition", antpos);
422  MVPosition mvpos(antpos(0),antpos(1),antpos(2));
423  return MPosition(mvpos);
424}
425
426void Scantable::makePersistent(const std::string& filename)
427{
428  String inname(filename);
429  Path path(inname);
430  /// @todo reindex SCANNO, recompute nbeam, nif, npol
431  inname = path.expandedName();
432  // WORKAROUND !!! for Table bug
433  // Remove when fixed in casacore
434  if ( table_.tableType() == Table::Memory  && !selector_.empty() ) {
435    Table tab = table_.copyToMemoryTable(generateName());
436    tab.deepCopy(inname, Table::New);
437    tab.markForDelete();
438
439  } else {
440    table_.deepCopy(inname, Table::New);
441  }
442}
443
444int Scantable::nbeam( int scanno ) const
445{
446  if ( scanno < 0 ) {
447    Int n;
448    table_.keywordSet().get("nBeam",n);
449    return int(n);
450  } else {
451    // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
452    Table t = table_(table_.col("SCANNO") == scanno);
453    ROTableRow row(t);
454    const TableRecord& rec = row.get(0);
455    Table subt = t( t.col("IFNO") == Int(rec.asuInt("IFNO"))
456                    && t.col("POLNO") == Int(rec.asuInt("POLNO"))
457                    && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
458    ROTableVector<uInt> v(subt, "BEAMNO");
459    return int(v.nelements());
460  }
461  return 0;
462}
463
464int Scantable::nif( int scanno ) const
465{
466  if ( scanno < 0 ) {
467    Int n;
468    table_.keywordSet().get("nIF",n);
469    return int(n);
470  } else {
471    // take the first POLNO,BEAMNO,CYCLENO as nbeam shouldn't vary with these
472    Table t = table_(table_.col("SCANNO") == scanno);
473    ROTableRow row(t);
474    const TableRecord& rec = row.get(0);
475    Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
476                    && t.col("POLNO") == Int(rec.asuInt("POLNO"))
477                    && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
478    if ( subt.nrow() == 0 ) return 0;
479    ROTableVector<uInt> v(subt, "IFNO");
480    return int(v.nelements());
481  }
482  return 0;
483}
484
485int Scantable::npol( int scanno ) const
486{
487  if ( scanno < 0 ) {
488    Int n;
489    table_.keywordSet().get("nPol",n);
490    return n;
491  } else {
492    // take the first POLNO,IFNO,CYCLENO as nbeam shouldn't vary with these
493    Table t = table_(table_.col("SCANNO") == scanno);
494    ROTableRow row(t);
495    const TableRecord& rec = row.get(0);
496    Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
497                    && t.col("IFNO") == Int(rec.asuInt("IFNO"))
498                    && t.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
499    if ( subt.nrow() == 0 ) return 0;
500    ROTableVector<uInt> v(subt, "POLNO");
501    return int(v.nelements());
502  }
503  return 0;
504}
505
506int Scantable::ncycle( int scanno ) const
507{
508  if ( scanno < 0 ) {
509    Block<String> cols(2);
510    cols[0] = "SCANNO";
511    cols[1] = "CYCLENO";
512    TableIterator it(table_, cols);
513    int n = 0;
514    while ( !it.pastEnd() ) {
515      ++n;
516      ++it;
517    }
518    return n;
519  } else {
520    Table t = table_(table_.col("SCANNO") == scanno);
521    ROTableRow row(t);
522    const TableRecord& rec = row.get(0);
523    Table subt = t( t.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
524                    && t.col("POLNO") == Int(rec.asuInt("POLNO"))
525                    && t.col("IFNO") == Int(rec.asuInt("IFNO")) );
526    if ( subt.nrow() == 0 ) return 0;
527    return int(subt.nrow());
528  }
529  return 0;
530}
531
532
533int Scantable::nrow( int scanno ) const
534{
535  return int(table_.nrow());
536}
537
538int Scantable::nchan( int ifno ) const
539{
540  if ( ifno < 0 ) {
541    Int n;
542    table_.keywordSet().get("nChan",n);
543    return int(n);
544  } else {
545    // take the first SCANNO,POLNO,BEAMNO,CYCLENO as nbeam shouldn't
546    // vary with these
547    Table t = table_(table_.col("IFNO") == ifno);
548    if ( t.nrow() == 0 ) return 0;
549    ROArrayColumn<Float> v(t, "SPECTRA");
550    return v.shape(0)(0);
551  }
552  return 0;
553}
554
555int Scantable::nscan() const {
556  Vector<uInt> scannos(scanCol_.getColumn());
557  uInt nout = genSort( scannos, Sort::Ascending,
558                       Sort::QuickSort|Sort::NoDuplicates );
559  return int(nout);
560}
561
562int Scantable::getChannels(int whichrow) const
563{
564  return specCol_.shape(whichrow)(0);
565}
566
567int Scantable::getBeam(int whichrow) const
568{
569  return beamCol_(whichrow);
570}
571
572std::vector<uint> Scantable::getNumbers(const ScalarColumn<uInt>& col) const
573{
574  Vector<uInt> nos(col.getColumn());
575  uInt n = genSort( nos, Sort::Ascending, Sort::QuickSort|Sort::NoDuplicates );
576  nos.resize(n, True);
577  std::vector<uint> stlout;
578  nos.tovector(stlout);
579  return stlout;
580}
581
582int Scantable::getIF(int whichrow) const
583{
584  return ifCol_(whichrow);
585}
586
587int Scantable::getPol(int whichrow) const
588{
589  return polCol_(whichrow);
590}
591
592std::string Scantable::formatTime(const MEpoch& me, bool showdate) const
593{
594  MVTime mvt(me.getValue());
595  if (showdate)
596    mvt.setFormat(MVTime::YMD);
597  else
598    mvt.setFormat(MVTime::TIME);
599  ostringstream oss;
600  oss << mvt;
601  return String(oss);
602}
603
604void Scantable::calculateAZEL()
605{
606  MPosition mp = getAntennaPosition();
607  MEpoch::ROScalarColumn timeCol(table_, "TIME");
608  ostringstream oss;
609  oss << "Computed azimuth/elevation using " << endl
610      << mp << endl;
611  for (Int i=0; i<nrow(); ++i) {
612    MEpoch me = timeCol(i);
613    MDirection md = getDirection(i);
614    oss  << " Time: " << formatTime(me,False) << " Direction: " << formatDirection(md)
615         << endl << "     => ";
616    MeasFrame frame(mp, me);
617    Vector<Double> azel =
618        MDirection::Convert(md, MDirection::Ref(MDirection::AZEL,
619                                                frame)
620                            )().getAngle("rad").getValue();
621    azCol_.put(i,Float(azel[0]));
622    elCol_.put(i,Float(azel[1]));
623    oss << "azel: " << azel[0]/C::pi*180.0 << " "
624        << azel[1]/C::pi*180.0 << " (deg)" << endl;
625  }
626  pushLog(String(oss));
627}
628
629void Scantable::flag(const std::vector<bool>& msk, bool unflag)
630{
631  std::vector<bool>::const_iterator it;
632  uInt ntrue = 0;
633  for (it = msk.begin(); it != msk.end(); ++it) {
634    if ( *it ) {
635      ntrue++;
636    }
637  }
638  if ( selector_.empty()  && (msk.size() == 0 || msk.size() == ntrue) )
639    throw(AipsError("Trying to flag whole scantable."));
640  if ( msk.size() == 0 ) {
641    uChar userflag = 1 << 7;
642    if ( unflag ) {
643      userflag = 0 << 7;
644    }
645    for ( uInt i=0; i<table_.nrow(); ++i) {
646      Vector<uChar> flgs = flagsCol_(i);
647      flgs = userflag;
648      flagsCol_.put(i, flgs);
649    }
650    return;
651  }
652  if ( int(msk.size()) != nchan() ) {
653    throw(AipsError("Mask has incorrect number of channels."));
654  }
655  for ( uInt i=0; i<table_.nrow(); ++i) {
656    Vector<uChar> flgs = flagsCol_(i);
657    if ( flgs.nelements() != msk.size() ) {
658      throw(AipsError("Mask has incorrect number of channels."
659                      " Probably varying with IF. Please flag per IF"));
660    }
661    std::vector<bool>::const_iterator it;
662    uInt j = 0;
663    uChar userflag = 1 << 7;
664    if ( unflag ) {
665      userflag = 0 << 7;
666    }
667    for (it = msk.begin(); it != msk.end(); ++it) {
668      if ( *it ) {
669        flgs(j) = userflag;
670      }
671      ++j;
672    }
673    flagsCol_.put(i, flgs);
674  }
675}
676
677std::vector<bool> Scantable::getMask(int whichrow) const
678{
679  Vector<uChar> flags;
680  flagsCol_.get(uInt(whichrow), flags);
681  Vector<Bool> bflag(flags.shape());
682  convertArray(bflag, flags);
683  bflag = !bflag;
684  std::vector<bool> mask;
685  bflag.tovector(mask);
686  return mask;
687}
688
689std::vector<float> Scantable::getSpectrum( int whichrow,
690                                           const std::string& poltype ) const
691{
692  String ptype = poltype;
693  if (poltype == "" ) ptype = getPolType();
694  if ( whichrow  < 0 || whichrow >= nrow() )
695    throw(AipsError("Illegal row number."));
696  std::vector<float> out;
697  Vector<Float> arr;
698  uInt requestedpol = polCol_(whichrow);
699  String basetype = getPolType();
700  if ( ptype == basetype ) {
701    specCol_.get(whichrow, arr);
702  } else {
703    CountedPtr<STPol> stpol(STPol::getPolClass(Scantable::factories_,
704                                               basetype));
705    uInt row = uInt(whichrow);
706    stpol->setSpectra(getPolMatrix(row));
707    Float fang,fhand,parang;
708    fang = focusTable_.getTotalAngle(mfocusidCol_(row));
709    fhand = focusTable_.getFeedHand(mfocusidCol_(row));
710    stpol->setPhaseCorrections(fang, fhand);
711    arr = stpol->getSpectrum(requestedpol, ptype);
712  }
713  if ( arr.nelements() == 0 )
714    pushLog("Not enough polarisations present to do the conversion.");
715  arr.tovector(out);
716  return out;
717}
718
719void Scantable::setSpectrum( const std::vector<float>& spec,
720                                   int whichrow )
721{
722  Vector<Float> spectrum(spec);
723  Vector<Float> arr;
724  specCol_.get(whichrow, arr);
725  if ( spectrum.nelements() != arr.nelements() )
726    throw AipsError("The spectrum has incorrect number of channels.");
727  specCol_.put(whichrow, spectrum);
728}
729
730
731String Scantable::generateName()
732{
733  return (File::newUniqueName("./","temp")).baseName();
734}
735
736const casa::Table& Scantable::table( ) const
737{
738  return table_;
739}
740
741casa::Table& Scantable::table( )
742{
743  return table_;
744}
745
746std::string Scantable::getPolType() const
747{
748  return table_.keywordSet().asString("POLTYPE");
749}
750
751void Scantable::unsetSelection()
752{
753  table_ = originalTable_;
754  attach();
755  selector_.reset();
756}
757
758void Scantable::setSelection( const STSelector& selection )
759{
760  Table tab = const_cast<STSelector&>(selection).apply(originalTable_);
761  if ( tab.nrow() == 0 ) {
762    throw(AipsError("Selection contains no data. Not applying it."));
763  }
764  table_ = tab;
765  attach();
766  selector_ = selection;
767}
768
769std::string Scantable::summary( bool verbose )
770{
771  // Format header info
772  ostringstream oss;
773  oss << endl;
774  oss << asap::SEPERATOR << endl;
775  oss << " Scan Table Summary" << endl;
776  oss << asap::SEPERATOR << endl;
777  oss.flags(std::ios_base::left);
778  oss << setw(15) << "Beams:" << setw(4) << nbeam() << endl
779      << setw(15) << "IFs:" << setw(4) << nif() << endl
780      << setw(15) << "Polarisations:" << setw(4) << npol()
781      << "(" << getPolType() << ")" << endl
782      << setw(15) << "Channels:" << nchan() << endl;
783  String tmp;
784  oss << setw(15) << "Observer:"
785      << table_.keywordSet().asString("Observer") << endl;
786  oss << setw(15) << "Obs Date:" << getTime(-1,true) << endl;
787  table_.keywordSet().get("Project", tmp);
788  oss << setw(15) << "Project:" << tmp << endl;
789  table_.keywordSet().get("Obstype", tmp);
790  oss << setw(15) << "Obs. Type:" << tmp << endl;
791  table_.keywordSet().get("AntennaName", tmp);
792  oss << setw(15) << "Antenna Name:" << tmp << endl;
793  table_.keywordSet().get("FluxUnit", tmp);
794  oss << setw(15) << "Flux Unit:" << tmp << endl;
795  Vector<Double> vec(moleculeTable_.getRestFrequencies());
796  oss << setw(15) << "Rest Freqs:";
797  if (vec.nelements() > 0) {
798      oss << setprecision(10) << vec << " [Hz]" << endl;
799  } else {
800      oss << "none" << endl;
801  }
802
803  oss << setw(15) << "Abcissa:" << getAbcissaLabel(0) << endl;
804  oss << selector_.print() << endl;
805  oss << endl;
806  // main table
807  String dirtype = "Position ("
808                  + getDirectionRefString()
809                  + ")";
810  oss << setw(5) << "Scan" << setw(15) << "Source"
811      << setw(10) << "Time" << setw(18) << "Integration" << endl;
812  oss << setw(5) << "" << setw(5) << "Beam" << setw(3) << "" << dirtype << endl;
813  oss << setw(10) << "" << setw(3) << "IF" << setw(3) << ""
814      << setw(8) << "Frame" << setw(16)
815      << "RefVal" << setw(10) << "RefPix" << setw(12) << "Increment"
816      << setw(7) << "Channels"
817      << endl;
818  oss << asap::SEPERATOR << endl;
819  TableIterator iter(table_, "SCANNO");
820  while (!iter.pastEnd()) {
821    Table subt = iter.table();
822    ROTableRow row(subt);
823    MEpoch::ROScalarColumn timeCol(subt,"TIME");
824    const TableRecord& rec = row.get(0);
825    oss << setw(4) << std::right << rec.asuInt("SCANNO")
826        << std::left << setw(1) << ""
827        << setw(15) << rec.asString("SRCNAME")
828        << setw(10) << formatTime(timeCol(0), false);
829    // count the cycles in the scan
830    TableIterator cyciter(subt, "CYCLENO");
831    int nint = 0;
832    while (!cyciter.pastEnd()) {
833      ++nint;
834      ++cyciter;
835    }
836    oss << setw(3) << std::right << nint  << setw(3) << " x " << std::left
837        << setw(6) <<  formatSec(rec.asFloat("INTERVAL")) << endl;
838
839    TableIterator biter(subt, "BEAMNO");
840    while (!biter.pastEnd()) {
841      Table bsubt = biter.table();
842      ROTableRow brow(bsubt);
843      const TableRecord& brec = brow.get(0);
844      uInt row0 = bsubt.rowNumbers(table_)[0];
845      oss << setw(5) << "" <<  setw(4) << std::right << brec.asuInt("BEAMNO")<< std::left;
846      oss  << setw(4) << ""  << formatDirection(getDirection(row0)) << endl;
847      TableIterator iiter(bsubt, "IFNO");
848      while (!iiter.pastEnd()) {
849        Table isubt = iiter.table();
850        ROTableRow irow(isubt);
851        const TableRecord& irec = irow.get(0);
852        oss << setw(9) << "";
853        oss << setw(3) << std::right << irec.asuInt("IFNO") << std::left
854            << setw(1) << "" << frequencies().print(irec.asuInt("FREQ_ID"))
855            << setw(3) << "" << nchan(irec.asuInt("IFNO"))
856            << endl;
857
858        ++iiter;
859      }
860      ++biter;
861    }
862    ++iter;
863  }
864  /// @todo implement verbose mode
865  return String(oss);
866}
867
868std::string Scantable::getTime(int whichrow, bool showdate) const
869{
870  MEpoch::ROScalarColumn timeCol(table_, "TIME");
871  MEpoch me;
872  if (whichrow > -1) {
873    me = timeCol(uInt(whichrow));
874  } else {
875    Double tm;
876    table_.keywordSet().get("UTC",tm);
877    me = MEpoch(MVEpoch(tm));
878  }
879  return formatTime(me, showdate);
880}
881
882MEpoch Scantable::getEpoch(int whichrow) const
883{
884  if (whichrow > -1) {
885    return timeCol_(uInt(whichrow));
886  } else {
887    Double tm;
888    table_.keywordSet().get("UTC",tm);
889    return MEpoch(MVEpoch(tm));
890  }
891}
892
893std::string Scantable::getDirectionString(int whichrow) const
894{
895  return formatDirection(getDirection(uInt(whichrow)));
896}
897
898
899SpectralCoordinate Scantable::getSpectralCoordinate(int whichrow) const {
900  const MPosition& mp = getAntennaPosition();
901  const MDirection& md = getDirection(whichrow);
902  const MEpoch& me = timeCol_(whichrow);
903  Double rf = moleculeTable_.getRestFrequency(mmolidCol_(whichrow));
904  return freqTable_.getSpectralCoordinate(md, mp, me, rf,
905                                          mfreqidCol_(whichrow));
906}
907
908std::vector< double > Scantable::getAbcissa( int whichrow ) const
909{
910  if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal row number"));
911  std::vector<double> stlout;
912  int nchan = specCol_(whichrow).nelements();
913  String us = freqTable_.getUnitString();
914  if ( us == "" || us == "pixel" || us == "channel" ) {
915    for (int i=0; i<nchan; ++i) {
916      stlout.push_back(double(i));
917    }
918    return stlout;
919  }
920  SpectralCoordinate spc = getSpectralCoordinate(whichrow);
921  Vector<Double> pixel(nchan);
922  Vector<Double> world;
923  indgen(pixel);
924  if ( Unit(us) == Unit("Hz") ) {
925    for ( int i=0; i < nchan; ++i) {
926      Double world;
927      spc.toWorld(world, pixel[i]);
928      stlout.push_back(double(world));
929    }
930  } else if ( Unit(us) == Unit("km/s") ) {
931    Vector<Double> world;
932    spc.pixelToVelocity(world, pixel);
933    world.tovector(stlout);
934  }
935  return stlout;
936}
937void Scantable::setDirectionRefString( const std::string & refstr )
938{
939  MDirection::Types mdt;
940  if (refstr != "" && !MDirection::getType(mdt, refstr)) {
941    throw(AipsError("Illegal Direction frame."));
942  }
943  if ( refstr == "" ) {
944    String defaultstr = MDirection::showType(dirCol_.getMeasRef().getType());
945    table_.rwKeywordSet().define("DIRECTIONREF", defaultstr);
946  } else {
947    table_.rwKeywordSet().define("DIRECTIONREF", String(refstr));
948  }
949}
950
951std::string Scantable::getDirectionRefString( ) const
952{
953  return table_.keywordSet().asString("DIRECTIONREF");
954}
955
956MDirection Scantable::getDirection(int whichrow ) const
957{
958  String usertype = table_.keywordSet().asString("DIRECTIONREF");
959  String type = MDirection::showType(dirCol_.getMeasRef().getType());
960  if ( usertype != type ) {
961    MDirection::Types mdt;
962    if (!MDirection::getType(mdt, usertype)) {
963      throw(AipsError("Illegal Direction frame."));
964    }
965    return dirCol_.convert(uInt(whichrow), mdt);
966  } else {
967    return dirCol_(uInt(whichrow));
968  }
969}
970
971std::string Scantable::getAbcissaLabel( int whichrow ) const
972{
973  if ( whichrow > int(table_.nrow()) ) throw(AipsError("Illegal ro number"));
974  const MPosition& mp = getAntennaPosition();
975  const MDirection& md = getDirection(whichrow);
976  const MEpoch& me = timeCol_(whichrow);
977  const Double& rf = mmolidCol_(whichrow);
978  SpectralCoordinate spc =
979    freqTable_.getSpectralCoordinate(md, mp, me, rf, mfreqidCol_(whichrow));
980
981  String s = "Channel";
982  Unit u = Unit(freqTable_.getUnitString());
983  if (u == Unit("km/s")) {
984    s = CoordinateUtil::axisLabel(spc, 0, True,True,  True);
985  } else if (u == Unit("Hz")) {
986    Vector<String> wau(1);wau = u.getName();
987    spc.setWorldAxisUnits(wau);
988    s = CoordinateUtil::axisLabel(spc, 0, True, True, False);
989  }
990  return s;
991
992}
993
994void Scantable::setRestFrequencies( double rf, const std::string& name,
995                                          const std::string& unit )
996{
997  ///@todo lookup in line table to fill in name and formattedname
998  Unit u(unit);
999  Quantum<Double> urf(rf, u);
1000  uInt id = moleculeTable_.addEntry(urf.getValue("Hz"), name, "");
1001  TableVector<uInt> tabvec(table_, "MOLECULE_ID");
1002  tabvec = id;
1003}
1004
1005void Scantable::setRestFrequencies( const std::string& name )
1006{
1007  throw(AipsError("setRestFrequencies( const std::string& name ) NYI"));
1008  ///@todo implement
1009}
1010
1011std::vector< unsigned int > Scantable::rownumbers( ) const
1012{
1013  std::vector<unsigned int> stlout;
1014  Vector<uInt> vec = table_.rowNumbers();
1015  vec.tovector(stlout);
1016  return stlout;
1017}
1018
1019
1020Matrix<Float> Scantable::getPolMatrix( uInt whichrow ) const
1021{
1022  ROTableRow row(table_);
1023  const TableRecord& rec = row.get(whichrow);
1024  Table t =
1025    originalTable_( originalTable_.col("SCANNO") == Int(rec.asuInt("SCANNO"))
1026                    && originalTable_.col("BEAMNO") == Int(rec.asuInt("BEAMNO"))
1027                    && originalTable_.col("IFNO") == Int(rec.asuInt("IFNO"))
1028                    && originalTable_.col("CYCLENO") == Int(rec.asuInt("CYCLENO")) );
1029  ROArrayColumn<Float> speccol(t, "SPECTRA");
1030  return speccol.getColumn();
1031}
1032
1033std::vector< std::string > Scantable::columnNames( ) const
1034{
1035  Vector<String> vec = table_.tableDesc().columnNames();
1036  return mathutil::tovectorstring(vec);
1037}
1038
1039MEpoch::Types Scantable::getTimeReference( ) const
1040{
1041  return MEpoch::castType(timeCol_.getMeasRef().getType());
1042}
1043
1044void Scantable::addFit( const STFitEntry& fit, int row )
1045{
1046  cout << mfitidCol_(uInt(row)) << endl;
1047  uInt id = fitTable_.addEntry(fit, mfitidCol_(uInt(row)));
1048  mfitidCol_.put(uInt(row), id);
1049}
1050
1051void Scantable::shift(int npix)
1052{
1053  Vector<uInt> fids(mfreqidCol_.getColumn());
1054  genSort( fids, Sort::Ascending,
1055           Sort::QuickSort|Sort::NoDuplicates );
1056  for (uInt i=0; i<fids.nelements(); ++i) {
1057    frequencies().shiftRefPix(npix, fids[i]);
1058  }
1059}
1060
1061std::string Scantable::getAntennaName() const
1062{
1063  String out;
1064  table_.keywordSet().get("AntennaName", out);
1065  return out;
1066}
1067
1068int Scantable::checkScanInfo(const std::vector<int>& scanlist) const
1069{
1070  String tbpath;
1071  int ret = 0;
1072  if ( table_.keywordSet().isDefined("GBT_GO") ) {
1073    table_.keywordSet().get("GBT_GO", tbpath);
1074    Table t(tbpath,Table::Old);
1075    // check each scan if other scan of the pair exist
1076    int nscan = scanlist.size();
1077    for (int i = 0; i < nscan; i++) {
1078      Table subt = t( t.col("SCAN") == scanlist[i]+1 );
1079      if (subt.nrow()==0) {
1080        cerr <<"Scan "<<scanlist[i]<<" cannot be found in the scantable."<<endl;
1081        ret = 1;
1082        break;
1083      }
1084      ROTableRow row(subt);
1085      const TableRecord& rec = row.get(0);
1086      int scan1seqn = rec.asuInt("PROCSEQN");
1087      int laston1 = rec.asuInt("LASTON");
1088      if ( rec.asuInt("PROCSIZE")==2 ) {
1089        if ( i < nscan-1 ) {
1090          Table subt2 = t( t.col("SCAN") == scanlist[i+1]+1 );
1091          if ( subt2.nrow() == 0) {
1092            cerr<<"Scan "<<scanlist[i+1]<<" cannot be found in the scantable."<<endl;
1093            ret = 1;
1094            break;
1095          }
1096          ROTableRow row2(subt2);
1097          const TableRecord& rec2 = row2.get(0);
1098          int scan2seqn = rec2.asuInt("PROCSEQN");
1099          int laston2 = rec2.asuInt("LASTON");
1100          if (scan1seqn == 1 && scan2seqn == 2) {
1101            if (laston1 == laston2) {
1102              cerr<<"A valid scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<endl;
1103              i +=1;
1104            }
1105            else {
1106              cerr<<"Incorrect scan pair ["<<scanlist[i]<<","<<scanlist[i+1]<<"]"<<endl;
1107            }
1108          }
1109          else if (scan1seqn==2 && scan2seqn == 1) {
1110            if (laston1 == laston2) {
1111              cerr<<"["<<scanlist[i]<<","<<scanlist[i+1]<<"] is a valid scan pair but in incorrect order."<<endl;
1112              ret = 1;
1113              break;
1114            }
1115          }
1116          else {
1117            cerr<<"The other scan for  "<<scanlist[i]<<" appears to be missing. Check the input scan numbers."<<endl;
1118            ret = 1;
1119            break;
1120          }
1121        }
1122      }
1123      else {
1124        cerr<<"The scan does not appear to be standard obsevation."<<endl;
1125      }
1126    //if ( i >= nscan ) break;
1127    }
1128  }
1129  else {
1130    cerr<<"No reference to GBT_GO table."<<endl;
1131    ret = 1;
1132  }
1133  return ret;
1134}
1135
1136std::vector<double> Scantable::getDirectionVector(int whichrow) const
1137{
1138  Vector<Double> Dir = dirCol_(whichrow).getAngle("rad").getValue();
1139  std::vector<double> dir;
1140  Dir.tovector(dir);
1141  return dir;
1142}
1143
1144std::vector<float> Scantable::getWeather(int whichrow) const
1145{
1146  std::vector<float> out(5);
1147  //Float temperature, pressure, humidity, windspeed, windaz;
1148  weatherTable_.getEntry(out[0], out[1], out[2], out[3], out[4],
1149                         mweatheridCol_(uInt(whichrow)));
1150
1151
1152  return out;
1153}
1154
1155}
1156 //namespace asap
Note: See TracBrowser for help on using the repository browser.