Changeset 36489 for trunk/Ohana/src/opihi/cmd.astro
- Timestamp:
- Feb 6, 2014, 12:43:34 PM (12 years ago)
- Location:
- trunk/Ohana/src/opihi
- Files:
-
- 6 edited
- 2 copied
-
. (modified) (1 prop)
-
cmd.astro (modified) (1 prop)
-
cmd.astro/Makefile (modified) (1 diff)
-
cmd.astro/cdensify.c (copied) (copied from branches/eam_branches/ipp-20131211/Ohana/src/opihi/cmd.astro/cdensify.c )
-
cmd.astro/fitplx.c (modified) (1 diff)
-
cmd.astro/fitpm.c (copied) (copied from branches/eam_branches/ipp-20131211/Ohana/src/opihi/cmd.astro/fitpm.c )
-
cmd.astro/init.c (modified) (2 diffs)
-
cmd.astro/region.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20131211/Ohana/src/opihi (added) merged: 36387,36398-36399,36449,36469,36480
- Property svn:mergeinfo changed
-
trunk/Ohana/src/opihi/cmd.astro
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-20131211/Ohana/src/opihi/cmd.astro (added) merged: 36387,36398,36449,36480
- Property svn:mergeinfo changed
-
trunk/Ohana/src/opihi/cmd.astro/Makefile
r36084 r36489 28 28 $(SRC)/cval.$(ARCH).o \ 29 29 $(SRC)/czplot.$(ARCH).o \ 30 $(SRC)/cdensify.$(ARCH).o \ 30 31 $(SRC)/drizzle.$(ARCH).o \ 31 32 $(SRC)/flux.$(ARCH).o \ 32 33 $(SRC)/fitplx.$(ARCH).o \ 34 $(SRC)/fitpm.$(ARCH).o \ 33 35 $(SRC)/fixwrap.$(ARCH).o \ 34 36 $(SRC)/fixcols.$(ARCH).o \ -
trunk/Ohana/src/opihi/cmd.astro/fitplx.c
r36375 r36489 112 112 coords.pc1_2 = coords.pc2_1 = 0.0; 113 113 coords.Npolyterms = 1; 114 strcpy (coords.ctype, " RA---SIN");114 strcpy (coords.ctype, "DEC--SIN"); 115 115 116 116 double *X, *Y, *t, *pX, *pY, *dX, *dY; -
trunk/Ohana/src/opihi/cmd.astro/init.c
r36084 r36489 13 13 int czplot PROTO((int, char **)); 14 14 int czcplot PROTO((int, char **)); 15 int cdensify PROTO((int, char **)); 15 16 int drizzle PROTO((int, char **)); 16 17 int flux PROTO((int, char **)); 17 18 int fitplx PROTO((int, char **)); 19 int fitpm PROTO((int, char **)); 18 20 int fixwrap PROTO((int, char **)); 19 21 int fiximage PROTO((int, char **)); … … 73 75 {1, "czplot", czplot, "plot scaled vectors in sky coordinates"}, 74 76 {1, "czcplot", czcplot, "plot color-scaled vectors in sky coordinates"}, 77 {1, "cdensify", cdensify, "vectors to density history on projection"}, 75 78 {1, "drizzle", drizzle, "transform image to image"}, 76 79 {1, "flux", flux, "flux in a convex contour"}, 77 80 {1, "fitplx", fitplx, "fit proper motion and parallax"}, 81 {1, "fitpm", fitpm, "fit proper motion only"}, 78 82 {1, "fixwrap", fixwrap, "fix megacam over-wrapped pixels"}, 79 83 {1, "fiximage", fiximage, "fix pixels in an image by interpolation"}, -
trunk/Ohana/src/opihi/cmd.astro/region.c
r31160 r36489 80 80 if (!ohana_str_to_radec (&Ra, &Dec, argv[1], argv[2])) return (FALSE); 81 81 Radius = atof (argv[3]); 82 strcpy (graphmode.coords.ctype, " RA---TAN");82 strcpy (graphmode.coords.ctype, "DEC--TAN"); 83 83 if (argc == 5) { 84 84 if (!strcasecmp (argv[4], "TAN")) 85 strcpy (graphmode.coords.ctype, " RA---TAN");85 strcpy (graphmode.coords.ctype, "DEC--TAN"); 86 86 if (!strcasecmp (argv[4], "SIN")) 87 strcpy (graphmode.coords.ctype, " RA---SIN");87 strcpy (graphmode.coords.ctype, "DEC--SIN"); 88 88 if (!strcasecmp (argv[4], "ARC")) 89 strcpy (graphmode.coords.ctype, " RA---ARC");89 strcpy (graphmode.coords.ctype, "DEC--ARC"); 90 90 if (!strcasecmp (argv[4], "STG")) 91 strcpy (graphmode.coords.ctype, " RA---STG");91 strcpy (graphmode.coords.ctype, "DEC--STG"); 92 92 if (!strcasecmp (argv[4], "ZEA")) 93 strcpy (graphmode.coords.ctype, " RA---ZEA");93 strcpy (graphmode.coords.ctype, "DEC--ZEA"); 94 94 if (!strcasecmp (argv[4], "AIT")) 95 strcpy (graphmode.coords.ctype, " RA---AIT");95 strcpy (graphmode.coords.ctype, "DEC--AIT"); 96 96 if (!strcasecmp (argv[4], "GLS")) 97 strcpy (graphmode.coords.ctype, " RA---GLS");97 strcpy (graphmode.coords.ctype, "DEC--GLS"); 98 98 if (!strcasecmp (argv[4], "PAR")) 99 strcpy (graphmode.coords.ctype, " RA---PAR");99 strcpy (graphmode.coords.ctype, "DEC--PAR"); 100 100 } 101 101
Note:
See TracChangeset
for help on using the changeset viewer.
