12345678910111213141516171819202122232425262728 |
- using Ips.Library.DxpLib;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Sps
- {
- public class SpsConst
- {
- public static string AppName { get; set; } = ToolConfig.GetAppSetting("AppName", "信号定位平台");
- public static string HttpPort { get; set; } = ToolConfig.GetAppSetting("HttpPort", "16015");
- public static string VmFolder { get; set; } = Path.Combine(Directory.GetCurrentDirectory(), "AppData", "vmdata");
- public static bool EnableCatchFixError = false;
- public static bool NoRefIsValidPos = false;
- public static bool UseGpuDdc = false;
- public static bool EnableLocGdopErr = false;
- public static long DfoLocTurn = (long)(2225 * 1e6);
- public static double DefaultStdfErr = 0;
- public static bool EnableDtfLoc32 = false;
- public static bool EnablEphTle = false;
- }
- }
|