| 123456789101112131415161718192021222324252627282930313233 |
- using DevExpress.Charts.Native;
- using DevExpress.Internal.WinApi.Windows.UI.Notifications;
- using DevExpress.XtraPrinting;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.IO;
- using System.Linq;
- using System.Runtime.InteropServices;
- using System.Text;
- using System.Threading.Tasks;
- using XdCxRhDW.App.DTO;
- using static DevExpress.XtraCharts.GLGraphics.Platform.EGL;
- using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock;
- namespace XzXdDw.App.Api.低轨GDOP误差椭圆
- {
- /// <summary>
- /// Gdop误差分布计算帮助类.该类调用了GdopCore.exe进程
- /// 每种GDOP算法提供了两个接口,这两种接口是完全等价的,一种传入双行根,一种直接传入卫星状态x、y、z等
- /// </summary>
- public static class GdopHelper
- {
- private const string GDOPDll = @"Api\低轨GDOP误差椭圆\GDOP\DLL_GDOP_Analysis.dll";
- [DllImport(GDOPDll, CallingConvention = CallingConvention.Cdecl)]
- public static extern void freeBuff(IntPtr buf);
-
- }
-
- }
|