diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-11-07 21:48:30 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-11-07 21:48:30 (GMT) |
commit | a6c51c48b39b7b1d6c1990711af13aa4ce42ea36 (patch) | |
tree | cc24013b7582c38c46b4f096a1220b30559d1eba /tksao/frame | |
parent | 8ef314226739c95c649c5a3cd99f8f87f4b4522e (diff) | |
download | blt-a6c51c48b39b7b1d6c1990711af13aa4ce42ea36.zip blt-a6c51c48b39b7b1d6c1990711af13aa4ce42ea36.tar.gz blt-a6c51c48b39b7b1d6c1990711af13aa4ce42ea36.tar.bz2 |
update AST WCS
Diffstat (limited to 'tksao/frame')
-rw-r--r-- | tksao/frame/fitsimage.C | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tksao/frame/fitsimage.C b/tksao/frame/fitsimage.C index fa49f28..1c8a270 100644 --- a/tksao/frame/fitsimage.C +++ b/tksao/frame/fitsimage.C @@ -3411,6 +3411,7 @@ char* FitsImage::pix2wcs(Vector in, Coord::CoordSystem sys, } #endif +#ifndef NEWWCS Vector FitsImage::wcs2pix(Vector in, Coord::CoordSystem sys, Coord::SkyFrame sky) { @@ -3439,6 +3440,38 @@ Vector FitsImage::wcs2pix(Vector in, Coord::CoordSystem sys, maperr =1; return Vector(); } +#else +Vector FitsImage::wcs2pix(Vector in, Coord::CoordSystem sys, + Coord::SkyFrame sky) +{ + cerr << '*'; + if (!hasWCS(sys)) { + maperr =1; + return Vector(); + } + + astClearStatus; // just to make sure + setAstWCSSystem(newast_,sys); + setAstWCSSkyFrame(newast_,sky); + + double xx =0; + double yy =0; + if (astWCSIsASkyFrame(newast_)) { + Vector rr = in*M_PI/180.; + astWCSTran(newast_, 1, rr.v, &(rr[1]), 0, &xx, &yy); + if (astOK && checkAstWCS(xx,yy)) + return Vector(xx,yy); + } + else { + astWCSTran(newast_, 1, in.v, in.v+1, 0, &xx, &yy); + if (astOK && checkAstWCS(xx,yy)) + return Vector(xx,yy); + } + + maperr =1; + return Vector(); +} +#endif Vector* FitsImage::wcs2pix(Vector* in, int num, Coord::CoordSystem sys, Coord::SkyFrame sky) |