diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-08-03 20:29:50 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-08-03 20:29:50 (GMT) |
commit | b8525c3dd6b1e98d1b8754cfeb25a2f8a5a56479 (patch) | |
tree | cce6ece606536feed1304203c11ee3cb446ba774 /tksao/frame/parser.Y | |
parent | f0f09fa30fea1f957e2a7c98b9d66431c2e31df7 (diff) | |
download | blt-b8525c3dd6b1e98d1b8754cfeb25a2f8a5a56479.zip blt-b8525c3dd6b1e98d1b8754cfeb25a2f8a5a56479.tar.gz blt-b8525c3dd6b1e98d1b8754cfeb25a2f8a5a56479.tar.bz2 |
simplify coord system options
Diffstat (limited to 'tksao/frame/parser.Y')
-rw-r--r-- | tksao/frame/parser.Y | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tksao/frame/parser.Y b/tksao/frame/parser.Y index a368956..eb8cafb 100644 --- a/tksao/frame/parser.Y +++ b/tksao/frame/parser.Y @@ -228,7 +228,6 @@ static void setProps(unsigned short* props, unsigned short prop, int value); %token FITSY_ %token FIXED_ %token FK4_ -%token FK4_NO_E_ %token FK5_ %token FONT_ %token FORMAT_ @@ -248,7 +247,6 @@ static void setProps(unsigned short* props, unsigned short prop, int value); %token HEAD_ %token HEADER_ %token HEIGHT_ -%token HELIOECLIPTIC_ %token HIDE_ %token HIGHLITE_ %token HISTEQU_ @@ -378,7 +376,6 @@ static void setProps(unsigned short* props, unsigned short prop, int value); %token SSHARED_ %token STATS_ %token STATUS_ -%token SUPERGALACTIC_ %token SUM_ %token SYSTEM_ %token TABLE_ @@ -653,15 +650,12 @@ minmaxMode : AUTO_ {$$=FrScale::SCAN;} skyFrame : /* empty */ {$$ = currentSky = Coord::FK5;} | FK4_ {$$ = currentSky = Coord::FK4;} - | FK4_NO_E_ {$$ = currentSky = Coord::FK4_NO_E;} | B1950_ {$$ = currentSky = Coord::FK4;} | FK5_ {$$ = currentSky = Coord::FK5;} | J2000_ {$$ = currentSky = Coord::FK5;} | ICRS_ {$$ = currentSky = Coord::ICRS;} | GALACTIC_ {$$ = currentSky = Coord::GALACTIC;} - | SUPERGALACTIC_ {$$ = currentSky = Coord::SUPERGALACTIC;} | ECLIPTIC_ {$$ = currentSky = Coord::ECLIPTIC;} - | HELIOECLIPTIC_ {$$ = currentSky = Coord::HELIOECLIPTIC;} ; skyFormat : /* empty */ {$$=Coord::DEGREES;} |