2025-03-08 09:24:38 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef __SPG4FUNCTION__H__
|
|
|
|
#define __SPG4FUNCTION__H__
|
2025-03-12 02:23:09 +00:00
|
|
|
#include "SPG4Tool_global.h"
|
2025-03-08 09:24:38 +00:00
|
|
|
#include "Tle.h"
|
|
|
|
#include "SGP4.h"
|
|
|
|
#include "Observer.h"
|
|
|
|
#include "BaseConstVariable.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
//void RunTle(libsgp4::Tle tle, double start, double end, double inc);
|
|
|
|
|
|
|
|
|
2025-03-12 02:23:09 +00:00
|
|
|
SPG4TOOL_EXPORT std::vector<SatelliteAntPos> RunTle(libsgp4::Tle tle, double start, double end, double inc,bool printfinfoflag=false);
|
2025-03-08 09:24:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|