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.
18 lines
606 B
C#
18 lines
606 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Unplugged.Segy
|
|
{
|
|
public interface ISegyFile
|
|
{
|
|
IFileHeader Header { get; }
|
|
IList<ITrace> Traces { get; }
|
|
ValueRange FindRange();
|
|
void GetLineRange(ref int inlineMin, ref int inlineMax,
|
|
ref int crosslineMin, ref int crosslineMax,
|
|
ref int delay, ISegyOptions options = null);
|
|
void GetCoordinateRange(ref double xStart, ref double yStart,
|
|
ref double xEnd, ref double yEnd);
|
|
void ParseStartSurverLine(ref ISurveyLine startInline, ref ISurveyLine startCrossline);
|
|
}
|
|
}
|