示例#1
0
文件: LasVlr.cs 项目: PCLC7Z2/cloudae
 public static void AddInterestingRecord(LasRecordIdentifier recordIdentifier)
 {
     if (!KnownRecordMapping.ContainsKey(recordIdentifier))
     {
         KnownRecordMapping.Add(recordIdentifier, true);
     }
 }
示例#2
0
文件: LasVlr.cs 项目: PCLC7Z2/cloudae
        public static bool IsInterestingRecord(LasRecordIdentifier recordIdentifier)
        {
            bool value;

            if (KnownRecordMapping.TryGetValue(recordIdentifier, out value))
            {
                return(value);
            }

            return(false);
        }
示例#3
0
文件: LasVlr.cs 项目: PCLC7Z2/cloudae
 public static bool IsKnownRecord(LasRecordIdentifier recordIdentifier)
 {
     return(KnownRecordMapping.ContainsKey(recordIdentifier));
 }