-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathtle_out.cpp
293 lines (262 loc) · 8.83 KB
/
tle_out.cpp
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/* Copyright (C) 2018, Project Pluto. See LICENSE.
tle_out.cpp: code to convert the in-memory artificial satellite
elements into the "standard" TLE (Two-Line Element) form described at
https://en.wikipedia.org/wiki/Two-line_elements */
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <math.h>
#include <assert.h>
#include "norad.h"
/* Useful constants to define, in case the value of PI or the number
of minutes in a day should change: */
#define PI 3.141592653589793238462643383279502884197169399375105
#define MINUTES_PER_DAY 1440.
#define MINUTES_PER_DAY_SQUARED (MINUTES_PER_DAY * MINUTES_PER_DAY)
#define MINUTES_PER_DAY_CUBED (MINUTES_PER_DAY_SQUARED * MINUTES_PER_DAY)
#define AE 1.0
#define J1900 (2451545.5 - 36525. - 1.)
static int add_tle_checksum_data( char *buff)
{
int count = 69, rval = 0;
if( (*buff != '1' && *buff != '2') || buff[1] != ' ')
return( 0); /* not a .TLE */
while( --count)
{
if( *buff < ' ' || *buff > 'z')
return( 0); /* wups! those shouldn't happen in .TLEs */
if( *buff > '0' && *buff <= '9')
rval += *buff - '0';
else if( *buff == '-')
rval++;
buff++;
}
if( *buff != 10 && buff[1] != 10 && buff[2] != 10)
return( 0); /* _still_ not a .TLE */
*buff++ = (char)( '0' + (rval % 10));
*buff++ = 13;
*buff++ = 10;
*buff++ = '\0';
return( 1);
}
static double zero_to_two_pi( double angle_in_radians)
{
angle_in_radians = fmod( angle_in_radians, PI + PI);
if( angle_in_radians < 0.)
angle_in_radians += PI + PI;
return( angle_in_radians);
}
/* See comments for get_high_value() in 'get_el.cpp'. Essentially, we are
writing out a state vector in a convoluted base-36 form. */
static void set_high_value( char *obuff, const double value)
{
int64_t oval = (int64_t)fabs( value);
int i;
*obuff++ = (value >= 0. ? '+' : '-');
for( i = 7; i >= 0; i--, oval /= (int64_t)36)
{
obuff[i] = (char)( oval % (int64_t)36);
if( obuff[i] < 10)
obuff[i] += '0';
else
obuff[i] += 'A' - 10;
}
obuff[8] = ' ';
}
/* The second derivative of the mean motion, 'xnddo6', and the 'bstar'
drag term, are stored in a simplified scientific notation. To save
valuable bytes, the decimal point and 'E' are assumed. */
static void put_sci( char *obuff, double ival)
{
if( !ival)
memcpy( obuff, " 00000-0", 7);
else
{
int oval, exponent = 0;
if( ival > 0.)
*obuff++ = ' ';
else
{
*obuff++ = '-';
ival = -ival;
}
while( 1)
{
if( ival > 1.) /* avoid integer overflow */
oval = 100000;
else
oval = (int)( ival * 100000. + .5);
if( oval > 99999)
{
ival /= 10;
exponent++;
}
else if( oval < 10000)
{
ival *= 10;
exponent--;
}
else
break;
}
snprintf( obuff, 7, "%5d", oval);
assert( 5 == strlen( obuff));
if( exponent > 0)
{
obuff[5] = '+';
obuff[6] = (char)( '0' + exponent);
}
else
{
obuff[5] = '-';
obuff[6] = (char)( '0' - exponent);
}
}
}
/* See comments for get_norad_number( ) in get_el.cpp. This
performs the reverse function of setting the five bytes corresponding
to a NORAD number, using the 'standard' Alpha-5 method for numbers
0 to 339000 and the nonstandard Super-5 method beyond that. */
static char int_to_base64( const int digit)
{
int rval;
assert( digit >= 0 && digit < 64);
if( digit < 0 || digit >= 64)
rval = ' ';
else if( digit < 10)
rval = '0' + digit;
else if( digit < 36)
rval = 'A' + digit - 10;
else if( digit < 62)
rval = 'a' + digit - 36;
else
rval = (digit == 62 ? '+' : '-');
return( rval);
}
static void store_norad_number_in_alpha5( char *obuff, const int norad_number)
{
const int N_TYPE_STANDARD = 340000; /* five digits plus Alpha-5 */
const int N_TYPE_2 = 64 * 64 * 64 * 64 * 54; /* xxxxL */
/* const int N_TYPE_3 = 64 * 64 * 64 * 54 * 10; xxxLd; we don't actually use this */
const int one_billion = 1000000000;
int i, tval = norad_number;
assert( norad_number >= 0 && norad_number < one_billion);
if( norad_number < 0 || norad_number >= one_billion)
strcpy( obuff, " "); /* outside representable range */
else if( norad_number < N_TYPE_STANDARD)
{
for( i = 4; i > 0; i--, tval /= 10)
obuff[i] = '0' + (tval % 10);
*obuff = int_to_base64( tval);
if( *obuff >= 'I')
(*obuff)++;
if( *obuff >= 'O')
(*obuff)++;
}
else if( norad_number < N_TYPE_STANDARD + N_TYPE_2)
{
tval -= N_TYPE_STANDARD;
obuff[4] = int_to_base64( tval % 54 + 10);
tval /= 54;
for( i = 3; i >= 0; i--, tval >>= 6)
obuff[i] = int_to_base64( tval & 0x3f);
}
else
{
tval -= N_TYPE_STANDARD + N_TYPE_2;
obuff[4] = int_to_base64( tval % 10);
obuff[3] = int_to_base64( (tval / 10) % 54 + 10);
tval /= 540;
for( i = 2; i >= 0; i--, tval >>= 6)
obuff[i] = int_to_base64( tval & 0x3f);
}
obuff[5] = '\0';
}
/* SpaceTrack TLEs have, on the second line, leading zeroes in front of the
inclination, ascending node, argument of perigee, and mean motion. Which
is why I've used this format string :
snprintf( line2 + 8, 57, "%08.4f %08.4f %07ld %08.4f %08.4f %011.8f", ...)
'classfd.tle' and some other sources don't use leading zeroes. For them,
one should use the following format string for those four quantities :
snprintf( line2 + 8, 57, "%8.4f %8.4f %07ld %8.4f %8.4f %11.8f", ...) */
void DLL_FUNC write_elements_in_tle_format( char *buff, const tle_t *tle)
{
long year = (long)( tle->epoch - J1900) / 365 + 1;
double day_of_year;
char *line2, norad_num_text[6];
do
{
double start_of_year;
year--;
start_of_year = J1900 + (double)year * 365. + (double)((year - 1) / 4);
day_of_year = tle->epoch - start_of_year;
}
while( day_of_year < 1.);
if( year < 0 || year > 200) /* bogus input */
{
year = 56;
day_of_year = 0.;
}
store_norad_number_in_alpha5( norad_num_text, tle->norad_number);
snprintf( buff, 72,
/* xndt2o xndd6o bstar eph bull */
"1 %5s%c %-8s %02ld%12.8f -.000hit00 +00000-0 +00000-0 %c %4dZ\n",
norad_num_text, tle->classification, tle->intl_desig,
year % 100L, day_of_year,
tle->ephemeris_type, tle->bulletin_number);
if( buff[20] == ' ') /* fill in leading zeroes for day of year */
buff[20] = '0';
if( buff[21] == ' ')
buff[21] = '0';
if( tle->ephemeris_type != 'H') /* "normal", standard TLEs */
{
double deriv_mean_motion = tle->xndt2o * MINUTES_PER_DAY_SQUARED / (2. * PI);
unsigned long lderiv;
if( deriv_mean_motion >= 0)
buff[33] = ' ';
lderiv = (unsigned long)( fabs( deriv_mean_motion * 100000000.) + .5);
assert( lderiv < 100000000);
snprintf( buff + 35, 10, "%08lu", lderiv);
assert( 8 == strlen( buff + 35));
buff[43] = ' ';
put_sci( buff + 44, tle->xndd6o * MINUTES_PER_DAY_CUBED / (2. * PI));
put_sci( buff + 53, tle->bstar / AE);
}
else
{
size_t i;
const double *posn = &tle->xincl;
for( i = 0; i < 3; i++)
set_high_value( buff + 33 + i * 10, posn[i]);
buff[62] = 'H';
}
add_tle_checksum_data( buff);
assert( 71 == strlen( buff));
line2 = buff + 71;
snprintf( line2, 10, "2 %5s ", norad_num_text);
assert( 8 == strlen( line2));
if( tle->ephemeris_type != 'H') /* "normal", standard TLEs */
{
const double revs_per_day = tle->xno * MINUTES_PER_DAY / (2. * PI);
assert( revs_per_day > 0. && revs_per_day < 99.);
snprintf( line2 + 8, 57, "%08.4f %08.4f %07ld %08.4f %08.4f %011.8f",
zero_to_two_pi( tle->xincl) * 180. / PI,
zero_to_two_pi( tle->xnodeo) * 180. / PI,
(long)( tle->eo * 10000000. + .5),
zero_to_two_pi( tle->omegao) * 180. / PI,
zero_to_two_pi( tle->xmo) * 180. / PI,
revs_per_day);
assert( 55 == strlen( line2 + 8));
}
else
{
size_t i;
const double *vel = &tle->xincl + 3;
memset( line2 + 8, ' ', 25); /* reserved for future use */
for( i = 0; i < 3; i++)
set_high_value( line2 + 33 + i * 10, vel[i] * 1e+4);
}
assert( tle->revolution_number >= 0 && tle->revolution_number < 100000);
snprintf( line2 + 63, 8, "%5dZ\n", tle->revolution_number);
add_tle_checksum_data( line2);
}