blob: ee08cf06544f4ca58d57a705d1fc505aa596bc45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# File of definitions for interpolator package.
# Interpolator Types:
define IT_FUNCTIONS "|nearest|linear|poly3|poly5|spline3|"
define IT_NEAREST 1
define IT_LINEAR 2
define IT_POLY3 3
define IT_POLY5 4
define IT_SPLINE3 5
define ITNIT 5 # number of types
# Size of header etc. used for part of coeff dimension
define SZ_ASI 20
# Total number of points used in spline interpolation of of bad pixels by
# subroutine arbpix.
define SPLPTS 16
|