source: trunk/src/STFrequencies.cpp@ 1371

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

enhancement #107; added scantable.shift_refpix

File size: 10.9 KB
RevLine 
[806]1//
2// C++ Implementation: STFrequencies
3//
4// Description:
5//
6//
7// Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2006
8//
9// Copyright: See COPYING file that comes with this distribution
10//
11//
12#include <casa/iostream.h>
13#include <casa/iomanip.h>
14#include <casa/Exceptions/Error.h>
15#include <casa/Containers/RecordField.h>
16#include <casa/Arrays/IPosition.h>
17
18#include <tables/Tables/TableDesc.h>
19#include <tables/Tables/SetupNewTab.h>
20#include <tables/Tables/ScaColDesc.h>
21#include <tables/Tables/TableRecord.h>
22#include <tables/Tables/TableParse.h>
23#include <tables/Tables/TableRow.h>
24
25#include <coordinates/Coordinates/CoordinateSystem.h>
26#include <coordinates/Coordinates/CoordinateUtil.h>
27
28#include "STFrequencies.h"
29
30
31using namespace casa;
32
33namespace asap {
34
[847]35const String STFrequencies::name_ = "FREQUENCIES";
[806]36
[849]37STFrequencies::STFrequencies(const Scantable& parent) :
38 STSubTable(parent, name_)
[806]39{
40 setup();
41}
42
[1360]43STFrequencies::STFrequencies( casa::Table tab ) :
[856]44 STSubTable(tab, name_)
[849]45{
46 refpixCol_.attach(table_,"REFPIX");
47 refvalCol_.attach(table_,"REFVAL");
48 incrCol_.attach(table_,"INCREMENT");
[806]49
[849]50}
51
[806]52STFrequencies::~STFrequencies()
53{
54}
55
[1360]56STFrequencies & STFrequencies::operator=( const STFrequencies & other )
[849]57{
58 if ( this != &other ) {
59 static_cast<STSubTable&>(*this) = other;
60 refpixCol_.attach(table_,"REFPIX");
61 refvalCol_.attach(table_,"REFVAL");
62 incrCol_.attach(table_,"INCREMENT");
63 }
64 return *this;
65}
66
[806]67void STFrequencies::setup( )
68{
69 // add to base class table
70 table_.addColumn(ScalarColumnDesc<Double>("REFPIX"));
71 table_.addColumn(ScalarColumnDesc<Double>("REFVAL"));
72 table_.addColumn(ScalarColumnDesc<Double>("INCREMENT"));
73
[847]74 table_.rwKeywordSet().define("FRAME", String("TOPO"));
75 table_.rwKeywordSet().define("BASEFRAME", String("TOPO"));
[806]76 table_.rwKeywordSet().define("EQUINOX",String( "J2000"));
[941]77 table_.rwKeywordSet().define("UNIT", String(""));
[806]78 table_.rwKeywordSet().define("DOPPLER", String("RADIO"));
79
80 // new cached columns
81 refpixCol_.attach(table_,"REFPIX");
82 refvalCol_.attach(table_,"REFVAL");
83 incrCol_.attach(table_,"INCREMENT");
84}
85
86uInt STFrequencies::addEntry( Double refpix, Double refval, Double inc )
87{
88 // test if this already exists
89 Table result = table_( near(table_.col("REFVAL"), refval)
90 && near(table_.col("REFPIX"), refpix)
91 && near(table_.col("INCREMENT"), inc) );
92 uInt resultid = 0;
93 if ( result.nrow() > 0) {
94 ROScalarColumn<uInt> c(result, "ID");
95 c.get(0, resultid);
96
97 } else {
98 uInt rno = table_.nrow();
99 table_.addRow();
100 // get last assigned freq_id and increment
101 if ( rno > 0 ) {
102 idCol_.get(rno-1, resultid);
103 resultid++;
104 }
105 refpixCol_.put(rno, refpix);
106 refvalCol_.put(rno, refval);
107 incrCol_.put(rno, inc);
108 idCol_.put(rno, resultid);
109 }
110 return resultid;
111}
112
113
[830]114
115void STFrequencies::getEntry( Double& refpix, Double& refval, Double& inc,
116 uInt id )
117{
118 Table t = table_(table_.col("ID") == Int(id) );
119 if (t.nrow() == 0 ) {
120 throw(AipsError("STFrequencies::getEntry - freqID out of range"));
121 }
122 ROTableRow row(t);
123 // get first row - there should only be one matching id
124 const TableRecord& rec = row.get(0);
125 refpix = rec.asDouble("REFPIX");
126 refval = rec.asDouble("REFVAL");
127 inc = rec.asDouble("INCREMENT");
128}
129
[847]130SpectralCoordinate STFrequencies::getSpectralCoordinate( uInt id ) const
[806]131{
[847]132 Table t = table_(table_.col("ID") == Int(id) );
[806]133
134 if (t.nrow() == 0 ) {
[847]135 throw(AipsError("STFrequencies::getSpectralCoordinate - ID out of range"));
[806]136 }
137
138 // get the data
139 ROTableRow row(t);
140 // get first row - there should only be one matching id
141 const TableRecord& rec = row.get(0);
[847]142 return SpectralCoordinate( getFrame(true), rec.asDouble("REFVAL"),
[806]143 rec.asDouble("INCREMENT"),
144 rec.asDouble("REFPIX"));
145}
146
[847]147SpectralCoordinate
[1360]148 STFrequencies::getSpectralCoordinate( const MDirection& md,
149 const MPosition& mp,
150 const MEpoch& me,
151 Double restfreq, uInt id ) const
[806]152{
[847]153 SpectralCoordinate spc = getSpectralCoordinate(id);
154 spc.setRestFrequency(restfreq, True);
155 if ( !spc.setReferenceConversion(getFrame(), me, mp, md) ) {
156 throw(AipsError("Couldn't convert frequency frame."));
157 }
158 String unitstr = getUnitString();
159 if ( !unitstr.empty() ) {
160 Unit unitu(unitstr);
161 if ( unitu == Unit("Hz") ) {
[866]162 Vector<String> wau(1); wau = unitu.getName();
163 spc.setWorldAxisUnits(wau);
[847]164 } else {
165 spc.setVelocity(unitstr, getDoppler());
166 }
167 }
168 return spc;
169}
170
171
172void STFrequencies::rescale( Float factor, const std::string& mode )
173{
[806]174 TableRow row(table_);
175 TableRecord& outrec = row.record();
176 RecordFieldPtr<Double> rv(outrec, "REFVAL");
177 RecordFieldPtr<Double> rp(outrec, "REFPIX");
178 RecordFieldPtr<Double> inc(outrec, "INCREMENT");
179 for (uInt i=0; i<table_.nrow(); ++i) {
180
181 const TableRecord& rec = row.get(i);
182
[847]183 SpectralCoordinate sc ( getFrame(true), rec.asDouble("REFVAL"),
[806]184 rec.asDouble("INCREMENT"), rec.asDouble("REFPIX") );
185
186 SpectralCoordinate scout;
187 if (mode == "BIN") {
188 scout = binCsys(sc, Int(factor));
189 } else if (mode == "RESAMPLE") {
190 scout = resampleCsys(sc, factor);
191 }
192 *rv = scout.referenceValue()[0];
193 *rp = scout.referencePixel()[0];
194 *inc = scout.increment()[0];
195 row.put(i);
196 }
197}
198
199SpectralCoordinate STFrequencies::binCsys(const SpectralCoordinate& sc,
200 Int factor)
201{
202 CoordinateSystem csys;
203 csys.addCoordinate(sc);
204 IPosition factors(1, factor);
205 CoordinateSystem binnedcs =
206 CoordinateUtil::makeBinnedCoordinateSystem(factors, csys, False);
207 return binnedcs.spectralCoordinate(0);
208}
209
210SpectralCoordinate STFrequencies::resampleCsys(const SpectralCoordinate& sc,
211 Float width)
212{
213 Vector<Float> offset(1,0.0);
214 Vector<Float> factors(1,1.0/width);
215 Vector<Int> newshape;
216 CoordinateSystem csys;
217 csys.addCoordinate(sc);
218 CoordinateSystem csys2 = csys.subImage(offset, factors, newshape);
219 return csys2.spectralCoordinate(0);
220}
221
222
[847]223MFrequency::Types STFrequencies::getFrame(bool base) const
[806]224{
225 // get the ref frame
[921]226 String rf;
227 if ( base )
228 rf = table_.keywordSet().asString("BASEFRAME");
229 else
230 rf = table_.keywordSet().asString("FRAME");
[806]231
232 // Create SpectralCoordinate (units Hz)
233 MFrequency::Types mft;
234 if (!MFrequency::getType(mft, rf)) {
235 ostringstream oss;
236 pushLog("WARNING: Frequency type unknown assuming TOPO");
237 mft = MFrequency::TOPO;
238 }
239
240 return mft;
241}
242
[1360]243std::string STFrequencies::getFrameString( bool base ) const
[847]244{
245 if ( base ) return table_.keywordSet().asString("BASEFRAME");
246 else return table_.keywordSet().asString("FRAME");
247}
248
[1360]249std::string STFrequencies::getUnitString( ) const
[847]250{
251 return table_.keywordSet().asString("UNIT");
252}
253
[1360]254Unit STFrequencies::getUnit( ) const
[847]255{
256 return Unit(table_.keywordSet().asString("UNIT"));
257}
258
[1360]259std::string STFrequencies::getDopplerString( ) const
[847]260{
261 return table_.keywordSet().asString("DOPPLER");
262}
263
[1360]264MDoppler::Types STFrequencies::getDoppler( ) const
[847]265{
266 String dpl = table_.keywordSet().asString("DOPPLER");
267
268 // Create SpectralCoordinate (units Hz)
269 MDoppler::Types mdt;
270 if (!MDoppler::getType(mdt, dpl)) {
271 throw(AipsError("Doppler type unknown"));
272 }
273 return mdt;
274}
275
[1360]276std::string STFrequencies::print( int id )
[806]277{
278 Table t;
279 ostringstream oss;
280 if ( id < 0 ) t = table_;
281 else t = table_(table_.col("ID") == Int(id) );
282 ROTableRow row(t);
283 for (uInt i=0; i<t.nrow(); ++i) {
284 const TableRecord& rec = row.get(i);
285 oss << setw(8)
[887]286 << t.keywordSet().asString("FRAME") << setw(16) << setprecision(8)
[941]287 << rec.asDouble("REFVAL") << setw(7)
[806]288 << rec.asDouble("REFPIX") << setw(12)
289 << rec.asDouble("INCREMENT") << endl;
290 }
291 return String(oss);
292}
293
294float STFrequencies::getRefFreq( uInt id, uInt channel )
295{
296 Table t = table_(table_.col("ID") == Int(id) );
297 if ( t.nrow() == 0 ) throw(AipsError("Selected Illegal frequency id"));
298 ROTableRow row(t);
299 const TableRecord& rec = row.get(0);
300 return (Double(channel/2) - rec.asDouble("REFPIX"))
301 * rec.asDouble("INCREMENT") + rec.asDouble("REFVAL");
302}
303
[1360]304bool STFrequencies::conformant( const STFrequencies& other ) const
[840]305{
306 const Record& r = table_.keywordSet();
307 const Record& ro = other.table_.keywordSet();
[847]308 return ( r.asString("FRAME") == ro.asString("FRAME") &&
[840]309 r.asString("EQUINOX") == ro.asString("EQUINOX") &&
310 r.asString("UNIT") == ro.asString("UNIT") &&
311 r.asString("DOPPLER") == ro.asString("DOPPLER")
312 );
313}
314
[1360]315std::vector< std::string > STFrequencies::getInfo( ) const
[847]316{
317 const Record& r = table_.keywordSet();
318 std::vector<std::string> out;
319 out.push_back(r.asString("UNIT"));
320 out.push_back(r.asString("FRAME"));
321 out.push_back(r.asString("DOPPLER"));
[866]322 return out;
[847]323}
324
[1360]325void STFrequencies::setInfo( const std::vector< std::string >& theinfo )
[847]326{
327 if ( theinfo.size() != 3 ) throw(AipsError("setInfo needs three parameters"));
[866]328 try {
329 setUnit(theinfo[0]);
330 setFrame(theinfo[1]);
331 setDoppler(theinfo[2]);
332 } catch (AipsError& e) {
333 throw(e);
334 }
335}
336
[1360]337void STFrequencies::setUnit( const std::string & unit )
[866]338{
339 if (unit == "" || unit == "pixel" || unit == "channel" ) {
340 table_.rwKeywordSet().define("UNIT", "");
[847]341 } else {
[866]342 Unit u(unit);
343 if ( u == Unit("km/s") || u == Unit("Hz") )
344 table_.rwKeywordSet().define("UNIT", unit);
345 else {
346 throw(AipsError("Illegal spectral unit."));
347 }
[847]348 }
349}
[866]350
[1360]351void STFrequencies::setFrame(MFrequency::Types frame, bool base )
[847]352{
[921]353 String f = MFrequency::showType(frame);
354 if (base)
355 table_.rwKeywordSet().define("BASEFRAME", f);
356 else
357 table_.rwKeywordSet().define("FRAME", f);
358
359}
360
[1360]361void STFrequencies::setFrame( const std::string & frame, bool base )
[921]362{
[847]363 MFrequency::Types mdr;
364 if (!MFrequency::getType(mdr, frame)) {
365 Int a,b;const uInt* c;
366 const String* valid = MFrequency::allMyTypes(a, b, c);
[866]367 Vector<String> ftypes(IPosition(1,a), valid);
368 ostringstream oss;
369 oss << String("Please specify a legal frequency type. Types are\n");
370 oss << ftypes;
371 String msg(oss);
372 throw(AipsError(msg));
[847]373 } else {
[921]374 if (base)
375 table_.rwKeywordSet().define("BASEFRAME", frame);
376 else
377 table_.rwKeywordSet().define("FRAME", frame);
[847]378 }
379}
380
[1360]381void STFrequencies::setDoppler( const std::string & doppler )
[866]382{
383 MDoppler::Types mdt;
384 if (!MDoppler::getType(mdt, doppler)) {
385 Int a,b;const uInt* c;
386 const String* valid = MDoppler::allMyTypes(a, b, c);
387 Vector<String> ftypes(IPosition(1,a), valid);
388 ostringstream oss;
389 oss << String("Please specify a legal doppler type. Types are\n");
390 oss << ftypes;
391 String msg(oss);
392 throw(AipsError(msg));
393 } else {
394 table_.rwKeywordSet().define("DOPPLER", doppler);
395 }
396}
[849]397
[1360]398void STFrequencies::shiftRefPix(int npix, uInt id)
399{
400 Table t = table_(table_.col("ID") == Int(id) );
401 if ( t.nrow() == 0 ) throw(AipsError("Selected Illegal frequency id"));
402 ScalarColumn<Double> tcol(t, "REFPIX");
403 tcol.put(0, tcol(0)+Double(npix));
404}
[866]405
[806]406} // namespace
Note: See TracBrowser for help on using the repository browser.