├── .gitignore ├── Makefile ├── README.md ├── examples ├── grid.html ├── pixel-to-sky.html └── sky-to-pixel.html ├── package.json ├── src ├── end.js ├── start.js └── wrapper.c ├── test ├── create_tests.c ├── data │ ├── 1904-66_AIR │ ├── 1904-66_AIT │ ├── 1904-66_ARC │ ├── 1904-66_AZP │ ├── 1904-66_BON │ ├── 1904-66_CAR │ ├── 1904-66_CEA │ ├── 1904-66_COD │ ├── 1904-66_COE │ ├── 1904-66_COO │ ├── 1904-66_COP │ ├── 1904-66_CSC │ ├── 1904-66_CYP │ ├── 1904-66_HPX │ ├── 1904-66_MER │ ├── 1904-66_MOL │ ├── 1904-66_NCP │ ├── 1904-66_PAR │ ├── 1904-66_PCO │ ├── 1904-66_QSC │ ├── 1904-66_SFL │ ├── 1904-66_SIN │ ├── 1904-66_STG │ ├── 1904-66_SZP │ ├── 1904-66_TAN │ ├── 1904-66_TSC │ ├── 1904-66_ZEA │ ├── 1904-66_ZPN │ ├── HIGAL_BLUE0671p118_070_RM │ ├── PlanckMap_308.235996_-22.010959_1.0_1.0_030_1024_nominal │ └── m101 ├── get_headers.py ├── m101_test.js └── wcsjs_test.js ├── wcs.js └── wcs.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | wcslib.* 3 | wcslib 4 | node_modules 5 | test/data/*.gz 6 | a.out 7 | bower_components 8 | *.fits -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | 2 | EMSCRIPTEN=$(HOME)/emscripten 3 | 4 | build: wcslib.js 5 | cat src/start.js wcslib.js src/end.js > wcs.js 6 | node_modules/.bin/uglifyjs wcs.js -o wcs.min.js 7 | 8 | wcslib.js: wcslib 9 | cd wcslib; \ 10 | $(EMSCRIPTEN)/emconfigure ./configure --prefix=$(EMSCRIPTEN)/system; \ 11 | $(EMSCRIPTEN)/emmake make; \ 12 | $(EMSCRIPTEN)/emmake make install; 13 | $(EMSCRIPTEN)/emcc -O2 src/wrapper.c -lwcs -lm -o wcslib.js -s EXPORTED_FUNCTIONS="['_getWcs', '_pix2sky', '_sky2pix']"; 14 | 15 | wcslib: wcslib.tar.bz2 16 | tar xjf wcslib.tar.bz2 17 | mv wcslib-* wcslib 18 | 19 | wcslib.tar.bz2: 20 | curl "ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib.tar.bz2" -o "wcslib.tar.bz2" 21 | 22 | clean: 23 | rm -rf wcslib 24 | rm wcslib.js 25 | rm wcs.js 26 | rm wcs.min.js 27 | 28 | tests: 29 | gcc test/create_tests.c -lwcs -lcfitsio -lm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wcsjs 2 | 3 | `wcsjs` is a Javascript port of Mark Calabretta's [WCSLIB](http://www.atnf.csiro.au/people/mcalabre/WCS/) using [Emscripten](https://github.com/kripken/emscripten/wiki). The library works in either NodeJS or in the browser. 4 | 5 | ## Usage 6 | 7 | ### NodeJS 8 | 9 | 10 | var wcs = require('wcs'); 11 | 12 | var w = new wcs(); 13 | w.init(headerString); 14 | var world = w.pix2sky(x, y); 15 | var pixcrd = w.sky2pix(ra, dec); 16 | 17 | 18 | ### Browser 19 | 20 | 21 | 27 | 28 | -------------------------------------------------------------------------------- /examples/grid.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | wcsjs: pixel to sky 6 | 7 | 33 | 34 | 35 | 36 | 234 | 235 | 236 | 237 |
238 |

wcsjs: Creating a Coordinate Grid

239 |

This example shows how to use D3 to build coordinate axes for an astronomical image.

240 |

, 241 |

242 |
243 |
244 | 245 | 246 | -------------------------------------------------------------------------------- /examples/pixel-to-sky.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | wcsjs: pixel to sky 6 | 7 | 8 | 37 | 38 | 39 | 40 |
41 |

wcsjs: pixel to sky

42 |
43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /examples/sky-to-pixel.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | wcsjs: sky to pixel 6 | 7 | 8 | 34 | 35 | 36 | 37 |
38 |

wcsjs: sky to pixel

39 |
40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wcs.js", 3 | "version": "0.2.3", 4 | "description": "Astronomical coordinates for various projections", 5 | "author": "Amit Kapadia ", 6 | "keywords": [ 7 | "astronomy", 8 | "coordinates", 9 | "projections", 10 | "emscripten", 11 | "science" 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/astrojs/wcsjs.git" 16 | }, 17 | "scripts": { 18 | "test": "nodeunit test/wcsjs_test.js" 19 | }, 20 | "devDependencies": { 21 | "http-server": "0.5.x", 22 | "uglify-js": "2.4.x", 23 | "nodeunit": "0.8.x" 24 | } 25 | } -------------------------------------------------------------------------------- /src/end.js: -------------------------------------------------------------------------------- 1 | 2 | function wcs() { 3 | this._getWCS = Module.cwrap('getWcs', 'number', ['String', 'number']); 4 | this._pix2sky = Module.cwrap('pix2sky', 'number', ['number', 'number', 'number', 'number']); 5 | this._sky2pix = Module.cwrap('sky2pix', 'number', ['number', 'number', 'number', 'number']); 6 | } 7 | 8 | function string2buffer(str) { 9 | var buffer = new ArrayBuffer(str.length); 10 | var view = new Uint8Array(buffer); 11 | for (var i = 0; i < str.length; i += 1) { 12 | view[i] = str.charCodeAt(i); 13 | } 14 | 15 | return buffer; 16 | } 17 | 18 | function splice(str1, index, remove, str2) { 19 | return (str1.slice(0, index) + str2 + str1.slice(index + Math.abs(remove))); 20 | } 21 | 22 | function toHeader(wcsObj) { 23 | var header = []; 24 | var line = " "; 25 | 26 | for (var card in wcsObj) { 27 | var value = wcsObj[card]; 28 | if (value === undefined || value === null) { 29 | continue; 30 | } 31 | 32 | if (typeof value === "string" && value !== 'T' && value !== 'F') { 33 | value = "'" + value + "'"; 34 | } 35 | 36 | var entry = splice(line, 0, card.length, card); 37 | entry = splice(entry, 8, 1, "="); 38 | entry = splice(entry, 10, value.toString().length, value); 39 | 40 | header.push(entry); 41 | } 42 | 43 | return header.join('\n'); 44 | } 45 | 46 | var wcsRegEx = [ 47 | 'DATE-OBS', 48 | 'EQUINOX', 49 | 'WCSAXES', 50 | 'RADESYS', 51 | 'LONPOLE', 52 | 'LATPOLE', 53 | /NAXIS\d*/, 54 | /CTYPE\d+/, 55 | /CRPIX\d+/, 56 | /CRVAL\d+/, 57 | /CUNIT\d+/, 58 | /CDELT\d+/, 59 | /CD.+/, 60 | /PV.+/, 61 | /CROTA\d+/ 62 | ]; 63 | 64 | // Initialize a WCS object using either a string or object of key value pairs 65 | wcs.prototype.init = function(header) { 66 | var headerStr, nkeyrec, nHeaderBytes, headerPtr, headerHeap; 67 | 68 | if (typeof header === "object") { 69 | header = toHeader(header); 70 | } 71 | 72 | // Split the string into an array and filter based on the WCS regular expressions 73 | var headerArray = header.match(/.{1,80}/g); 74 | headerArray = headerArray.filter(function(line) { 75 | 76 | // Extract the keyword 77 | var keyword = line.slice(0, 8).trim(); 78 | 79 | for (var i = 0; i < wcsRegEx.length; i += 1) { 80 | var regEx = wcsRegEx[i]; 81 | if (keyword.match(regEx)) { return true; } 82 | } 83 | 84 | return false; 85 | }); 86 | headerStr = headerArray.join('\n'); 87 | 88 | nkeyrec = headerArray.length; 89 | header = string2buffer(headerStr); 90 | 91 | // Allocate string on Emscripten heap and get byte offset 92 | nHeaderBytes = header.byteLength; 93 | headerPtr = Module._malloc(nHeaderBytes); 94 | headerHeap = new Uint8Array(Module.HEAPU8.buffer, headerPtr, nHeaderBytes); 95 | headerHeap.set(new Uint8Array(header)); 96 | 97 | // Allocate memory on the Emscripten heap for coordinates 98 | this.coordinatePtr = Module._malloc(16); 99 | 100 | // Use byte offset to pass header string to libwcs 101 | this.wcsPtr = this._getWCS(headerHeap.byteOffset, nkeyrec); 102 | } 103 | 104 | wcs.prototype.pix2sky = function(x, y) { 105 | var world; 106 | 107 | this._pix2sky(this.wcsPtr, x, y, this.coordinatePtr); 108 | world = new Float64Array(Module.HEAPU8.buffer, this.coordinatePtr, 2); 109 | 110 | return [world[0], world[1]]; 111 | } 112 | 113 | wcs.prototype.sky2pix = function(ra, dec) { 114 | var pixcrd; 115 | 116 | this._sky2pix(this.wcsPtr, ra, dec, this.coordinatePtr); 117 | pixcrd = new Float64Array(Module.HEAPU8.buffer, this.coordinatePtr, 2); 118 | 119 | return [pixcrd[0], pixcrd[1]]; 120 | } 121 | 122 | wcs.version = '0.2.3'; 123 | 124 | if (typeof module !== 'undefined' && module.exports) { 125 | module.exports = wcs; 126 | } 127 | else { 128 | window.wcs = wcs; 129 | } 130 | 131 | }()); -------------------------------------------------------------------------------- /src/start.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | -------------------------------------------------------------------------------- /src/wrapper.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | 6 | struct wcsprm* getWcs(char *header, int nkeyrec) { 7 | int relax = WCSHDR_all, ctrl = 0; 8 | int nreject, nwcs; 9 | struct wcsprm *wcs; 10 | 11 | wcspih(header, nkeyrec, relax, ctrl, &nreject, &nwcs, &wcs); 12 | return wcs; 13 | } 14 | 15 | int pix2sky(struct wcsprm *wcs, double x, double y, double *world) { 16 | double imgcrd[2], phi[2], theta[2]; 17 | int status[1]; 18 | double pixcrd[2] = {x, y}; 19 | 20 | wcsp2s(wcs, 1, 2, pixcrd, imgcrd, phi, theta, world, status); 21 | return status[0]; 22 | } 23 | 24 | int sky2pix(struct wcsprm *wcs, double ra, double dec, double *pixcrd) { 25 | double imgcrd[2], phi[2], theta[2]; 26 | int status[1]; 27 | double world[2] = {ra, dec}; 28 | 29 | wcss2p(wcs, 1, 2, world, phi, theta, imgcrd, pixcrd, status); 30 | return status[0]; 31 | } -------------------------------------------------------------------------------- /test/create_tests.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include "fitsio.h" 4 | #include 5 | #include 6 | 7 | 8 | int main(void) { 9 | 10 | fitsfile *fptr; 11 | int nkeyrec, nreject, nwcs, status = 0; 12 | char *header; 13 | char filepath[27]; 14 | struct wcsprm *wcs; 15 | 16 | int nprojections = 28; 17 | char *projections[] = {"AIR","AIT","ARC","AZP","BON","CAR","CEA","COD","COE","COO","COP","CSC","CYP","HPX","MER","MOL","NCP","PAR","PCO","QSC","SFL","SIN","STG","SZP","TAN","TSC","ZEA","ZPN"}; 18 | 19 | int pixcrd1[] = {0, 0, 24, 38, 45, 98}; 20 | double pixcrd[] = {0, 0, 24, 38, 45, 98}; 21 | double imgcrd[6], phi[6], theta[6], world[6]; 22 | int stat[6]; 23 | 24 | for (int i = 0; i < nprojections; i++) { 25 | 26 | // Get header from FITS file 27 | strcpy(filepath, "test/data/1904-66_"); 28 | strcat(filepath, projections[i]); 29 | strcat(filepath, ".fits"); 30 | 31 | fits_open_image(&fptr, filepath, READONLY, &status); 32 | fits_hdr2str(fptr, 1, NULL, 0, &header, &nkeyrec, &status); 33 | 34 | wcspih(header, nkeyrec, 0, 0, &nreject, &nwcs, &wcs); 35 | wcsp2s(wcs, 3, 2, pixcrd, imgcrd, phi, theta, world, stat); 36 | 37 | printf("'%s': function(test) {\n", projections[i]); 38 | printf(" var header, w, world, pixel;\n"); 39 | printf("\n"); 40 | printf(" header = fs.readFileSync(path.join(__dirname, 'data', '1904-66_%s'), 'utf8');\n", projections[i]); 41 | printf(" w = new wcs();\n"); 42 | printf(" w.init(header);\n"); 43 | printf("\n"); 44 | 45 | for (int j = 0; j < 6; j += 2) { 46 | printf(" world = w.pix2sky(%d, %d);\n", pixcrd1[j], pixcrd1[j+1]); 47 | printf(" test.equal(world[0].toFixed(6), %.6f);\n", world[j]); 48 | printf(" test.equal(world[1].toFixed(6), %.6f);\n", world[j+1]); 49 | printf("\n"); 50 | printf(" pixel = w.sky2pix(%f, %f);\n", world[j], world[j+1]); 51 | printf(" test.equal(Math.round(pixel[0]), %d);\n", pixcrd1[j]); 52 | printf(" test.equal(Math.round(pixel[1]), %d);\n", pixcrd1[j+1]); 53 | 54 | printf("\n"); 55 | } 56 | 57 | printf(" test.done();\n"); 58 | printf("},\n\n"); 59 | 60 | fits_close_file(fptr, &status); 61 | } 62 | 63 | fits_open_image(&fptr, "examples/PlanckMap_308.235996_-22.010959_1.0_1.0_030_1024_nominal.fits", READONLY, &status); 64 | fits_hdr2str(fptr, 1, NULL, 0, &header, &nkeyrec, &status); 65 | wcspih(header, nkeyrec, 0, 0, &nreject, &nwcs, &wcs); 66 | wcsp2s(wcs, 3, 2, pixcrd, imgcrd, phi, theta, world, stat); 67 | 68 | for (int j = 0; j < 6; j += 2) { 69 | printf("%f, %f\n", world[j], world[j+1]); 70 | } 71 | 72 | fits_close_file(fptr, &status); 73 | 74 | return 0; 75 | } -------------------------------------------------------------------------------- /test/data/1904-66_AIR: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---AIR' 8 | CRPIX1 = -2.347545010835E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--AIR' 12 | CRPIX2 = 8.339330824422E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = -9.000000000000E+01 / Native latitude of celestial pole 17 | PV2_1 = 4.500000000000E+01 / Projection parameter 1 18 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 19 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 20 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 21 | BPA = 0.000000000000E+00 / Beam position angle in degrees 22 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 23 | HISTORY Parkes Multibeam continuum map 24 | HISTORY Formed on Mon 2004/02/09 01:43:31 GMT by "pksgridzilla" which was 25 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 26 | HISTORY AIPS++ version 19.405.00 dated . 27 | HISTORY Polarization mode: A and B aggregated 28 | HISTORY Gridding parameters: 29 | HISTORY Method: WGTMED 30 | HISTORY Clip fraction: 0.000 31 | HISTORY Tsys weighting: applied 32 | HISTORY Beam weight order: 1 33 | HISTORY Beam FWHM: 14.4 arcmin 34 | HISTORY Beam normalization: applied 35 | HISTORY Smoothing kernel type: TOP-HAT 36 | HISTORY Kernel FWHM: 12.0 arcmin 37 | HISTORY Cutoff radius: 6.0 arcmin 38 | HISTORY Beam RSS cutoff: 0.0 39 | HISTORY Input data sets: 40 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 41 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 42 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 43 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 44 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 45 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 46 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 47 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 48 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 49 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 50 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 51 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 52 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 53 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 54 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 55 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 56 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 57 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 58 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 59 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 60 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 61 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 62 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 63 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 64 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 65 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 66 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 67 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 68 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 69 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 70 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 71 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 72 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 73 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 74 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 75 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 76 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 77 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 78 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 79 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 80 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 81 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 82 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 83 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 84 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 85 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 86 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 87 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 88 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 89 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 90 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 91 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 92 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 93 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 94 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 95 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 96 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 97 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 98 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 99 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 100 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 101 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 102 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 103 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 104 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 105 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 106 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 107 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 108 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 109 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 110 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 111 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 112 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 113 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 114 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 115 | HISTORY Original FITS filename "1904-66_AIR.continuum.fits". 116 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_AIT: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---AIT' 8 | CRPIX1 = -2.462317116277E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--AIT' 12 | CRPIX2 = 7.115850027049E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 02:04:34 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_AIT.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_ARC: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---ARC' 8 | CRPIX1 = -2.469419019050E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--ARC' 12 | CRPIX2 = 5.082274450444E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = -9.000000000000E+01 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 01:35:43 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_ARC.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_AZP: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---AZP' 8 | CRPIX1 = -2.541100848779E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--AZP' 12 | CRPIX2 = -1.134948542534E+01 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = -9.000000000000E+01 / Native latitude of celestial pole 17 | PV2_1 = 2.000000000000E+00 / Projection parameter 1 18 | PV2_2 = 3.000000000000E+01 / Projection parameter 2 19 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 20 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 21 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 22 | BPA = 0.000000000000E+00 / Beam position angle in degrees 23 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 24 | HISTORY Parkes Multibeam continuum map 25 | HISTORY Formed on Mon 2004/02/09 01:16:54 GMT by "pksgridzilla" which was 26 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 27 | HISTORY AIPS++ version 19.405.00 dated . 28 | HISTORY Polarization mode: A and B aggregated 29 | HISTORY Gridding parameters: 30 | HISTORY Method: WGTMED 31 | HISTORY Clip fraction: 0.000 32 | HISTORY Tsys weighting: applied 33 | HISTORY Beam weight order: 1 34 | HISTORY Beam FWHM: 14.4 arcmin 35 | HISTORY Beam normalization: applied 36 | HISTORY Smoothing kernel type: TOP-HAT 37 | HISTORY Kernel FWHM: 12.0 arcmin 38 | HISTORY Cutoff radius: 6.0 arcmin 39 | HISTORY Beam RSS cutoff: 0.0 40 | HISTORY Input data sets: 41 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 42 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 43 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 44 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 45 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 46 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 47 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 48 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 49 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 50 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 51 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 52 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 53 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 54 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 55 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 56 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 57 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 58 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 59 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 60 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 61 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 62 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 63 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 64 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 65 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 66 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 67 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 68 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 69 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 70 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 71 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 72 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 73 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 74 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 75 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 76 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 77 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 78 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 79 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 80 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 81 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 82 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 83 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 84 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 85 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 86 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 87 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 88 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 89 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 90 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 91 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 92 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 93 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 94 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 95 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 96 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 97 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 98 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 99 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 100 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 101 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 102 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 103 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 104 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 105 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 106 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 107 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 108 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 109 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 110 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 111 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 112 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 113 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 114 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 115 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 116 | HISTORY Original FITS filename "1904-66_AZP.continuum.fits". 117 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_BON: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---BON' 8 | CRPIX1 = -2.431263982441E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--BON' 12 | CRPIX2 = -3.307412668190E+01 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | PV2_1 = 4.500000000000E+01 / Projection parameter 1 18 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 19 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 20 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 21 | BPA = 0.000000000000E+00 / Beam position angle in degrees 22 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 23 | HISTORY Parkes Multibeam continuum map 24 | HISTORY Formed on Mon 2004/02/09 02:17:44 GMT by "pksgridzilla" which was 25 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 26 | HISTORY AIPS++ version 19.405.00 dated . 27 | HISTORY Polarization mode: A and B aggregated 28 | HISTORY Gridding parameters: 29 | HISTORY Method: WGTMED 30 | HISTORY Clip fraction: 0.000 31 | HISTORY Tsys weighting: applied 32 | HISTORY Beam weight order: 1 33 | HISTORY Beam FWHM: 14.4 arcmin 34 | HISTORY Beam normalization: applied 35 | HISTORY Smoothing kernel type: TOP-HAT 36 | HISTORY Kernel FWHM: 12.0 arcmin 37 | HISTORY Cutoff radius: 6.0 arcmin 38 | HISTORY Beam RSS cutoff: 0.0 39 | HISTORY Input data sets: 40 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 41 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 42 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 43 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 44 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 45 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 46 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 47 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 48 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 49 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 50 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 51 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 52 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 53 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 54 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 55 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 56 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 57 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 58 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 59 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 60 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 61 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 62 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 63 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 64 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 65 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 66 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 67 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 68 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 69 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 70 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 71 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 72 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 73 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 74 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 75 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 76 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 77 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 78 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 79 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 80 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 81 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 82 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 83 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 84 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 85 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 86 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 87 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 88 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 89 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 90 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 91 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 92 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 93 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 94 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 95 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 96 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 97 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 98 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 99 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 100 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 101 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 102 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 103 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 104 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 105 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 106 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 107 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 108 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 109 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 110 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 111 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 112 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 113 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 114 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 115 | HISTORY Original FITS filename "1904-66_BON.continuum.fits". 116 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_CAR: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---CAR' 8 | CRPIX1 = -2.482173814412E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--CAR' 12 | CRPIX2 = 7.527038199745E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 01:51:20 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_CAR.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_CEA: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---CEA' 8 | CRPIX1 = -2.482173814412E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--CEA' 12 | CRPIX2 = 7.688571124876E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | PV2_1 = 1.000000000000E+00 / Projection parameter 1 18 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 19 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 20 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 21 | BPA = 0.000000000000E+00 / Beam position angle in degrees 22 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 23 | HISTORY Parkes Multibeam continuum map 24 | HISTORY Formed on Mon 2004/02/09 01:48:41 GMT by "pksgridzilla" which was 25 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 26 | HISTORY AIPS++ version 19.405.00 dated . 27 | HISTORY Polarization mode: A and B aggregated 28 | HISTORY Gridding parameters: 29 | HISTORY Method: WGTMED 30 | HISTORY Clip fraction: 0.000 31 | HISTORY Tsys weighting: applied 32 | HISTORY Beam weight order: 1 33 | HISTORY Beam FWHM: 14.4 arcmin 34 | HISTORY Beam normalization: applied 35 | HISTORY Smoothing kernel type: TOP-HAT 36 | HISTORY Kernel FWHM: 12.0 arcmin 37 | HISTORY Cutoff radius: 6.0 arcmin 38 | HISTORY Beam RSS cutoff: 0.0 39 | HISTORY Input data sets: 40 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 41 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 42 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 43 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 44 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 45 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 46 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 47 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 48 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 49 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 50 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 51 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 52 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 53 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 54 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 55 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 56 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 57 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 58 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 59 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 60 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 61 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 62 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 63 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 64 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 65 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 66 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 67 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 68 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 69 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 70 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 71 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 72 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 73 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 74 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 75 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 76 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 77 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 78 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 79 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 80 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 81 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 82 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 83 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 84 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 85 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 86 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 87 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 88 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 89 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 90 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 91 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 92 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 93 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 94 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 95 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 96 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 97 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 98 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 99 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 100 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 101 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 102 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 103 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 104 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 105 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 106 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 107 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 108 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 109 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 110 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 111 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 112 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 113 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 114 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 115 | HISTORY Original FITS filename "1904-66_CEA.continuum.fits". 116 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_COD: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---COD' 8 | CRPIX1 = -2.153431714695E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--COD' 12 | CRPIX2 = 1.561302682707E+01 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = -4.500000000000E+01 / Native latitude of celestial pole 17 | PV2_1 = 4.500000000000E+01 / Projection parameter 1 18 | PV2_2 = 2.500000000000E+01 / Projection parameter 2 19 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 20 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 21 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 22 | BPA = 0.000000000000E+00 / Beam position angle in degrees 23 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 24 | HISTORY Parkes Multibeam continuum map 25 | HISTORY Formed on Mon 2004/02/09 02:12:30 GMT by "pksgridzilla" which was 26 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 27 | HISTORY AIPS++ version 19.405.00 dated . 28 | HISTORY Polarization mode: A and B aggregated 29 | HISTORY Gridding parameters: 30 | HISTORY Method: WGTMED 31 | HISTORY Clip fraction: 0.000 32 | HISTORY Tsys weighting: applied 33 | HISTORY Beam weight order: 1 34 | HISTORY Beam FWHM: 14.4 arcmin 35 | HISTORY Beam normalization: applied 36 | HISTORY Smoothing kernel type: TOP-HAT 37 | HISTORY Kernel FWHM: 12.0 arcmin 38 | HISTORY Cutoff radius: 6.0 arcmin 39 | HISTORY Beam RSS cutoff: 0.0 40 | HISTORY Input data sets: 41 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 42 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 43 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 44 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 45 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 46 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 47 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 48 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 49 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 50 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 51 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 52 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 53 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 54 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 55 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 56 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 57 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 58 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 59 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 60 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 61 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 62 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 63 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 64 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 65 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 66 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 67 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 68 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 69 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 70 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 71 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 72 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 73 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 74 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 75 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 76 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 77 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 78 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 79 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 80 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 81 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 82 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 83 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 84 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 85 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 86 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 87 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 88 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 89 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 90 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 91 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 92 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 93 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 94 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 95 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 96 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 97 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 98 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 99 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 100 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 101 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 102 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 103 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 104 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 105 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 106 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 107 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 108 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 109 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 110 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 111 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 112 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 113 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 114 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 115 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 116 | HISTORY Original FITS filename "1904-66_COD.continuum.fits". 117 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_COE: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---COE' 8 | CRPIX1 = -2.230375366798E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--COE' 12 | CRPIX2 = -1.435249668783E+01 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 4.500000000000E+01 / Native latitude of celestial pole 17 | PV2_1 = -4.500000000000E+01 / Projection parameter 1 18 | PV2_2 = 2.500000000000E+01 / Projection parameter 2 19 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 20 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 21 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 22 | BPA = 0.000000000000E+00 / Beam position angle in degrees 23 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 24 | HISTORY Parkes Multibeam continuum map 25 | HISTORY Formed on Mon 2004/02/09 02:09:50 GMT by "pksgridzilla" which was 26 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 27 | HISTORY AIPS++ version 19.405.00 dated . 28 | HISTORY Polarization mode: A and B aggregated 29 | HISTORY Gridding parameters: 30 | HISTORY Method: WGTMED 31 | HISTORY Clip fraction: 0.000 32 | HISTORY Tsys weighting: applied 33 | HISTORY Beam weight order: 1 34 | HISTORY Beam FWHM: 14.4 arcmin 35 | HISTORY Beam normalization: applied 36 | HISTORY Smoothing kernel type: TOP-HAT 37 | HISTORY Kernel FWHM: 12.0 arcmin 38 | HISTORY Cutoff radius: 6.0 arcmin 39 | HISTORY Beam RSS cutoff: 0.0 40 | HISTORY Input data sets: 41 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 42 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 43 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 44 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 45 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 46 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 47 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 48 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 49 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 50 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 51 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 52 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 53 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 54 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 55 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 56 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 57 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 58 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 59 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 60 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 61 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 62 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 63 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 64 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 65 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 66 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 67 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 68 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 69 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 70 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 71 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 72 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 73 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 74 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 75 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 76 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 77 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 78 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 79 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 80 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 81 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 82 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 83 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 84 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 85 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 86 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 87 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 88 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 89 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 90 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 91 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 92 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 93 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 94 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 95 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 96 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 97 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 98 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 99 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 100 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 101 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 102 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 103 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 104 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 105 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 106 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 107 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 108 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 109 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 110 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 111 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 112 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 113 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 114 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 115 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 116 | HISTORY Original FITS filename "1904-66_COE.continuum.fits". 117 | HISTORY Noise level of continuum map: 62 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_COO: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---COO' 8 | CRPIX1 = -2.136486051767E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--COO' 12 | CRPIX2 = 1.292640949564E+01 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = -4.500000000000E+01 / Native latitude of celestial pole 17 | PV2_1 = 4.500000000000E+01 / Projection parameter 1 18 | PV2_2 = 2.500000000000E+01 / Projection parameter 2 19 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 20 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 21 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 22 | BPA = 0.000000000000E+00 / Beam position angle in degrees 23 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 24 | HISTORY Parkes Multibeam continuum map 25 | HISTORY Formed on Mon 2004/02/09 02:15:07 GMT by "pksgridzilla" which was 26 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 27 | HISTORY AIPS++ version 19.405.00 dated . 28 | HISTORY Polarization mode: A and B aggregated 29 | HISTORY Gridding parameters: 30 | HISTORY Method: WGTMED 31 | HISTORY Clip fraction: 0.000 32 | HISTORY Tsys weighting: applied 33 | HISTORY Beam weight order: 1 34 | HISTORY Beam FWHM: 14.4 arcmin 35 | HISTORY Beam normalization: applied 36 | HISTORY Smoothing kernel type: TOP-HAT 37 | HISTORY Kernel FWHM: 12.0 arcmin 38 | HISTORY Cutoff radius: 6.0 arcmin 39 | HISTORY Beam RSS cutoff: 0.0 40 | HISTORY Input data sets: 41 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 42 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 43 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 44 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 45 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 46 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 47 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 48 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 49 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 50 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 51 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 52 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 53 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 54 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 55 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 56 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 57 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 58 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 59 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 60 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 61 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 62 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 63 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 64 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 65 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 66 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 67 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 68 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 69 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 70 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 71 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 72 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 73 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 74 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 75 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 76 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 77 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 78 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 79 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 80 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 81 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 82 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 83 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 84 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 85 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 86 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 87 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 88 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 89 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 90 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 91 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 92 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 93 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 94 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 95 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 96 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 97 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 98 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 99 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 100 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 101 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 102 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 103 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 104 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 105 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 106 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 107 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 108 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 109 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 110 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 111 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 112 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 113 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 114 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 115 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 116 | HISTORY Original FITS filename "1904-66_COO.continuum.fits". 117 | HISTORY Noise level of continuum map: 62 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_CSC: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---CSC' 8 | CRPIX1 = -2.686531829635E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--CSC' 12 | CRPIX2 = -7.043520126533E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 02:25:39 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_CSC.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_MER: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---MER' 8 | CRPIX1 = -2.482173814412E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--MER' 12 | CRPIX2 = 7.364978412864E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 01:53:59 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_MER.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_MOL: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---MOL' 8 | CRPIX1 = -2.127655947497E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--MOL' 12 | CRPIX2 = -2.310670994515E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 02:01:55 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_MOL.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_PAR: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---PAR' 8 | CRPIX1 = -2.465551494284E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--PAR' 12 | CRPIX2 = 3.322937769653E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 01:59:17 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_PAR.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_PCO: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---PCO' 8 | CRPIX1 = -2.462486098896E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--PCO' 12 | CRPIX2 = 3.620782775517E-01 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 02:20:22 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_PCO.continuum.fits". 115 | HISTORY Noise level of continuum map: 62 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_QSC: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---QSC' 8 | CRPIX1 = -2.583408175994E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--QSC' 12 | CRPIX2 = -8.258194421088E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 02:28:25 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_QSC.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_SFL: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---SFL' 8 | CRPIX1 = -2.463483086237E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--SFL' 12 | CRPIX2 = 7.527038199745E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 01:56:37 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_SFL.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_STG: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---STG' 8 | CRPIX1 = -2.519459909290E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--STG' 12 | CRPIX2 = 3.744942537739E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = -9.000000000000E+01 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 01:26:55 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_STG.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_TAN: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---TAN' 8 | CRPIX1 = -2.680658087122E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--TAN' 12 | CRPIX2 = -5.630437201085E-01 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = -9.000000000000E+01 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 01:23:37 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_TAN.continuum.fits". 115 | HISTORY Noise level of continuum map: 59 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_TSC: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---TSC' 8 | CRPIX1 = -1.897220156818E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--TSC' 12 | CRPIX2 = 2.037416464676E+01 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = 0.000000000000E+00 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 02:23:02 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_TSC.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/1904-66_ZEA: -------------------------------------------------------------------------------- 1 | SIMPLE = T 2 | BITPIX = -32 / IEEE (big-endian) 32-bit floating point data 3 | NAXIS = 2 4 | NAXIS1 = 192 5 | NAXIS2 = 192 6 | BUNIT = 'JY/BEAM ' 7 | CTYPE1 = 'RA---ZEA' 8 | CRPIX1 = -2.444880690361E+02 9 | CDELT1 = -6.666666666667E-02 10 | CRVAL1 = 0.000000000000E+00 11 | CTYPE2 = 'DEC--ZEA' 12 | CRPIX2 = 5.738055949994E+00 13 | CDELT2 = 6.666666666667E-02 14 | CRVAL2 = -9.000000000000E+01 15 | LONPOLE = 1.800000000000E+02 / Native longitude of celestial pole 16 | LATPOLE = -9.000000000000E+01 / Native latitude of celestial pole 17 | EQUINOX = 2.000000000000E+03 / Equinox of equatorial coordinates 18 | BMAJ = 2.399999936422E-01 / Beam major axis in degrees 19 | BMIN = 2.399999936422E-01 / Beam minor axis in degrees 20 | BPA = 0.000000000000E+00 / Beam position angle in degrees 21 | RESTFRQ = 1.420405750000E+09 / Line rest frequency, Hz 22 | HISTORY Parkes Multibeam continuum map 23 | HISTORY Formed on Mon 2004/02/09 01:40:52 GMT by "pksgridzilla" which was 24 | HISTORY compiled on Feb 9 2004 12:08:02 (local time) within 25 | HISTORY AIPS++ version 19.405.00 dated . 26 | HISTORY Polarization mode: A and B aggregated 27 | HISTORY Gridding parameters: 28 | HISTORY Method: WGTMED 29 | HISTORY Clip fraction: 0.000 30 | HISTORY Tsys weighting: applied 31 | HISTORY Beam weight order: 1 32 | HISTORY Beam FWHM: 14.4 arcmin 33 | HISTORY Beam normalization: applied 34 | HISTORY Smoothing kernel type: TOP-HAT 35 | HISTORY Kernel FWHM: 12.0 arcmin 36 | HISTORY Cutoff radius: 6.0 arcmin 37 | HISTORY Beam RSS cutoff: 0.0 38 | HISTORY Input data sets: 39 | HISTORY 97-10-09_0356_193558-66_206a.sdfits 40 | HISTORY 97-10-12_0142_182123-66_193a.sdfits 41 | HISTORY 97-10-12_0151_182707-66_194a.sdfits 42 | HISTORY 97-10-12_0200_183252-66_195a.sdfits 43 | HISTORY 97-11-07_0510_183836-66_196a.sdfits 44 | HISTORY 97-11-07_0519_184420-66_197a.sdfits 45 | HISTORY 97-11-07_0528_185004-66_198a.sdfits 46 | HISTORY 97-11-07_0537_185548-66_199a.sdfits 47 | HISTORY 97-11-07_0546_190132-66_200a.sdfits 48 | HISTORY 97-11-07_0556_190717-66_201a.sdfits 49 | HISTORY 97-11-07_0645_191301-66_202a.sdfits 50 | HISTORY 97-11-07_0654_191845-66_203a.sdfits 51 | HISTORY 97-11-07_0703_192429-66_204a.sdfits 52 | HISTORY 97-11-07_0712_193013-66_205a.sdfits 53 | HISTORY 97-11-07_0724_194142-66_207a.sdfits 54 | HISTORY 97-11-18_0256_193815-66_206c.sdfits 55 | HISTORY 97-11-18_0306_194359-66_207c.sdfits 56 | HISTORY 97-11-19_0447_182341-66_193c.sdfits 57 | HISTORY 97-11-19_0456_182925-66_194c.sdfits 58 | HISTORY 97-11-19_0507_190350-66_200c.sdfits 59 | HISTORY 97-11-19_0516_190934-66_201c.sdfits 60 | HISTORY 97-11-19_0525_191519-66_202c.sdfits 61 | HISTORY 97-11-19_0534_192103-66_203c.sdfits 62 | HISTORY 97-11-19_0544_192647-66_204c.sdfits 63 | HISTORY 97-11-19_0553_193231-66_205c.sdfits 64 | HISTORY 97-11-19_0602_183509-66_195c.sdfits 65 | HISTORY 97-11-19_0612_184053-66_196c.sdfits 66 | HISTORY 97-11-19_0622_184638-66_197c.sdfits 67 | HISTORY 97-11-19_0631_185222-66_198c.sdfits 68 | HISTORY 97-11-19_0640_185806-66_199c.sdfits 69 | HISTORY 98-03-24_2107_193706-66_206b.sdfits 70 | HISTORY 98-03-24_2116_194251-66_207b.sdfits 71 | HISTORY 98-03-25_2020_190826-66_201b.sdfits 72 | HISTORY 98-03-25_2029_191410-66_202b.sdfits 73 | HISTORY 98-03-25_2038_191954-66_203b.sdfits 74 | HISTORY 98-03-25_2047_192538-66_204b.sdfits 75 | HISTORY 98-03-25_2056_193122-66_205b.sdfits 76 | HISTORY 98-03-26_2048_190459-66_200d.sdfits 77 | HISTORY 98-03-27_2034_191627-66_202d.sdfits 78 | HISTORY 98-03-27_2043_192212-66_203d.sdfits 79 | HISTORY 98-03-27_2052_192756-66_204d.sdfits 80 | HISTORY 98-03-27_2102_193340-66_205d.sdfits 81 | HISTORY 98-03-27_2111_193924-66_206d.sdfits 82 | HISTORY 98-03-27_2120_194508-66_207d.sdfits 83 | HISTORY 98-03-27_2130_191043-66_201d.sdfits 84 | HISTORY 98-05-10_2123_182232-66_193b.sdfits 85 | HISTORY 98-05-10_2133_182816-66_194b.sdfits 86 | HISTORY 98-05-10_2142_183400-66_195b.sdfits 87 | HISTORY 98-05-10_2151_183945-66_196b.sdfits 88 | HISTORY 98-05-10_2200_184529-66_197b.sdfits 89 | HISTORY 98-05-10_2209_185113-66_198b.sdfits 90 | HISTORY 98-05-10_2219_185657-66_199b.sdfits 91 | HISTORY 98-05-10_2228_190241-66_200b.sdfits 92 | HISTORY 98-05-13_2132_182450-66_193d.sdfits 93 | HISTORY 98-05-13_2151_183034-66_194d.sdfits 94 | HISTORY 98-05-13_2200_183618-66_195d.sdfits 95 | HISTORY 98-05-13_2210_184202-66_196d.sdfits 96 | HISTORY 98-05-13_2219_184746-66_197d.sdfits 97 | HISTORY 98-05-13_2228_185331-66_198d.sdfits 98 | HISTORY 98-05-13_2237_185915-66_199d.sdfits 99 | HISTORY 98-05-25_1711_182559-66_193e.sdfits 100 | HISTORY 98-05-25_1720_183143-66_194e.sdfits 101 | HISTORY 98-05-25_1729_183727-66_195e.sdfits 102 | HISTORY 98-05-25_1738_184311-66_196e.sdfits 103 | HISTORY 98-05-25_1747_184855-66_197e.sdfits 104 | HISTORY 98-05-25_1756_185439-66_198e.sdfits 105 | HISTORY 98-05-25_1806_190024-66_199e.sdfits 106 | HISTORY 98-05-25_1815_190608-66_200e.sdfits 107 | HISTORY 98-05-25_1824_191152-66_201e.sdfits 108 | HISTORY 98-05-25_1833_191736-66_202e.sdfits 109 | HISTORY 98-05-25_1842_192320-66_203e.sdfits 110 | HISTORY 98-05-25_1851_192905-66_204e.sdfits 111 | HISTORY 98-05-25_1901_193449-66_205e.sdfits 112 | HISTORY 98-05-25_1910_194033-66_206e.sdfits 113 | HISTORY 98-05-25_1919_194617-66_207e.sdfits 114 | HISTORY Original FITS filename "1904-66_ZEA.continuum.fits". 115 | HISTORY Noise level of continuum map: 61 mJy (RMS) -------------------------------------------------------------------------------- /test/data/HIGAL_BLUE0671p118_070_RM: -------------------------------------------------------------------------------- 1 | SIMPLE = T / Written by IDL: Thu Jan 30 14:45:14 2014 2 | BITPIX = -32 /Real*4 (floating point) 3 | NAXIS = 2 / 4 | NAXIS1 = 303 / 5 | NAXIS2 = 303 / 6 | CTYPE1 = 'GLON-TAN' / 7 | CTYPE2 = 'GLAT-TAN' / 8 | CRPIX1 = 1291.00000000 / 9 | CRPIX2 = -593.000000000 / 10 | CRVAL1 = 66.1101660079 / Galactic longitude of reference pixel 11 | CRVAL2 = 0.52575501710 / Galactic latitude of reference pixel 12 | CDELT1 = -0.00088888889 / 13 | CDELT2 = 0.00088888889 / 14 | CROTA2 = 0.00000 / 15 | RPE_APPL= 0 /RPE correction switch 16 | WAVELEN = 70 /Wavelength of observation in mirons 17 | RPE_AL = 0 /No RPE correction applied 18 | RPE_AC = 0 /No RPE correction applied 19 | BUNIT = 'MJy/sr ' / 20 | EXTEND = T / 21 | MED_WIN = '20 ' / 22 | MED_STEP= '20 ' / 23 | FLAG_PER= '38 ' / 24 | MASK_CL = '3 ' / 25 | MASK_GR = '3 ' / 26 | REGS_LON= 0.643280078285 /gal lon shift in arcsec 27 | REGS_LAT= -2.47859498949 /gal lat shift in arcsec 28 | OFSET_AP= 1 / 29 | OFSET_VA= -25.9185 /from intercal IRAS-Planck-HSO 30 | GAIN_AP = 0 / 31 | GAIN_VA = 1 /from intercal IRAS-Planck-HSO 32 | EQUINOX = 2000.00 / Equinox of Ref. Coord. 33 | LONPOLE = 180.000000000 / Native longitude of Celestial pole 34 | LATPOLE = 0.52575501707 / Celestial latitude of native pole 35 | HISTORY PUTAST: Jan 30 14:45:13 2014 World Coordinate System parameters written 36 | HISTORY HEULER: Jan 30 14:45:13 2014 Converted to Celestial coordinates 37 | HISTORY HEXTRACT: Thu Jan 30 14:45:14 2014 38 | HISTORY Original image size was 3454 by 3244 39 | HISTORY Extracted Image: [434:736,2216:2518] 40 | HISTORY PUTAST: Jan 30 14:45:14 2014 World Coordinate System parameters written 41 | HISTORY HEULER: Jan 30 14:45:14 2014 Converted to Galactic coordinates -------------------------------------------------------------------------------- /test/data/PlanckMap_308.235996_-22.010959_1.0_1.0_030_1024_nominal: -------------------------------------------------------------------------------- 1 | SIMPLE = T / file does conform to FITS standard 2 | BITPIX = -32 / number of bits per data pixel 3 | NAXIS = 2 / number of data axes 4 | NAXIS1 = 60 / length of data axis 1 5 | NAXIS2 = 60 / length of data axis 2 6 | EXTEND = T / FITS dataset may contain extensions 7 | COMMENT FITS (Flexible Image Transport System) format is defined in 'Astronomy 8 | COMMENT and Astrophysics', volume 376, page 359; bibcode: 2001A&A...376..359H 9 | COMMENT -------------------------------------------- 10 | CREATOR = 'PROJECTMAP' 11 | VERSION = '0.1 ' 12 | INPUTMAP= 'LFI_SkyMap_030_1024_R1.10_nominal.fits' 13 | COMMENT -------------------------------------------- 14 | PROJ = 'CAR ' 15 | CTYPE1 = 'GLON-CAR' 16 | CTYPE2 = 'GLAT-CAR' 17 | CRPIX1 = 30.5 18 | CRPIX2 = 30.5 19 | CRVAL1 = 308.235996 20 | CRVAL2 = -22.010959 21 | CDELT1 = -0.016667 22 | CDELT2 = 0.016667 23 | UNITS = 'K_CMB ' -------------------------------------------------------------------------------- /test/get_headers.py: -------------------------------------------------------------------------------- 1 | import glob 2 | from astropy.io import fits 3 | 4 | 5 | def get_headers(): 6 | for f in glob.glob("data/*.fits.gz"): 7 | header = fits.getheader(f) 8 | header.totextfile(f.replace('.fits.gz', '')) 9 | 10 | if __name__ == '__main__': 11 | get_headers() -------------------------------------------------------------------------------- /test/m101_test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var fs = require('fs'); 4 | var path = require('path'); 5 | var wcs = require('../wcs.js'); 6 | 7 | exports['wcsjs_test'] = { 8 | setUp: function(done) { 9 | done(); 10 | }, 11 | 12 | 'm101': function(test) { 13 | var header, w, world, pixel; 14 | 15 | header = fs.readFileSync(path.join(__dirname, 'data', 'm101'), 'utf8'); 16 | 17 | w = new wcs(); 18 | w.init(header); 19 | 20 | world = w.pix2sky(0, 0); 21 | test.equal(world[0].toFixed(6), 211.003338); 22 | test.equal(world[1].toFixed(6), 54.216255); 23 | 24 | test.done(); 25 | } 26 | 27 | }; 28 | --------------------------------------------------------------------------------