sgp4io.h
来自「NORAD公布的两行星历数据计算轨道参数模型」· C头文件 代码 · 共 47 行
H
47 行
#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 dvallado@agi.com
*
* current :
* 20 apr 07 david vallado
* misc updates for manual operation
* changes :
* 14 aug 06 david vallado
* original baseline
* ---------------------------------------------------------------- */
#include <stdio.h>
#include <math.h>
#include "sgp4ext.h" // for several misc routines
#include "sgp4unit.h" // for sgp4init and getgravconst
// ------------------------- function declarations -------------------------
void twoline2rv
(
char[130], char[130],
char, char,
gravconsttype,
double&,
double&,
double&,
elsetrec&
);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?