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