-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsgp4io.h
43 lines (38 loc) · 1.42 KB
/
sgp4io.h
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
#ifndef _sgp4io_
#define _sgp4io_
/* ----------------------------------------------------------------
*
* sgp4io.h;
*
* this file contains a function to read two line element sets. while
* not formerly part of the sgp4 mathematical theory, it is
* required for practical implemenation.
*
* companion code for
* fundamentals of astrodynamics and applications
* 2007
* by david vallado
*
* (w) 719-573-2600, email [email protected]
*
* current :
* 3 sep 07 david vallado
* add operationmode for afspc (a) or improved (i)
* changes :
* 20 apr 07 david vallado
* misc updates for manual operation
* 14 aug 06 david vallado
* original baseline
* ---------------------------------------------------------------- */
#include <stdio.h>
#include <math.h>
#include <string>
#include "sgp4ext.h" // for several misc routines
#include "sgp4unit.h" // for sgp4init and getgravconst
// ------------------------- function declarations -------------------------
void twoline2rv
(std::string longstr1, std::string longstr2,
char opsmode, gravconsttype whichconst,
elsetrec& satrec
);
#endif