You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
594 B
C#
23 lines
594 B
C#
|
|
namespace Unplugged.Segy
|
|
{
|
|
public interface ITraceHeader
|
|
{
|
|
/// <summary>
|
|
/// 采样点数量
|
|
/// </summary>
|
|
int SampleCount { get; set; }
|
|
/// <summary>
|
|
/// 野外原始记录号
|
|
/// </summary>
|
|
int TraceNumber { get; }
|
|
int Delay { get; set; }
|
|
int InlineNumber { get; set; }
|
|
int CrosslineNumber { get; set; }
|
|
//int SampleIntervalInMicroseconds { get; }
|
|
int X { get; }// 震源坐标
|
|
int Y { get; }
|
|
int GetValue(int position, int len, bool isLittleEndian);
|
|
}
|
|
}
|