Changeset 8836
- Timestamp:
- 07/16/08 22:40:46 (5 months ago)
- Location:
- trunk/projects/scamp-integration
- Files:
-
- 2 added
- 2 modified
-
Makefile (modified) (1 diff)
-
swapbytes.c (added)
-
test_swapbytes.c (added)
-
USNO-B1.0_2000+2250_r5.cat (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/projects/scamp-integration/Makefile
r8835 r8836 11 11 sex -c sex.conf img.fits 12 12 13 img.fits: 14 wget "http://oven.cosmo.fas.nyu.edu:8888/test/job/getfile/test-200807-53742689/new.fits" -O img.fits 15 13 16 check: $(REFCAT) 14 17 python readref.py 18 19 test_swapbytes: test_swapbytes.c swapbytes.c 20 gcc -o $@ test_swapbytes.c -
trunk/projects/scamp-integration/USNO-B1.0_2000+2250_r5.cat
r8833 r8836 1 SIMPLE = T / This is a FITS file BITPIX = 8 / NAXIS = 0 / EXTEND = T / This file may contain FITS extensions END XTENSION= 'BINTABLE' / THIS IS A BINARY TABLE (FROM THE LDACTOOLS) BITPIX = 8 / NAXIS = 2 / NAXIS1 = 1680 / BYTES PER ROW NAXIS2 = 1 / NUMBER OF ROWS PCOUNT = 0 / RANDOM PARAMETER COUNT GCOUNT = 1 / GROUP COUNT TFIELDS = 1 / FIELDS PER ROWS EXTNAME = 'LDAC_IMHEAD' / TABLE NAME TTYPE1 = 'Field Header Card' TFORM1 = '1680A ' TDIM1 = '(80, 36)' END SIMPLE = T / This is a FITS file BITPIX = 0 / NAXIS = 2 / 2D data NAXIS1 = 16384 / Number of rows NAXIS2 = 16384 / Number of columns EXTEND = T / This file may contain FITS extensions EQUINOX = 2000.0000 / Mean equinox RADECSYS= 'ICRS ' / Astrometric system CTYPE1 = 'RA---STG' / WCS projection type for this axis CUNIT1 = ' ' / Axis unit CRVAL1 = 3.000286343E+02 / World coordinate on this axis CRPIX1 = 8.192500000E+03 / Reference pixel on this axis CD1_1 = 5.555555556E-05 / Linear projection matrix CD1_2 = 0.000000000E+00 / Linear projection matrix CTYPE2 = 'DEC--STG' / WCS projection type for this axis CUNIT2 = ' ' / Axis unit CRVAL2 = 2.283858855E+01 / World coordinate on this axis CRPIX2 = 8.192500000E+03 / Reference pixel on this axis CD2_1 = 0.000000000E+00 / Linear projection matrix CD2_2 = 5.555555556E-05 / Linear projection matrix END
