Changeset 1441 in Sophya for trunk/SophyaProg/PrgMap/prjsmap.cc
- Timestamp:
- Mar 14, 2001, 5:25:02 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PrgMap/prjsmap.cc
r1430 r1441 14 14 #include "fitstarray.h" 15 15 16 /*! 17 \ingroup PrgUtil 18 \file prjsmap.cc 19 \brief \b prjsmap: Molleweide and sinus projection of sky maps 20 21 \verbatim 22 23 csh> prjsmap -h 24 SOPHYA Version 1.1 Revision 0 (V_Fev2001) -- Mar 9 2001 15:45:31 cxx 25 26 prjsmap : Molleweide and Sinus projection for sky maps 27 Usage: prjsmap [-float/-r4] [-sinus] [-sx sizeX] [-sy sizeY] [-scale fact] 28 [-off val][-ump val] [-invy] [-fitsin] [-fitsout] InFileName OutFileName 29 -float (-r4): single precision sky map and projection (default = double) 30 -sinus: Selects Sinus projection (default Molleweide projection) 31 -sx sizeX: Projected map size in X 32 -sy sizeY: Projected map size in Y 33 default: sizeX = 2*sizeY ; sizeX*sizeY ~ map.NbPixels()/2 34 -scale fact: scale factor applied to skymap pixels (def=1.) 35 -off val: offset value for projected map (def=0.) 36 prj(ix, jy) = offset + scale*skymap(theta, phi) 37 -ump val: Unmapped pixel value in projected map (def=0.) 38 -invy: reverses the projection direction along Y (Theta) 39 -fitsout: Select the FITS format for the output map (default PPF format) 40 -fitsin : Select the FITS format for the input vector (default PPF format) 41 InFileName : Input file name (HEALPix map) 42 OutFileName : Output file name (the C_l vector) 43 44 \endverbatim 45 */ 16 46 17 47 … … 278 308 } 279 309 280 if ((narg-ko) < 1) Usage(true);310 if ((narg-ko) < 2) Usage(true); 281 311 infile = arg[ko]; 282 312 outfile = arg[ko+1];
Note:
See TracChangeset
for help on using the changeset viewer.