SpsConst.cs 960 B

12345678910111213141516171819202122232425262728
  1. using Ips.Library.DxpLib;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Sps
  8. {
  9. public class SpsConst
  10. {
  11. public static string AppName { get; set; } = ToolConfig.GetAppSetting("AppName", "信号定位平台");
  12. public static string HttpPort { get; set; } = ToolConfig.GetAppSetting("HttpPort", "16015");
  13. public static string VmFolder { get; set; } = Path.Combine(Directory.GetCurrentDirectory(), "AppData", "vmdata");
  14. public static bool EnableCatchFixError = false;
  15. public static bool NoRefIsValidPos = false;
  16. public static bool UseGpuDdc = false;
  17. public static bool EnableLocGdopErr = false;
  18. public static long DfoLocTurn = (long)(2225 * 1e6);
  19. public static double DefaultStdfErr = 0;
  20. public static bool EnableDtfLoc32 = false;
  21. public static bool EnablEphTle = false;
  22. }
  23. }