summaryrefslogtreecommitdiffstats
path: root/ds9/parsers/pansendparser.tac
blob: ec2a39ffa997f23d28a85ce85cacd9ede67e743f (plain)
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
%{
%}

#include coords.tin

%start pansend

%%

#include coords.trl

pansend : {ProcessSendCmdCurrent frame "get cursor physical fk5 degrees"}
 | coordsys {ProcessSendCmdCurrent frame "get cursor $1 fk5 degrees"}
 | wcssys {ProcessSendCmdCurrent frame "get cursor $1 fk5 degrees"}
 | skyframe {ProcessSendCmdCurrent frame "get cursor wcs $1 degrees"}
 | wcssys skyframe {ProcessSendCmdCurrent frame "get cursor $1 $2 degrees"}
 | wcssys skyformat {ProcessSendCmdCurrent frame "get cursor $1 fk5 $2"}
 | skyframe skyformat {ProcessSendCmdCurrent frame "get cursor wcs $1 $2"}
 | wcssys skyframe skyformat {ProcessSendCmdCurrent frame "get cursor $1 $2 $3"}
 ;

%%

proc pansend::yyerror {msg} {
     variable yycnt
     variable yy_current_buffer
     variable index_
     
     ParserError $msg $yycnt $yy_current_buffer $index_
}