GdopHelper.cs 1.1 KB

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