forked from cubehub/libgpredict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsat-vis.c
127 lines (97 loc) · 3.31 KB
/
sat-vis.c
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Gpredict: Real-time satellite tracking and orbit prediction program
Copyright (C) 2001-2009 Alexandru Csete, OZ9AEC.
Authors: Alexandru Csete <[email protected]>
Comments, questions and bugreports should be submitted via
http://sourceforge.net/projects/gpredict/
More details can be found at the project home page:
http://gpredict.oz9aec.net/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, visit http://www.fsf.org/
*/
/** \brief Satellite visibility calculations. */
#include "sgpsdp/sgp4sdp4.h"
#include "gtk-sat-data.h"
#include "sat-vis.h"
static gchar VIS2CHR[SAT_VIS_NUM] = { '-', 'V', 'D', 'E'};
static gchar *VIS2STR[SAT_VIS_NUM] = {
"Unknown",
"Visible",
"Daylight",
"Eclipsed"
};
/** \brief Calculate satellite visibility.
* \param sat The satellite structure.
* \param qth The QTH
* \param jul_utc The time at which the visibility should be calculated.
* \return The visiblity code.
*
*/
sat_vis_t
get_sat_vis (sat_t *sat, qth_t *qth, gdouble jul_utc)
{
gboolean sat_sun_status;
gdouble sun_el;
gdouble threshold;
gdouble eclipse_depth;
sat_vis_t vis = SAT_VIS_NONE;
vector_t zero_vector = {0,0,0,0};
geodetic_t obs_geodetic;
/* Solar ECI position vector */
vector_t solar_vector=zero_vector;
/* Solar observed az and el vector */
obs_set_t solar_set;
/* FIXME: could be passed as parameter */
obs_geodetic.lon = qth->lon * de2ra;
obs_geodetic.lat = qth->lat * de2ra;
obs_geodetic.alt = qth->alt / 1000.0;
obs_geodetic.theta = 0;
Calculate_Solar_Position (jul_utc, &solar_vector);
Calculate_Obs (jul_utc, &solar_vector, &zero_vector, &obs_geodetic, &solar_set);
if (Sat_Eclipsed (&sat->pos, &solar_vector, &eclipse_depth)) {
/* satellite is eclipsed */
sat_sun_status = FALSE;
}
else {
/* satellite in sunlight => may be visible */
sat_sun_status = TRUE;
}
if (sat_sun_status) {
sun_el = Degrees (solar_set.el);
/* FIXME */
/* threshold = (gdouble) sat_cfg_get_int (SAT_CFG_INT_PRED_TWILIGHT_THLD); */
threshold = (gdouble) -6;
if (sun_el <= threshold && sat->el >= 0.0)
vis = SAT_VIS_VISIBLE;
else
vis = SAT_VIS_DAYLIGHT;
}
else
vis = SAT_VIS_ECLIPSED;
return vis;
}
/** \brief Convert visibility to character code. */
gchar
vis_to_chr (sat_vis_t vis)
{
return VIS2CHR[vis];
}
/** \brief Convert visibility to character string.
* \param vis The visibility code
*
* The returned string must be freed when no longer needed.
*/
gchar *
vis_to_str (sat_vis_t vis)
{
return g_strdup (VIS2STR[vis]);
}