예제 #1
0
파일: LASEVLR.cs 프로젝트: PCLC7Z2/cloudae
        public LASEVLR(LASRecordIdentifier record, ISerializeBinary data)
        {
            m_userID      = record.UserID;
            m_recordID    = record.RecordID;
            m_description = String.Empty;

            m_data = SerializationHelper.Serialize(data);
            m_recordLengthAfterHeader = (ulong)m_data.Length;
        }
예제 #2
0
파일: LASFile.cs 프로젝트: PCLC7Z2/cloudae
 public void UpdateEVLR(LASRecordIdentifier record, ISerializeBinary obj)
 {
     for (var i = 0; i < m_evlrs.Length; i++)
     {
         if (m_evlrs[i].RecordIdentifier.Equals(record))
         {
             m_evlrs[i] = new LASEVLR(record, obj);
             break;
         }
     }
 }
예제 #3
0
파일: LAZFile.cs 프로젝트: PCLC7Z2/cloudae
 static LAZFile()
 {
     c_record = new LASRecordIdentifier("laszip encoded", 22204);
     LASVLR.AddInterestingRecord(c_record);
 }