2021-08-28 22:32:13 +05:00
|
|
|
|
import { makeColumn } from '../../components/Table'
|
2021-08-30 16:40:56 +05:00
|
|
|
|
import {v, numericColumnOptions, textColumnOptions} from './columnsCommon'
|
2021-08-28 22:32:13 +05:00
|
|
|
|
|
|
|
|
|
export const columnsNnb = [
|
2021-08-30 16:40:56 +05:00
|
|
|
|
makeColumn('Глубина по стволу, м', 'depth', textColumnOptions),
|
|
|
|
|
makeColumn(v('Зенитный угол, град'), 'zenithAngle', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Азимут магнитный, град'), 'magneticAzimuth', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Азимут истинный, град'), 'trueAzimuth', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Азимут дирекц., град'), 'directAzimuth', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Глубина по вертикали, м'), 'verticalDepth', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Абсолютная отметка, м'), 'absoluteMark', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Лок. смещение к северу, м'), 'localNorthOffset', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Лок. смещение к востоку, м'), 'localEastOffset', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Отклонение от устья, м'), 'outFallOffset', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Азимут смещения, град'), 'offsetAzimuth', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Пространст. интенсивность, град/10 м'), 'areaIntensity', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Угол установки отклон., град'), 'offsetStopAngle', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Интенсив. по зениту, град/10 м'), 'zenithIntensity', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Комментарий'), 'comment', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Разница вертикальных глубин\nмежду планом и фактом'), 'depthPlanFactDifference', numericColumnOptions),
|
|
|
|
|
makeColumn(v('Расстояние в пространстве\nмежду планом и фактом'), 'distancePlanFactDifference', numericColumnOptions),
|
2021-10-07 11:52:52 +05:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export const nnbDefaultData = {
|
|
|
|
|
idWell: 0,
|
|
|
|
|
key: 'nnbDefaultData',
|
|
|
|
|
idCategory: 0,
|
|
|
|
|
isDefaultData: true,
|
|
|
|
|
data: {
|
|
|
|
|
"depth": 0,
|
|
|
|
|
"zenithAngle": 0,
|
|
|
|
|
"magneticAzimuth": 0,
|
|
|
|
|
"trueAzimuth": 0,
|
|
|
|
|
"directAzimuth": 0,
|
|
|
|
|
"verticalDepth": 0,
|
|
|
|
|
"absoluteMark": 0,
|
|
|
|
|
"localNorthOffset": 0,
|
|
|
|
|
"localEastOffset": 0,
|
|
|
|
|
"outFallOffset": 0,
|
|
|
|
|
"offsetAzimuth": 0,
|
|
|
|
|
"areaIntensity": '-',
|
|
|
|
|
"offsetStopAngle": 0,
|
|
|
|
|
"zenithIntensity": 0,
|
|
|
|
|
"comment": '-',
|
|
|
|
|
"depthPlanFactDifference": 0,
|
|
|
|
|
"distancePlanFactDifference": 0
|
|
|
|
|
}
|
|
|
|
|
}
|