diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-10-30 20:23:52 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-10-30 20:23:52 (GMT) |
commit | 5295480944cc7d720c10bbbb8ce5287056ba1c84 (patch) | |
tree | bfe4685fb625c49683d2ede6c97059fd7749dcc3 | |
parent | 8c3a00c22ddf6c742903bbcc8a08069c7245b74a (diff) | |
download | blt-5295480944cc7d720c10bbbb8ce5287056ba1c84.zip blt-5295480944cc7d720c10bbbb8ce5287056ba1c84.tar.gz blt-5295480944cc7d720c10bbbb8ce5287056ba1c84.tar.bz2 |
fix WFPC2 issue with blocking
-rw-r--r-- | ds9/doc/release/r8.0.html | 1 | ||||
-rw-r--r-- | tksao/frame/base.h | 2 | ||||
-rw-r--r-- | tksao/frame/context.C | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/ds9/doc/release/r8.0.html b/ds9/doc/release/r8.0.html index ba0b36b..3f525be 100644 --- a/ds9/doc/release/r8.0.html +++ b/ds9/doc/release/r8.0.html @@ -100,6 +100,7 @@ incorrectly calculating an index into the data cube.</tt></li> <li><tt><b>12.15.2018 RELEASE version 8.0</b></tt></li> <li><tt>10.25.2018 BACKUP: fixed an issue with soft links.</tt></li> <li><tt>10.29.2018 BLOCK: all supported WCSs now updated to reflect blocking.</tt></li> +<li><tt>10.30.2018 WFPC2: fixe an issue with blocking and WFPC2 images.</tt></li> <li><tt><b>12.15.2018 RELEASE version 8.1b1</b></tt></li> </ol> </div> diff --git a/tksao/frame/base.h b/tksao/frame/base.h index 817107c..a558e71 100644 --- a/tksao/frame/base.h +++ b/tksao/frame/base.h @@ -124,7 +124,7 @@ public: enum MemType {ALLOC, ALLOCGZ, CHANNEL, MMAP, SMMAP, MMAPINCR, SHARE, SSHARE, SOCKET, SOCKETGZ, VAR, HIST, POST, PHOTO}; - enum MosaicType {NOMOSAIC, IRAF, WCSMOSAIC, WFPC2}; + enum MosaicType {NOMOSAIC, IRAF, WCSMOSAIC}; enum LayerType {IMG, MASK}; enum CutMethod {SUM,AVERAGE}; diff --git a/tksao/frame/context.C b/tksao/frame/context.C index 05dff3d..7ea5c43 100644 --- a/tksao/frame/context.C +++ b/tksao/frame/context.C @@ -1249,7 +1249,7 @@ int Context::loadMosaicWFPC2(Base::MemType which, const char* fn, // Its legal, save it bfits_ = img; - loadInit(1, Base::WFPC2, Coord::WCS); + loadInit(1, Base::WCSMOSAIC, Coord::WCS); // remember in case of compress Base::MemType sav = which; |