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
51
52
53
54
55
56
57
58
59
60
61
|
// Copyright (C) 1999-2018
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"
#ifndef __coord_h__
#define __coord_h__
#include <string.h>
#include <iostream>
#include <sstream>
#include <iomanip>
using namespace std;
class FitsImage;
class Coord {
public:
enum InternalSystem {WINDOW, CANVAS, WIDGET, USER, REF,
PANNER, MAGNIFIER, PS};
#ifndef NEWWCS
enum CoordSystem {DATA, IMAGE, PHYSICAL, AMPLIFIER, DETECTOR, WCS,
WCSA, WCSB, WCSC, WCSD, WCSE, WCSF, WCSG, WCSH, WCSI,
WCSJ, WCSK, WCSL, WCSM, WCSN, WCSO, WCSP, WCSQ, WCSR,
WCSS, WCST, WCSU, WCSV, WCSW, WCSX, WCSY, WCSZ, WCS0};
#else
enum CoordSystem {DATA, IMAGE, PHYSICAL, AMPLIFIER, DETECTOR, WCS=8,
WCSA, WCSB, WCSC, WCSD, WCSE, WCSF, WCSG, WCSH, WCSI,
WCSJ, WCSK, WCSL, WCSM, WCSN, WCSO, WCSP, WCSQ, WCSR,
WCSS, WCST, WCSU, WCSV, WCSW, WCSX, WCSY, WCSZ, WCS0=8};
#endif
enum SkyFrame {FK4, FK4_NO_E, FK5, ICRS, GALACTIC, SUPERGALACTIC,
ECLIPTIC, HELIOECLIPTIC};
enum SkyFormat {DEGREES, SEXAGESIMAL};
enum DistFormat {DEGREE, ARCMIN, ARCSEC};
enum AngleFormat {DEG, RAD};
enum Orientation {NORMAL, XX, YY, XY};
public:
void listCoordSystem(ostream&, CoordSystem, SkyFrame, FitsImage*);
void listDistSystem(ostream&, CoordSystem, DistFormat, FitsImage*);
void listProsCoordSystem(ostream&, CoordSystem, SkyFrame);
void strToCoordSystem(const char*, CoordSystem, CoordSystem*, SkyFrame*);
void strToSkyFormat(const char*, SkyFormat*);
void strToDistFormat(const char*, DistFormat*);
void strToDistSystem(const char*, CoordSystem, CoordSystem*, DistFormat*);
void strToAngleFormat(const char*, AngleFormat*);
const char* coordSystemStr(int ii);
const char* skyFrameStr(int ii);
const char* skyFormatStr(int ii);
const char* skyDistStr(int ii);
};
extern Coord coord;
#endif
|