FACT++  1.0
int main ( int  argc,
const char *  argv[] 
)

Definition at line 53 of file makedata.cc.

References Configuration::DoParse(), Nova::SolarObjects::fMoonEqu, Configuration::Get(), Nova::GetAngularSeparation(), Nova::GetHrzFromEqu(), Nova::GetSolarRst(), Configuration::Has(), i, Time::iso, Time::JD(), Time::Mjd(), FACT::PredictI(), PrintUsage(), Time::SetFromStr(), Configuration::SetPrintUsage(), SetupConfiguration(), t, and time.

54 {
55  Configuration conf(argv[0]);
56  conf.SetPrintUsage(PrintUsage);
57  SetupConfiguration(conf);
58 
59  if (!conf.DoParse(argc, argv))
60  return 127;
61 /*
62  if (!conf.Has("source-name"))
63  {
64  cout << "ERROR - --source-name missing." << endl;
65  return 1;
66  }
67 */
68  // ------------------ Eval config ---------------------
69 
70  Time time;
71  if (conf.Has("date-time"))
72  time.SetFromStr(conf.Get<string>("date-time"));
73 
74  const double max_current = conf.Get<double>("max-current");
75  const double max_zd = conf.Get<double>("max-zd");
76  const double no_limits = conf.Get<bool>("no-limits");
77 
78  // -12: nautical
79  const RstTime sun_set = GetSolarRst(time.JD()-0.5, -12); // Sun set with the same date than th provided date
80  const RstTime sun_rise = GetSolarRst(time.JD()+0.5, -12); // Sun rise on the following day
81 
82  const double jd = floor(time.Mjd())+2400001;
83  const double mjd = floor(time.Mjd())+49718+0.5;
84 
85 
86  const double jd0 = fmod(sun_set.set, 1); // ~0.3
87  const double jd1 = fmod(sun_rise.rise, 1); // ~0.8
88 
89  cout << Time::iso << time << ", " << mjd-49718 << ", ";
90  cout << jd0 << ", ";
91  cout << jd1 << "\n";
92 
93  if (!conf.Has("source-name"))
94  return 1;
95 
96  const string source_name = conf.Get<string>("source-name");
97  const string fDatabase = conf.Get<string>("source-database");
98 
99  // ------------- Get Sources from databasse ---------------------
100 
101  const mysqlpp::StoreQueryResult res =
102  Database(fDatabase).query("SELECT fRightAscension, fDeclination FROM Source WHERE fSourceName='"+source_name+"'").store();
103 
104  // ------------- Create canvases and frames ---------------------
105 
106  vector<mysqlpp::Row>::const_iterator row=res.begin();
107  if (row==res.end())
108  return 1;
109 
110  EquPosn pos;
111  pos.ra = double((*row)[0])*15;
112  pos.dec = double((*row)[1]);
113 
114  // Loop over 24 hours
115  for (int i=0; i<24*12; i++)
116  {
117  const double h = double(i)/(24*12);
118 
119  // check if it is betwene sun-rise and sun-set
120  if (h<jd0 || h>jd1)
121  continue;
122 
123  const SolarObjects so(jd+h);
124 
125  // get local position of source
126  const HrzPosn hrz = GetHrzFromEqu(pos, jd+h);
127 
128  // get current prediction
129  const double cur = FACT::PredictI(so, pos);
130 
131  // Relative energy threshold prediction
132  const double ratio = pow(cos((90-hrz.alt)*M_PI/180), -2.664);
133 
134  // Add points to curve
135  // const double axis = (mjd+h)*24*3600;
136 
137  Time t(mjd-49718);
138  t += boost::posix_time::minutes(i*5);
139 
140  cout << t << ", " << h << ", ";
141 
142  if (no_limits || cur<max_current)
143  cout << hrz.alt;
144  cout << ", ";
145 
146  if (no_limits || 90-hrz.alt<max_zd)
147  cout << cur;
148  cout << ", ";
149 
150  if (no_limits || (cur<max_current && 90-hrz.alt<max_zd))
151  cout << ratio*cur/6.2;
152  cout << ", ";
153 
154  if (no_limits || (cur<max_current && 90-hrz.alt<max_zd))
155  cout << GetAngularSeparation(so.fMoonEqu, pos);
156  cout << "\n";
157  }
158 
159  cout << flush;
160 
161  return 0;
162 }
int i
Definition: db_dim_client.c:21
Adds some functionality to boost::posix_time::ptime for our needs.
Definition: Time.h:30
void SetupConfiguration(Configuration &conf)
Definition: makedata.cc:15
static const _time_format iso
set to format to the sql format (without the fraction of seconds)
Definition: Time.h:44
double JD() const
Definition: Time.h:87
void Mjd(double mjd)
Definition: Time.cc:145
double h
Definition: palObs.c:170
Warning because the service this data corrsponds to might have been last updated longer ago than Local time
Definition: smartfact.txt:92
Commandline parsing, resource file parsing and database access.
Definition: Configuration.h:9
void SetFromStr(const std::string &str, const char *fmt="%Y-%m-%d %H:%M:%S")
Definition: Time.cc:273
void PrintUsage()
Definition: makedata.cc:35
RstTime GetSolarRst(double jd, const LnLatPosn &obs, double hrz=LN_SOLAR_STANDART_HORIZON)
Definition: nova.h:97
HrzPosn GetHrzFromEqu(const EquPosn &equ, const LnLatPosn &obs, double jd)
Definition: nova.h:75
TT t
Definition: test_client.c:26
ln_rst_time RstTime
Definition: nova.h:13
double GetAngularSeparation(const EquPosn &p1, const EquPosn &p2)
Definition: nova.h:148
double PredictI(const Nova::SolarObjects &so, const Nova::EquPosn &srcEqu)
Definition: Prediction.h:10

+ Here is the call graph for this function: