IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 1, 2021, 9:50:01 AM (5 years ago)
Author:
eugene
Message:

add method to set the extra orders for inverse transformations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-dev-20210817/psModules/src/astrom/pmAstrometryUtils.c

    r35768 r41826  
    2323#include "pmAstrometryUtils.h"
    2424
     25static int transform_extra_orders = 4;
     26
     27int pmAstrometryGetExtraOrders (void) {
     28  return transform_extra_orders;
     29}
     30
     31int pmAstrometrySetExtraOrders (int orders) {
     32  transform_extra_orders = orders;
     33  return transform_extra_orders;
     34}
     35
    2536// this is used by the test output block
    2637static int Nout = 0;
Note: See TracChangeset for help on using the changeset viewer.