Changeset 16425
- Timestamp:
- Feb 13, 2008, 3:20:30 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/cmd.astro/init.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.astro/init.c
r7964 r16425 1 1 # include "astro.h" 2 2 3 int biassub PROTO((int, char **));4 int cgrid PROTO((int, char **));5 int coords PROTO((int, char **));6 int cplot PROTO((int, char **));7 int csystem PROTO((int, char **));8 int ctimes PROTO((int, char **));9 int cval PROTO((int, char **));10 int czplot PROTO((int, char **));11 int drizzle PROTO((int, char **));12 int flux PROTO((int, char **));13 int fixwrap PROTO((int, char **));14 int gauss PROTO((int, char **));15 int gaussfit PROTO((int, char **));16 int getvel PROTO((int, char **));17 int getlst PROTO((int, char **));18 int imfit PROTO((int, char **));19 int imsub PROTO((int, char **));20 int medianmap PROTO((int, char **));21 int mkgauss PROTO((int, char **));22 int multifit PROTO((int, char **));23 int objload PROTO((int, char **));24 int outline PROTO((int, char **));25 int polar PROTO((int, char **));26 int precess PROTO((int, char **));27 int profile PROTO((int, char **));28 int region PROTO((int, char **));29 int rotcurve PROTO((int, char **));30 int scale PROTO((int, char **));31 int sexigesimal PROTO((int, char **));32 int spec PROTO((int, char **));33 int star PROTO((int, char **));34 int times PROTO((int, char **));35 int transform PROTO((int, char **));3 int biassub PROTO((int, char **)); 4 int cgrid PROTO((int, char **)); 5 int coords PROTO((int, char **)); 6 int cplot PROTO((int, char **)); 7 int csystem PROTO((int, char **)); 8 int ctimes PROTO((int, char **)); 9 int cval PROTO((int, char **)); 10 int czplot PROTO((int, char **)); 11 int drizzle PROTO((int, char **)); 12 int flux PROTO((int, char **)); 13 int fixwrap PROTO((int, char **)); 14 int gauss PROTO((int, char **)); 15 int gaussfit PROTO((int, char **)); 16 int getvel PROTO((int, char **)); 17 int getlst PROTO((int, char **)); 18 int imfit PROTO((int, char **)); 19 int imsub PROTO((int, char **)); 20 int medianmap PROTO((int, char **)); 21 int mkgauss PROTO((int, char **)); 22 int multifit PROTO((int, char **)); 23 int objload PROTO((int, char **)); 24 int outline PROTO((int, char **)); 25 int polar PROTO((int, char **)); 26 int precess PROTO((int, char **)); 27 int profile PROTO((int, char **)); 28 int region PROTO((int, char **)); 29 int rotcurve PROTO((int, char **)); 30 int scale PROTO((int, char **)); 31 int sexigesimal PROTO((int, char **)); 32 int spec PROTO((int, char **)); 33 int star PROTO((int, char **)); 34 int times PROTO((int, char **)); 35 int transform PROTO((int, char **)); 36 36 37 37 static Command cmds[] = { 38 { "biassub",biassub, "subtract medianed overscan row or column"},39 { "cgrid", cgrid, "plot sky coordinate grid"},40 { "coords",coords, "load coordinates for buffer from file"},41 { "cplot", cplot, "plot vectors in sky coordinates"},42 { "csystem",csystem, "convert between coordinate systems"},43 { "ctimes",ctimes, "convert between time formats"},44 { "cval", cval, "cosmic ray flux?"},45 { "czplot",czplot, "plot scaled vectors in sky coordinates"},46 { "drizzle",drizzle, "transform image to image"},47 { "flux",flux, "flux in a convex contour"},48 { "fixwrap",fixwrap, "fix megacam over-wrapped pixels"},49 { "gauss",gauss, "get statistics on a star, assuming gaussian profile"},50 { "getvel", getvel, "rotcurve to velocities"},51 { "getlst", getlst, "return LST given time and longitude"},52 { "imfit",imfit, "fit function"},53 { "imsub",imsub, "subtract function"},54 { "medianmap", medianmap, "small median image"},55 { "mkgauss", mkgauss, "generate a 2-D gaussian centered in image"},56 { "multifit", multifit, "fit multi-order spectrum"},57 { "objload", objload, "plot obj data on Ximage "},58 { "outline", outline, "fit outline region"},59 { "polar", polar, "convert polar image to cartesian"},60 { "precess", precess, "precess coordinates"},61 { "profile", profile, "radial profile at X, Y"},62 { "region", region, "define sky region for plot"},63 { "rotcurve", rotcurve, "convert CO images to polar coords"},64 { "scale", scale, "get / set real bzero / bscale values"},65 { "sexigesimal", sexigesimal, "convert to/from sexigesimal/decimal"},66 { "spec",spec, "extract a spectrum"},67 { "star",star, "star stats at rough coords"},68 { "transform", transform, "geometric transformation of image"},38 {1, "biassub", biassub, "subtract medianed overscan row or column"}, 39 {1, "cgrid", cgrid, "plot sky coordinate grid"}, 40 {1, "coords", coords, "load coordinates for buffer from file"}, 41 {1, "cplot", cplot, "plot vectors in sky coordinates"}, 42 {1, "csystem", csystem, "convert between coordinate systems"}, 43 {1, "ctimes", ctimes, "convert between time formats"}, 44 {1, "cval", cval, "cosmic ray flux?"}, 45 {1, "czplot", czplot, "plot scaled vectors in sky coordinates"}, 46 {1, "drizzle", drizzle, "transform image to image"}, 47 {1, "flux", flux, "flux in a convex contour"}, 48 {1, "fixwrap", fixwrap, "fix megacam over-wrapped pixels"}, 49 {1, "gauss", gauss, "get statistics on a star, assuming gaussian profile"}, 50 {1, "getvel", getvel, "rotcurve to velocities"}, 51 {1, "getlst", getlst, "return LST given time and longitude"}, 52 {1, "imfit", imfit, "fit function"}, 53 {1, "imsub", imsub, "subtract function"}, 54 {1, "medianmap", medianmap, "small median image"}, 55 {1, "mkgauss", mkgauss, "generate a 2-D gaussian centered in image"}, 56 {1, "multifit", multifit, "fit multi-order spectrum"}, 57 {1, "objload", objload, "plot obj data on Ximage "}, 58 {1, "outline", outline, "fit outline region"}, 59 {1, "polar", polar, "convert polar image to cartesian"}, 60 {1, "precess", precess, "precess coordinates"}, 61 {1, "profile", profile, "radial profile at X, Y"}, 62 {1, "region", region, "define sky region for plot"}, 63 {1, "rotcurve", rotcurve, "convert CO images to polar coords"}, 64 {1, "scale", scale, "get / set real bzero / bscale values"}, 65 {1, "sexigesimal", sexigesimal, "convert to/from sexigesimal/decimal"}, 66 {1, "spec", spec, "extract a spectrum"}, 67 {1, "star", star, "star stats at rough coords"}, 68 {1, "transform", transform, "geometric transformation of image"}, 69 69 }; 70 70 … … 84 84 85 85 } 86 87 void FreeAstro () { 88 }
Note:
See TracChangeset
for help on using the changeset viewer.
