2021-08-02 12:23:18 +05:00
|
|
|
|
namespace AsbCloudDb.Model
|
|
|
|
|
{
|
|
|
|
|
public class NnbData
|
|
|
|
|
{
|
2021-08-03 17:55:28 +05:00
|
|
|
|
public int Key { get; set; }
|
2021-08-02 12:23:18 +05:00
|
|
|
|
public double Depth { get; set; }
|
|
|
|
|
public double ZenithAngle { get; set; }
|
|
|
|
|
public double TrueAzimuth { get; set; }
|
|
|
|
|
public double ConditionalViscosity { get; set; }
|
|
|
|
|
public double DirectAzimuth { get; set; }
|
|
|
|
|
public double VerticalDepth { get; set; }
|
|
|
|
|
public double AbsoluteMark { get; set; }
|
|
|
|
|
public double LocalNorthOffset { get; set; }
|
|
|
|
|
public double LocalEastOffset { get; set; }
|
|
|
|
|
public double OutFallOffset { get; set; }
|
|
|
|
|
public double OffsetAzimuth { get; set; }
|
|
|
|
|
public double AreaIntensity { get; set; }
|
|
|
|
|
public double OffsetStopAngle { get; set; }
|
|
|
|
|
public double ZenithIntensity { get; set; }
|
|
|
|
|
public double Comment { get; set; }
|
|
|
|
|
public double DepthPlanFactDifference { get; set; }
|
|
|
|
|
public double DistancePlanFactDifference { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|