-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTargetData.cs
70 lines (64 loc) · 2.58 KB
/
TargetData.cs
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
62
63
64
65
66
67
68
69
70
// --------------------------------------------------------------------------------
// VariScan module
//
// Description:
//
// Environment: Windows 10 executable, 32 and 64 bit
//
// Usage: TBD
//
// Author: (REM) Rick McAlister, [email protected]
//
// Edit Log: Rev 1.0 Initial Version
//
// Date Who Vers Description
// ----------- --- ----- -------------------------------------------------------
//
// ---------------------------------------------------------------------------------
//
using System;
namespace VariScan
{
public class TargetData
{
//Structure for handling star data after look up
public string TargetName { get; set; }
public bool IsImageLinked { get; set; }
public bool IsTransformed { get; set; }
public string CatalogName { get; set; }
public int MasterRegistrationIndex { get; set; }
public StarField.CatalogData MasterCatalogInfo { get; set; }
public int InventoryArrayIndex { get; set; }
public double TargetRA { get; set; }
public double TargetDec { get; set; }
public double SourceRA { get; set; }
public double SourceDec { get; set; }
public double SourceX { get; set; }
public double SourceY { get; set; }
public double SourceADU { get; set; }
public double SourceEllipticity { get; set; }
public double SourceFWHM { get; set; }
public double TargetToSourcePositionError { get; set; }
public double SourceInstrumentMagnitude { get; set; }
public double StandardColorMagnitude { get; set; }
public double StandardMagnitudeError { get; set; }
public double SourceToAPASSCatalogPositionError { get; set; }
public double SourceToGAIACatalogPositionError { get; set; }
public int ApassStarCount { get; set; }
public int GaiaStarCount { get; set; }
public DateTime SessionDate { get; set; }
public DateTime ImageDateUT { get; set; }
public DateTime ImageDateLocal { get; set; }
public int SessionSet { get; set; }
public double ImageWidthInArcSec { get; set; }
public string PrimaryImageFilter { get; set; }
public string DifferentialImageFilter { get; set; }
public string PrimaryStandardColor { get; set; }
public string DifferentialStandardColor { get; set; }
public double ColorTransform { get; set; }
public double MagnitudeTransform { get; set; }
public string ComputedSeeing { get; set; }
public double AirMass { get; set; }
public TargetData() { }
}
}