blob: 64198d694c145273f5a6a526de1678d61f759f1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "wcspix.h"
# Multispec image class data.
# MSP_INIT -- Initialize the Image Class module.
procedure msp_init ()
begin
end
# MSP_CACHE -- Cache an image in the object cache.
procedure msp_cache ()
begin
end
# MSP_UNCACHE -- Uncache an image in the object cache.
procedure msp_uncache ()
begin
end
# MSP_WCSTRAN -- Translate object source (x,y) coordinates to the
# desired output WCSs.
procedure msp_wcstran ()
begin
end
# MSP_WCSLIST -- List the WCSs available for the given image.
procedure msp_wcslist ()
begin
end
# MSP_OBJINFO -- Get header information from the image.
procedure msp_objinfo ()
begin
end
|