IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 17283


Ignore:
Timestamp:
Apr 2, 2008, 12:36:34 PM (18 years ago)
Author:
eugene
Message:

move altaz from dimm to cmd.astro

Location:
trunk/Ohana/src/opihi
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/src/opihi/cmd.astro/Makefile

    r16935 r17283  
    1717srcs = \
    1818$(SRC)/init.$(ARCH).o             \
     19$(SRC)/altaz.$(ARCH).o             \
    1920$(SRC)/biassub.$(ARCH).o           \
    2021$(SRC)/cgrid.$(ARCH).o             \
  • trunk/Ohana/src/opihi/cmd.astro/init.c

    r16425 r17283  
    11# include "astro.h"
    22
     3int altaz                   PROTO((int, char **));
    34int biassub                 PROTO((int, char **));
    45int cgrid                   PROTO((int, char **));
     
    3637
    3738static Command cmds[] = { 
     39  {1, "altaz",       altaz,        "convert alt/az to/from ra/dec"},
    3840  {1, "biassub",     biassub,      "subtract medianed overscan row or column"},
    3941  {1, "cgrid",       cgrid,        "plot sky coordinate grid"},
  • trunk/Ohana/src/opihi/dimm/Makefile

    r12842 r17283  
    2626$(SRC)/init.$(ARCH).o                   \
    2727$(SRC)/dimm.$(ARCH).o                   \
    28 $(SRC)/altaz.$(ARCH).o                  \
    2928$(SRC)/camera.$(ARCH).o         \
    3029$(SRC)/findstars.$(ARCH).o              \
  • trunk/Ohana/src/opihi/dimm/init.c

    r16432 r17283  
    11# include "dimm.h"
    22
    3 int altaz           PROTO((int, char **));
    43int camera          PROTO((int, char **));
    54int findstars       PROTO((int, char **));
     
    87
    98static Command cmds[] = { 
    10   {1, "altaz",     altaz,     "altaz / celestial coord conversions"},
    119  {1, "camera",    camera,    "camera functions"},
    1210  {1, "findstars", findstars, "find objects on image"},
Note: See TracChangeset for help on using the changeset viewer.