@webviz/well-log-viewer 2.4.4 → 2.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -57,16 +57,16 @@ function createColorItems() {
57
57
  export function createBooleanItems() {
58
58
  return _createItems(booleanItems);
59
59
  }
60
- function createColorFunctionItems(colorMapFunctions) {
60
+ function createColorFunctionItems(colormapFunctions) {
61
61
  const nodes = [];
62
- if (!colorMapFunctions || !colorMapFunctions.length) {
63
- console.error("colorMapFunctions are missed or empty in createColorFunctionItems()");
62
+ if (!colormapFunctions || !colormapFunctions.length) {
63
+ console.error("colormapFunctions are missed or empty in createColorFunctionItems()");
64
64
  }
65
65
  else {
66
- for (const colorMapFunction of colorMapFunctions) {
67
- const name = colorMapFunction.name;
66
+ for (const colormapFunction of colormapFunctions) {
67
+ const name = colormapFunction.name;
68
68
  if (!name) {
69
- console.error("colorMapFunction.name is empty in createColorFunctionItems()");
69
+ console.error("colormapFunction.name is empty in createColorFunctionItems()");
70
70
  }
71
71
  nodes.push(React.createElement("option", { key: name }, name));
72
72
  }
@@ -222,12 +222,12 @@ export class PlotPropertiesDialog extends Component {
222
222
  ];
223
223
  }
224
224
  else if (type === "gradientfill") {
225
- const colorMapFunctions = this.props.wellLogView.props.colorMapFunctions;
225
+ const colormapFunctions = this.props.wellLogView.props.colorMapFunctions;
226
226
  return [
227
- this.createSelectControl("colorMapFunctionName", "Fill Color function/table", createColorFunctionItems(colorMapFunctions)),
227
+ this.createSelectControl("colorMapFunctionName", "Fill Color function/table", createColorFunctionItems(colormapFunctions)),
228
228
  React.createElement(FormControl, { fullWidth: true, key: "211" }),
229
229
  React.createElement(FormControl, { fullWidth: true, key: "212" }),
230
- this.createSelectControl("inverseColorMapFunctionName", "Inverse Color function/table", createColorFunctionItems(colorMapFunctions), true),
230
+ this.createSelectControl("inverseColorMapFunctionName", "Inverse Color function/table", createColorFunctionItems(colormapFunctions), true),
231
231
  ];
232
232
  }
233
233
  return [];
@@ -310,9 +310,9 @@ export function getWellPicks(wellLogView) {
310
310
  const vMD = d[md];
311
311
  const vPrimary = primaryAxis === "md" ? vMD : scaleInterpolator === null || scaleInterpolator === void 0 ? void 0 : scaleInterpolator.forward(vMD);
312
312
  const vSecondary = primaryAxis === "md" ? scaleInterpolator === null || scaleInterpolator === void 0 ? void 0 : scaleInterpolator.reverse(vMD) : vMD;
313
- const colorMapFunction = wellpick.colorMapFunctions.find((colorMapFunction) => colorMapFunction.name === wellpick.colorMapFunctionName);
313
+ const colormapFunction = wellpick.colorMapFunctions.find((colormapFunction) => colormapFunction.name === wellpick.colorMapFunctionName);
314
314
  const meta = getDiscreteMeta(wellpick.wellpick, wellpick.name);
315
- const { color } = getDiscreteColorAndName(d[c], colorMapFunction, meta);
315
+ const { color } = getDiscreteColorAndName(d[c], colormapFunction, meta);
316
316
  const wp = { vMD, vPrimary, vSecondary, horizon, color };
317
317
  wps.push(wp);
318
318
  }
@@ -5,5 +5,5 @@ export type ColorFunction = {
5
5
  func: (v: number) => [number, number, number];
6
6
  };
7
7
  export type ColorMapFunction = colorTablesObj | ColorFunction;
8
- export declare function isFunction(colorMapFunction: ColorMapFunction | undefined): boolean;
9
- export declare function getColorMapFunction(functionName?: string, colorMapFunctions?: ColorMapFunction[]): ColorMapFunction | undefined;
8
+ export declare function isFunction(colormapFunction: ColorMapFunction | undefined): boolean;
9
+ export declare function getColormapFunction(functionName?: string, colormapFunctions?: ColorMapFunction[]): ColorMapFunction | undefined;
@@ -1,17 +1,17 @@
1
1
  import { elementByName } from "./arrays";
2
- export function isFunction(colorMapFunction) {
3
- if (!colorMapFunction)
2
+ export function isFunction(colormapFunction) {
3
+ if (!colormapFunction)
4
4
  return false;
5
- return !!colorMapFunction.func;
5
+ return !!colormapFunction.func;
6
6
  }
7
- export function getColorMapFunction(functionName, colorMapFunctions) {
7
+ export function getColormapFunction(functionName, colormapFunctions) {
8
8
  if (!functionName)
9
9
  return undefined;
10
- if (!colorMapFunctions) {
10
+ if (!colormapFunctions) {
11
11
  console.error("No color functions provided for graph!");
12
- colorMapFunctions = [];
12
+ colormapFunctions = [];
13
13
  }
14
- const colorFunction = elementByName(colorMapFunctions, functionName);
14
+ const colorFunction = elementByName(colormapFunctions, functionName);
15
15
  if (!colorFunction) {
16
16
  console.error(`Color function '${functionName}' not found`);
17
17
  }
@@ -2,5 +2,5 @@ import { type ColorMapFunction } from "./color-function";
2
2
  export declare function colorToString(color: [number, number, number] | undefined, // [r,g,b]
3
3
  cDefault: string): string;
4
4
  export declare function color4ToString(color: [number, number, number, number]): string;
5
- export declare function getInterpolatedColor(colorMapFunction: ColorMapFunction, v: number): [number, number, number];
6
- export declare function getInterpolatedColorString(colorMapFunction: ColorMapFunction, v: number): string;
5
+ export declare function getInterpolatedColor(colormapFunction: ColorMapFunction, v: number): [number, number, number];
6
+ export declare function getInterpolatedColorString(colormapFunction: ColorMapFunction, v: number): string;
@@ -65,12 +65,12 @@ export function getExactColor(
65
65
  /*
66
66
  get HTML string with interpolated color value in #xxxxxx format
67
67
  */
68
- export function getInterpolatedColor(colorMapFunction, v) {
69
- if (isFunction(colorMapFunction)) {
70
- const func = colorMapFunction;
68
+ export function getInterpolatedColor(colormapFunction, v) {
69
+ if (isFunction(colormapFunction)) {
70
+ const func = colormapFunction;
71
71
  return func.func(v);
72
72
  }
73
- const table = colorMapFunction;
73
+ const table = colormapFunction;
74
74
  // TODO: Do not compute these 3 constants (cNaN, cBelow, cAbove) every time!
75
75
  const cNaN = table.colorNaN
76
76
  ? table.colorNaN
@@ -101,12 +101,12 @@ export function getInterpolatedColor(colorMapFunction, v) {
101
101
  /*
102
102
  get HTML string with interpolated color value in #xxxxxx format
103
103
  */
104
- export function getInterpolatedColorString(colorMapFunction, v) {
105
- if (isFunction(colorMapFunction)) {
106
- const func = colorMapFunction;
104
+ export function getInterpolatedColorString(colormapFunction, v) {
105
+ if (isFunction(colormapFunction)) {
106
+ const func = colormapFunction;
107
107
  return colorToString(func.func(v), "#ffffff");
108
108
  }
109
- const colorTable = colorMapFunction;
109
+ const colorTable = colormapFunction;
110
110
  // TODO: Do not compute these 3 constants (cNaN, cBelow, cAbove) every time!
111
111
  const cNaN = colorToString(colorTable.colorNaN, "#ffffff"); // "white"
112
112
  if (Number.isNaN(v))
@@ -4,7 +4,7 @@ import { isFunction } from "./color-function";
4
4
  import { getInterpolatedColorString } from "./color-table";
5
5
  import { color4ToString } from "./color-table";
6
6
  let __idGradient = 0;
7
- function createGradient(g, colorMapFunction, rLogarithmic) {
7
+ function createGradient(g, colormapFunction, rLogarithmic) {
8
8
  const id = "grad" + ++__idGradient; // generate unique id
9
9
  const lg = g
10
10
  .append("defs")
@@ -22,25 +22,25 @@ function createGradient(g, colorMapFunction, rLogarithmic) {
22
22
  const fraction = i / nIntervals;
23
23
  const y = 1 + fraction * d;
24
24
  const v = Math.log(y) / yDelta;
25
- const c = getInterpolatedColorString(colorMapFunction, v);
25
+ const c = getInterpolatedColorString(colormapFunction, v);
26
26
  lg.append("stop")
27
27
  .attr("offset", fraction * 100.0 + "%")
28
28
  .style("stop-color", c);
29
29
  }
30
30
  }
31
31
  else {
32
- if (isFunction(colorMapFunction)) {
32
+ if (isFunction(colormapFunction)) {
33
33
  const nIntervals = 25; // set some not very big value to smooth filling
34
34
  for (let i = 0; i <= nIntervals; i++) {
35
35
  const fraction = i / nIntervals;
36
- const c = getInterpolatedColorString(colorMapFunction, fraction);
36
+ const c = getInterpolatedColorString(colormapFunction, fraction);
37
37
  lg.append("stop")
38
38
  .attr("offset", fraction * 100.0 + "%")
39
39
  .style("stop-color", c);
40
40
  }
41
41
  }
42
42
  else {
43
- const table = colorMapFunction;
43
+ const table = colormapFunction;
44
44
  const colors = table.colors;
45
45
  for (let i = 0; i < colors.length; i++) {
46
46
  const color = colors[i];
@@ -75,21 +75,21 @@ export default function renderGradientFillPlotLegend(g, bounds, legendInfo, plot
75
75
  ? options.inverseColor
76
76
  : plot.options.color;
77
77
  /* Start GradientFill code */
78
- let colorMapFunction = useMinAsBase && minIsLeft
78
+ let colormapFunction = useMinAsBase && minIsLeft
79
79
  ? options.colorMapFunction
80
80
  : options.inverseColorMapFunction;
81
- if (colorMapFunction) {
82
- const id = createGradient(g, colorMapFunction, options.scale === "linear" && options.colorScale === "log"
81
+ if (colormapFunction) {
82
+ const id = createGradient(g, colormapFunction, options.scale === "linear" && options.colorScale === "log"
83
83
  ? max / min
84
84
  : undefined);
85
85
  fillNrm = "url(#" + id + ")";
86
86
  }
87
- colorMapFunction =
87
+ colormapFunction =
88
88
  useMinAsBase && minIsLeft
89
89
  ? options.inverseColorMapFunction
90
90
  : options.colorMapFunction;
91
- if (colorMapFunction) {
92
- const id = createGradient(g, colorMapFunction, options.scale === "linear" &&
91
+ if (colormapFunction) {
92
+ const id = createGradient(g, colormapFunction, options.scale === "linear" &&
93
93
  (options.inverseColorScale || options.colorScale) === "log"
94
94
  ? max / min
95
95
  : undefined);
@@ -116,10 +116,10 @@ export default function renderGradientFillPlotLegend(g, bounds, legendInfo, plot
116
116
  else {
117
117
  let fillNrm = plot.options.color; // see area-plot-legend.ts! should be? plot.options.fill || plot.options.color;
118
118
  /* Start GradientFill code */
119
- const colorMapFunction = options.colorMapFunction;
120
- if (colorMapFunction) {
119
+ const colormapFunction = options.colorMapFunction;
120
+ if (colormapFunction) {
121
121
  const [min, max] = plot.scale.domain();
122
- const id = createGradient(g, colorMapFunction, options.scale === "linear" && options.colorScale === "log"
122
+ const id = createGradient(g, colormapFunction, options.scale === "linear" && options.colorScale === "log"
123
123
  ? max / min
124
124
  : undefined);
125
125
  fillNrm = "url(#" + id + ")";
@@ -5,7 +5,7 @@ import { getInterpolatedColorString } from "./color-table";
5
5
  /*
6
6
  * Create gradient based on ColorTable/ColorFunction
7
7
  */
8
- function createGradient(ctx, yscale, horizontal, plotdata, xscale, colorMapFunction, scale // "linear" | "log"
8
+ function createGradient(ctx, yscale, horizontal, plotdata, xscale, colormapFunction, scale // "linear" | "log"
9
9
  ) {
10
10
  const dataFrom = plotdata[0];
11
11
  const dataTo = plotdata[plotdata.length - 1];
@@ -24,7 +24,7 @@ function createGradient(ctx, yscale, horizontal, plotdata, xscale, colorMapFunct
24
24
  const stop = (data[0] - xFrom) / xDelta;
25
25
  if (0 <= stop && stop <= 1.0) {
26
26
  const v = (Math.log(data[1]) - yFrom) / yDelta;
27
- const c = getInterpolatedColorString(colorMapFunction, v);
27
+ const c = getInterpolatedColorString(colormapFunction, v);
28
28
  gradient.addColorStop(stop, c);
29
29
  }
30
30
  }
@@ -41,7 +41,7 @@ function createGradient(ctx, yscale, horizontal, plotdata, xscale, colorMapFunct
41
41
  const stop = (data[0] - xFrom) / xDelta;
42
42
  if (0 <= stop && stop <= 1.0) {
43
43
  const v = (data[1] - yFrom) / yDelta;
44
- const c = getInterpolatedColorString(colorMapFunction, v);
44
+ const c = getInterpolatedColorString(colormapFunction, v);
45
45
  gradient.addColorStop(stop, c);
46
46
  }
47
47
  }
@@ -117,9 +117,9 @@ export default class GradientFillPlot extends Plot {
117
117
  inverseAreaFunction(plotdata);
118
118
  ctx.fillStyle = options.inverseColor || "";
119
119
  /* Start GradientFill code */
120
- const colorMapFunction = options.inverseColorMapFunction;
121
- if (colorMapFunction)
122
- ctx.fillStyle = createGradient(ctx, scale, options.horizontal, plotdata, xscale, colorMapFunction, options.inverseColorScale ||
120
+ const colormapFunction = options.inverseColorMapFunction;
121
+ if (colormapFunction)
122
+ ctx.fillStyle = createGradient(ctx, scale, options.horizontal, plotdata, xscale, colormapFunction, options.inverseColorScale ||
123
123
  options.colorScale ||
124
124
  options.scale);
125
125
  /* End GradientFill code */
@@ -130,9 +130,9 @@ export default class GradientFillPlot extends Plot {
130
130
  ctx.lineWidth = options.width || 0.0;
131
131
  ctx.fillStyle = options.fill || options.color || "";
132
132
  /* Start GradientFill code */
133
- const colorMapFunction = options.colorMapFunction;
134
- if (colorMapFunction)
135
- ctx.fillStyle = createGradient(ctx, scale, options.horizontal, plotdata, xscale, colorMapFunction, options.colorScale || options.scale);
133
+ const colormapFunction = options.colorMapFunction;
134
+ if (colormapFunction)
135
+ ctx.fillStyle = createGradient(ctx, scale, options.horizontal, plotdata, xscale, colormapFunction, options.colorScale || options.scale);
136
136
  /* End GradientFill code */
137
137
  ctx.fill();
138
138
  ctx.globalAlpha = 1;
@@ -145,10 +145,10 @@ export declare function updateLegendRows(logViewer: VidexLogViewer): void;
145
145
  * @param position The new track's position in the log viewer
146
146
  * @param axesInfo Information about the axis curves in the log
147
147
  * @param wellLogSets A well-log JSON data set to source curve data from
148
- * @param colorMapFunctions An array of color map functions to apply to the track
148
+ * @param colormapFunctions An array of color map functions to apply to the track
149
149
  * @returns The new track if successful, otherwise `null`
150
150
  */
151
- export declare function createNewViewTrack(logViewer: VidexLogViewer, template: TemplateTrack, position: number, axesInfo: AxesInfo, wellLogSets: WellLogSet[], colorMapFunctions?: ColorMapFunction[]): Track<TrackOptions> | null;
151
+ export declare function createNewViewTrack(logViewer: VidexLogViewer, template: TemplateTrack, position: number, axesInfo: AxesInfo, wellLogSets: WellLogSet[], colormapFunctions?: ColorMapFunction[]): Track<TrackOptions> | null;
152
152
  /**
153
153
  * Modifies a videx track with a new template configuration.
154
154
  * @param logViewer A videx log view controller
@@ -156,10 +156,10 @@ export declare function createNewViewTrack(logViewer: VidexLogViewer, template:
156
156
  * @param template A modified template config to apply to the track
157
157
  * @param axesInfo Information about the axis curves in the log
158
158
  * @param wellLogSets A well-log JSON data set to source curve data from
159
- * @param colorMapFunctions An array of color map functions to apply to the track
159
+ * @param colormapFunctions An array of color map functions to apply to the track
160
160
  * @returns The modified track
161
161
  */
162
- export declare function editViewTrack(logViewer: VidexLogViewer, track: Track, newTemplate: TemplateTrack, axesInfo: AxesInfo, wellLogSets: WellLogSet[], colorMapFunctions?: ColorMapFunction[]): Track;
162
+ export declare function editViewTrack(logViewer: VidexLogViewer, track: Track, newTemplate: TemplateTrack, axesInfo: AxesInfo, wellLogSets: WellLogSet[], colormapFunctions?: ColorMapFunction[]): Track;
163
163
  /**
164
164
  * Removes a videx track from a log viewer.
165
165
  * @param logViewer A videx log view controller
@@ -320,11 +320,11 @@ function addTrackAtIndex(logViewer, track, position) {
320
320
  * @param position The new track's position in the log viewer
321
321
  * @param axesInfo Information about the axis curves in the log
322
322
  * @param wellLogSets A well-log JSON data set to source curve data from
323
- * @param colorMapFunctions An array of color map functions to apply to the track
323
+ * @param colormapFunctions An array of color map functions to apply to the track
324
324
  * @returns The new track if successful, otherwise `null`
325
325
  */
326
- export function createNewViewTrack(logViewer, template, position, axesInfo, wellLogSets, colorMapFunctions = []) {
327
- const newTrack = createTrack(wellLogSets, axesInfo, template, colorMapFunctions);
326
+ export function createNewViewTrack(logViewer, template, position, axesInfo, wellLogSets, colormapFunctions = []) {
327
+ const newTrack = createTrack(wellLogSets, axesInfo, template, colormapFunctions);
328
328
  if (!newTrack)
329
329
  return null;
330
330
  addTrackAtIndex(logViewer, newTrack, position);
@@ -340,11 +340,11 @@ export function createNewViewTrack(logViewer, template, position, axesInfo, well
340
340
  * @param template A modified template config to apply to the track
341
341
  * @param axesInfo Information about the axis curves in the log
342
342
  * @param wellLogSets A well-log JSON data set to source curve data from
343
- * @param colorMapFunctions An array of color map functions to apply to the track
343
+ * @param colormapFunctions An array of color map functions to apply to the track
344
344
  * @returns The modified track
345
345
  */
346
- export function editViewTrack(logViewer, track, newTemplate, axesInfo, wellLogSets, colorMapFunctions = []) {
347
- editTrack(track, newTemplate, wellLogSets, axesInfo, colorMapFunctions);
346
+ export function editViewTrack(logViewer, track, newTemplate, axesInfo, wellLogSets, colormapFunctions = []) {
347
+ editTrack(track, newTemplate, wellLogSets, axesInfo, colormapFunctions);
348
348
  adjustControllerToModifiedTrack(logViewer, track);
349
349
  return track;
350
350
  }
@@ -65,22 +65,22 @@ export declare function getPlotType(plot: Plot): TemplatePlotType;
65
65
  * @param plotSetup - The setup information for the primary plot.
66
66
  * @param plotSetup2 - The setup information for the secondary plot, if any.
67
67
  * @param trackTemplate - The template for the track.
68
- * @param colorMapFunctions - An array of color map functions, for coloring the plot.
68
+ * @param colormapFunctions - An array of color map functions, for coloring the plot.
69
69
  * @param iData - The index of the parent track's data array that corresponds to the primary plot.
70
70
  * @param iData2 - The index for the secondary curve, if any.
71
71
  * @returns The configuration for the plot.
72
72
  */
73
- export declare function buildPlotConfig(plotSetup: PlotSetup, plotSetup2: PlotSetup | null, trackTemplate: TemplateTrack, colorMapFunctions: ColorMapFunction[] | undefined, iData: number, iData2: number): PlotConfig;
73
+ export declare function buildPlotConfig(plotSetup: PlotSetup, plotSetup2: PlotSetup | null, trackTemplate: TemplateTrack, colormapFunctions: ColorMapFunction[] | undefined, iData: number, iData2: number): PlotConfig;
74
74
  /**
75
75
  * Creates an array of `AreaData` objects that together form a discrete stacked graph.
76
76
  *
77
77
  * @param data - An array of key-value tuple rows.
78
- * @param colorMapFunction - A function that maps values to colors. Can be undefined.
78
+ * @param colormapFunction - A function that maps values to colors. Can be undefined.
79
79
  * @param meta - Metadata defining how a value is represented (i.e label and color).
80
80
  *
81
81
  * @returns A promise that resolves to an array of `AreaData` objects.
82
82
  */
83
- export declare function createStackData(data: [number | null, number | string | null][], colorMapFunction: ColorMapFunction | undefined, meta: DiscreteMeta | undefined | null): Promise<AreaData[]>;
83
+ export declare function createStackData(data: [number | null, number | string | null][], colormapFunction: ColorMapFunction | undefined, meta: DiscreteMeta | undefined | null): Promise<AreaData[]>;
84
84
  /**
85
85
  * Sets up the plot configuration for a given well log set and template plot.
86
86
  *
@@ -8,7 +8,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
8
8
  });
9
9
  };
10
10
  import { LinePlot, AreaPlot, DotPlot, DifferentialPlot, LineStepPlot, } from "@equinor/videx-wellog";
11
- import { getColorMapFunction } from "./color-function";
11
+ import { getColormapFunction } from "./color-function";
12
12
  import GradientFillPlot from "./gradientfill-plot";
13
13
  import { checkMinMaxValue, roundLogMinMax, roundMinMax } from "./minmax";
14
14
  import { getDiscreteColorAndName, findSetAndCurveIndex, getAxisIndices, } from "./well-log";
@@ -133,27 +133,27 @@ function makeDataAccessorFunc(iData, iData2) {
133
133
  * @param plotSetup - The setup information for the primary plot.
134
134
  * @param plotSetup2 - The setup information for the secondary plot, if any.
135
135
  * @param trackTemplate - The template for the track.
136
- * @param colorMapFunctions - An array of color map functions, for coloring the plot.
136
+ * @param colormapFunctions - An array of color map functions, for coloring the plot.
137
137
  * @param iData - The index of the parent track's data array that corresponds to the primary plot.
138
138
  * @param iData2 - The index for the secondary curve, if any.
139
139
  * @returns The configuration for the plot.
140
140
  */
141
- export function buildPlotConfig(plotSetup, plotSetup2, trackTemplate, colorMapFunctions, iData, iData2) {
141
+ export function buildPlotConfig(plotSetup, plotSetup2, trackTemplate, colormapFunctions, iData, iData2) {
142
142
  var _a;
143
143
  const { iCurve, iSet, templatePlot } = plotSetup;
144
144
  return {
145
145
  id: `${iSet}-${iCurve}`,
146
146
  type: (_a = templatePlot.type) !== null && _a !== void 0 ? _a : DEFAULT_PLOT_TYPE,
147
- options: buildPlotOptions(plotSetup, plotSetup2, trackTemplate, colorMapFunctions, iData, iData2),
147
+ options: buildPlotOptions(plotSetup, plotSetup2, trackTemplate, colormapFunctions, iData, iData2),
148
148
  };
149
149
  }
150
- function buildPlotOptions(plotSetup, plotSetup2, trackTemplate, colorMapFunctions, iData, iData2) {
150
+ function buildPlotOptions(plotSetup, plotSetup2, trackTemplate, colormapFunctions, iData, iData2) {
151
151
  var _a;
152
152
  const { minmax, templatePlot } = plotSetup;
153
153
  const scale = templatePlot.scale || trackTemplate.scale || DEFAULT_SCALE;
154
154
  const domain = getScaledDomain(templatePlot, scale, minmax);
155
- const colorMapFunction = getColorMapFunction(templatePlot.colorMapFunctionName, colorMapFunctions);
156
- const inverseColorMapFunction = getColorMapFunction(templatePlot.inverseColorMapFunctionName, colorMapFunctions);
155
+ const colormapFunction = getColormapFunction(templatePlot.colorMapFunctionName, colormapFunctions);
156
+ const inverseColormapFunction = getColormapFunction(templatePlot.inverseColorMapFunctionName, colormapFunctions);
157
157
  const dataAccessorFunc = makeDataAccessorFunc(iData, plotSetup2 ? iData2 : undefined);
158
158
  const legendInfoFunc = makeLegendInfoFunc(plotSetup.curve, plotSetup2 === null || plotSetup2 === void 0 ? void 0 : plotSetup2.curve);
159
159
  const fillOpacity = (_a = templatePlot.fillOpacity) !== null && _a !== void 0 ? _a : 0.25;
@@ -167,8 +167,9 @@ function buildPlotOptions(plotSetup, plotSetup2, trackTemplate, colorMapFunction
167
167
  fill: templatePlot.fill, // for 'area'!
168
168
  fillOpacity, // for 'area' and 'gradientfill'!
169
169
  useMinAsBase: true, // for 'area' and 'gradientfill'!
170
- colorMapFunction,
171
- inverseColorMapFunction,
170
+ // keep colorMap in returned structure: it is an external API
171
+ colorMapFunction: colormapFunction,
172
+ inverseColorMapFunction: inverseColormapFunction,
172
173
  colorScale: templatePlot.colorScale,
173
174
  inverseColorScale: templatePlot.inverseColorScale,
174
175
  // @ts-expect-error Somethings wrong with the typing here,
@@ -187,8 +188,8 @@ function buildPlotOptions(plotSetup, plotSetup2, trackTemplate, colorMapFunction
187
188
  },
188
189
  };
189
190
  }
190
- function createAreaData(from, to, value, colorMapFunction, meta) {
191
- const { color, name } = getDiscreteColorAndName(value, colorMapFunction, meta);
191
+ function createAreaData(from, to, value, colormapFunction, meta) {
192
+ const { color, name } = getDiscreteColorAndName(value, colormapFunction, meta);
192
193
  return {
193
194
  from: from,
194
195
  to: to,
@@ -205,12 +206,12 @@ function createAreaData(from, to, value, colorMapFunction, meta) {
205
206
  * Creates an array of `AreaData` objects that together form a discrete stacked graph.
206
207
  *
207
208
  * @param data - An array of key-value tuple rows.
208
- * @param colorMapFunction - A function that maps values to colors. Can be undefined.
209
+ * @param colormapFunction - A function that maps values to colors. Can be undefined.
209
210
  * @param meta - Metadata defining how a value is represented (i.e label and color).
210
211
  *
211
212
  * @returns A promise that resolves to an array of `AreaData` objects.
212
213
  */
213
- export function createStackData(data, colorMapFunction, meta) {
214
+ export function createStackData(data, colormapFunction, meta) {
214
215
  return __awaiter(this, void 0, void 0, function* () {
215
216
  const arr = new Array();
216
217
  let prev = null;
@@ -253,7 +254,7 @@ export function createStackData(data, colorMapFunction, meta) {
253
254
  if (!area && value !== null && value !== undefined && p[0] !== null) {
254
255
  // new value is not null
255
256
  // create new interval colored and labeled for the value
256
- area = createAreaData(boundary, p[0], value, colorMapFunction, meta);
257
+ area = createAreaData(boundary, p[0], value, colormapFunction, meta);
257
258
  }
258
259
  prev = p;
259
260
  }
@@ -1 +1 @@
1
- {"version":3,"file":"plots.js","sourceRoot":"","sources":["../../src/utils/plots.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"plots.js","sourceRoot":"","sources":["../../src/utils/plots.ts"],"names":[],"mappings":";;;;;;;;;AAIA,OAAO,EACH,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,gBAAgB,EAChB,YAAY,GACf,MAAM,uBAAuB,CAAC;AAmB/B,OAAO,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAEvD,OAAO,gBAEN,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AACzE,OAAO,EAEH,uBAAuB,EACvB,oBAAoB,EACpB,cAAc,GACjB,MAAM,YAAY,CAAC;AAEpB,MAAM,CAAC,MAAM,aAAa,GAAG,QAAQ,CAAC;AACtC,MAAM,CAAC,MAAM,iBAAiB,GAAG,MAAM,CAAC;AAwBxC;;GAEG;AACH,MAAM,OAAO,QAAQ;IAKjB;QACI,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;QACf,IAAI,CAAC,MAAM,GAAG,CAAC,MAAM,CAAC,iBAAiB,EAAE,MAAM,CAAC,iBAAiB,CAAC,CAAC;QACnE,IAAI,CAAC,iBAAiB,GAAG;YACrB,MAAM,CAAC,iBAAiB;YACxB,MAAM,CAAC,iBAAiB;SAC3B,CAAC;IACN,CAAC;CACJ;AAED;;;;;;;GAOG;AACH,MAAM,UAAU,eAAe,CAC3B,IAAsB,EACtB,MAAc,EACd,YAAoB;IAEpB,MAAM,IAAI,GAAG,IAAI,QAAQ,EAAE,CAAC;IAC5B,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,KAAK,MAAM,GAAG,IAAI,IAAI,EAAE,CAAC;QACrB,IAAI,KAAK,GAAG,GAAG,CAAC,MAAM,CAAC,CAAC;QACxB,IAAI,OAAO,KAAK,KAAK,QAAQ;YAAE,gBAAgB,CAAC,IAAI,CAAC,MAAM,EAAE,KAAK,CAAC,CAAC;QACpE,MAAM,OAAO,GACT,YAAY,IAAI,CAAC,CAAC,CAAC,CAAE,GAAG,CAAC,YAAY,CAAY,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC5D,IAAI,OAAO,KAAK,IAAI;YAChB,sCAAsC;YACtC,KAAK,GAAG,IAAI,CAAC,CAAC,2BAA2B;QAC7C,gBAAgB,CAAC,IAAI,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC;IACrC,CAAC;IAED,OAAO,IAAI,CAAC;AAChB,CAAC;AAED;;;;;;;GAOG;AACH,MAAM,UAAU,WAAW,CAAC,IAAU;IAClC,IAAI,IAAI,YAAY,gBAAgB;QAAE,OAAO,cAAc,CAAC;IAC5D,IAAI,IAAI,YAAY,QAAQ;QAAE,OAAO,MAAM,CAAC;IAC5C,IAAI,IAAI,YAAY,QAAQ;QAAE,OAAO,MAAM,CAAC;IAC5C,IAAI,IAAI,YAAY,OAAO;QAAE,OAAO,KAAK,CAAC;IAC1C,IAAI,IAAI,YAAY,gBAAgB;QAAE,OAAO,cAAc,CAAC;IAC5D,IAAI,IAAI,YAAY,YAAY;QAAE,OAAO,UAAU,CAAC;IACpD,OAAO,EAAE,CAAC;AACd,CAAC;AAED,SAAS,eAAe,CACpB,YAA0B,EAC1B,KAAa,EACb,MAAwB;IAExB,IAAI,YAAY,CAAC,MAAM;QAAE,OAAO,YAAY,CAAC,MAAM,CAAC;IACpD,IAAI,KAAK,KAAK,KAAK;QAAE,OAAO,cAAc,CAAC,MAAM,CAAC,CAAC;IACnD,IACI,YAAY,CAAC,IAAI,KAAK,cAAc;QACpC,YAAY,CAAC,UAAU,KAAK,KAAK;QAEjC,OAAO,cAAc,CAAC,MAAM,CAAC,CAAC;IAElC,OAAO,WAAW,CAAC,MAAM,CAAC,CAAC;AAC/B,CAAC;AAED,SAAS,kBAAkB,CACvB,MAAoB,EACpB,MAAqB;IAErB,OAAO,GAAG,EAAE;;QAAC,OAAA,CAAC;YACV,KAAK,EAAE,MAAM,CAAC,IAAI;YAClB,IAAI,EAAE,MAAA,MAAM,CAAC,IAAI,mCAAI,EAAE;YAEvB,8BAA8B;YAC9B,MAAM,EAAE;gBACJ,IAAI,EAAE,IAAI;gBACV,KAAK,EAAE,MAAM,CAAC,IAAI;gBAClB,IAAI,EAAE,MAAA,MAAM,CAAC,IAAI,mCAAI,EAAE;aAC1B;YACD,MAAM,EAAE;gBACJ,IAAI,EAAE,IAAI;gBACV,KAAK,EAAE,MAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,IAAI,mCAAI,EAAE;gBACzB,IAAI,EAAE,MAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,IAAI,mCAAI,EAAE;aAC3B;SACJ,CAAC,CAAA;KAAA,CAAC;AACP,CAAC;AACD,MAAM,YAAY;IAId;;;;OAIG;IACH,YAAY,KAAa,EAAE,MAAe;QACtC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACzB,CAAC;IAED,MAAM,CAAC,IAAgB;QACnB,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,EAAE,CAAC;YACtB,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;QACjD,CAAC;aAAM,CAAC;YACJ,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC5B,CAAC;IACL,CAAC;CACJ;AAED,SAAS,oBAAoB,CACzB,KAAa,EACb,MAAe;IAEf,MAAM,aAAa,GAAG,IAAI,YAAY,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;IACtD,OAAO,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;AACpD,CAAC;AAED;;;;;;;;;;GAUG;AACH,MAAM,UAAU,eAAe,CAC3B,SAAoB,EACpB,UAA4B,EAC5B,aAA4B,EAC5B,iBAAiD,EACjD,KAAa,EACb,MAAc;;IAEd,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,EAAE,GAAG,SAAS,CAAC;IAEjD,OAAO;QACH,EAAE,EAAE,GAAG,IAAI,IAAI,MAAM,EAAE;QACvB,IAAI,EAAE,MAAA,YAAY,CAAC,IAAI,mCAAI,iBAAiB;QAC5C,OAAO,EAAE,gBAAgB,CACrB,SAAS,EACT,UAAU,EACV,aAAa,EACb,iBAAiB,EACjB,KAAK,EACL,MAAM,CACT;KACJ,CAAC;AACN,CAAC;AAED,SAAS,gBAAgB,CACrB,SAAoB,EACpB,UAA4B,EAC5B,aAA4B,EAC5B,iBAAiD,EACjD,KAAa,EACb,MAAc;;IAEd,MAAM,EAAE,MAAM,EAAE,YAAY,EAAE,GAAG,SAAS,CAAC;IAC3C,MAAM,KAAK,GAAG,YAAY,CAAC,KAAK,IAAI,aAAa,CAAC,KAAK,IAAI,aAAa,CAAC;IAEzE,MAAM,MAAM,GAAG,eAAe,CAAC,YAAY,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;IAE5D,MAAM,gBAAgB,GAAG,mBAAmB,CACxC,YAAY,CAAC,oBAAoB,EACjC,iBAAiB,CACpB,CAAC;IACF,MAAM,uBAAuB,GAAG,mBAAmB,CAC/C,YAAY,CAAC,2BAA2B,EACxC,iBAAiB,CACpB,CAAC;IAEF,MAAM,gBAAgB,GAAG,oBAAoB,CACzC,KAAK,EACL,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAClC,CAAC;IAEF,MAAM,cAAc,GAAG,kBAAkB,CACrC,SAAS,CAAC,KAAK,EACf,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAE,KAAK,CACpB,CAAC;IAEF,MAAM,WAAW,GAAG,MAAA,YAAY,CAAC,WAAW,mCAAI,IAAI,CAAC;IAErD,OAAO;QACH,YAAY,EAAE,gBAAgB;QAC9B,UAAU,EAAE,cAAc;QAE1B,KAAK;QACL,MAAM;QAEN,KAAK,EAAE,YAAY,CAAC,KAAK;QACzB,YAAY,EAAE,YAAY,CAAC,YAAY;QACvC,IAAI,EAAE,YAAY,CAAC,IAAI,EAAE,cAAc;QACvC,WAAW,EAAE,iCAAiC;QAC9C,YAAY,EAAE,IAAI,EAAE,iCAAiC;QAErD,6DAA6D;QAC7D,gBAAgB,EAAE,gBAAgB;QAClC,uBAAuB,EAAE,uBAAuB;QAChD,UAAU,EAAE,YAAY,CAAC,UAAU;QACnC,iBAAiB,EAAE,YAAY,CAAC,iBAAiB;QAEjD,0DAA0D;QAC1D,MAAM,EAAE;YACJ,KAAK,EAAE,KAAK,EAAE,mBAAmB;YACjC,MAAM,EAAE,MAAM;YACd,KAAK,EAAE,YAAY,CAAC,KAAK;YACzB,IAAI,EAAE,YAAY,CAAC,IAAI;SAC1B;QACD,MAAM,EAAE;YACJ,wBAAwB;YACxB,KAAK,EAAE,KAAK;YACZ,MAAM,EAAE,MAAM;YACd,KAAK,EAAE,YAAY,CAAC,MAAM;YAC1B,IAAI,EAAE,YAAY,CAAC,KAAK;SAC3B;KACJ,CAAC;AACN,CAAC;AAED,SAAS,cAAc,CACnB,IAAY,EACZ,EAAU,EACV,KAAsB,EACtB,gBAA8C,EAC9C,IAA0B;IAE1B,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,uBAAuB,CAC3C,KAAK,EACL,gBAAgB,EAChB,IAAI,CACP,CAAC;IACF,OAAO;QACH,IAAI,EAAE,IAAI;QACV,EAAE,EAAE,EAAE;QACN,IAAI,EAAE,IAAI;QACV,KAAK,EAAE;YACH,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC;YACX,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC;YACX,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC;YACX,0CAA0C;SAC7C;KACJ,CAAC;AACN,CAAC;AAED;;;;;;;;GAQG;AACH,MAAM,UAAgB,eAAe,CACjC,IAA+C,EAC/C,gBAA8C,EAC9C,IAAqC;;QAErC,MAAM,GAAG,GAAe,IAAI,KAAK,EAAY,CAAC;QAC9C,IAAI,IAAI,GAAmD,IAAI,CAAC;QAChE,IAAI,IAAI,GAAoB,IAAI,CAAC;QACjC,KAAK,MAAM,CAAC,IAAI,IAAI,EAAE,CAAC;YACnB,IAAI,QAAQ,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;YACpB,IAAI,QAAQ,KAAK,IAAI,EAAE,CAAC;gBACpB,yCAAyC;gBACzC,IAAI,IAAI,EAAE,CAAC;oBACP,iBAAiB;oBACjB,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;oBACf,IAAI,GAAG,IAAI,CAAC;gBAChB,CAAC;gBACD,SAAS;YACb,CAAC;YACD,IAAI,IAAI,EAAE,CAAC;gBACP;;;kBAGE;gBACF,0DAA0D;gBAC1D,QAAQ,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;gBACnB,IAAI,QAAQ,KAAK,IAAI;oBAAE,SAAS;YACpC,CAAC;YACD,sBAAsB;YACtB,IAAI,IAAI;gBAAE,IAAI,CAAC,EAAE,GAAG,QAAQ,CAAC,CAAC,4BAA4B;YAE1D,MAAM,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,gBAAgB;YACpC,IAAI,IAAI,EAAE,CAAC;gBACP,IAAI,KAAK,KAAK,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC;oBACpB,wBAAwB;oBACxB,IAAI,IAAI,EAAE,CAAC;wBACP,iBAAiB;wBACjB,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;wBACf,IAAI,GAAG,IAAI,CAAC,CAAC,gCAAgC;oBACjD,CAAC;gBACL,CAAC;YACL,CAAC;YACD,IAAI,CAAC,IAAI,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,IAAI,CAAC,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE,CAAC;gBAClE,wBAAwB;gBACxB,wDAAwD;gBACxD,IAAI,GAAG,cAAc,CACjB,QAAQ,EACR,CAAC,CAAC,CAAC,CAAC,EACJ,KAAK,EACL,gBAAgB,EAChB,IAAI,CACP,CAAC;YACN,CAAC;YACD,IAAI,GAAG,CAAC,CAAC;QACb,CAAC;QACD,IAAI,IAAI;YACJ,iBAAiB;YACjB,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACnB,OAAO,GAAG,CAAC;IACf,CAAC;CAAA;AAED;;;;;;;;GAQG;AACH,MAAM,UAAU,SAAS,CACrB,OAAqB,EACrB,YAA0B,EAC1B,QAAkB,EAClB,cAAwB;;IAExB,MAAM,SAAS,GAAG,cAAc,CAAC,CAAC,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,YAAY,CAAC,IAAI,CAAC;IAC1E,IAAI,cAAc,IAAI,YAAY,CAAC,IAAI,KAAK,cAAc;QAAE,OAAO,IAAI,CAAC;IACxE,IAAI,CAAC,SAAS;QAAE,OAAO,IAAI,CAAC;IAE5B,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,oBAAoB,CAAC,OAAO,EAAE,SAAS,CAAC,CAAC;IAClE,IAAI,MAAM,GAAG,CAAC;QAAE,OAAO,IAAI,CAAC;IAE5B,MAAM,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACnC,MAAM,IAAI,GAAG,YAAY,CAAC,IAAI,CAAC;IAC/B,MAAM,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC;IACnC,MAAM,KAAK,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7B,MAAM,UAAU,GAAG,MAAA,KAAK,CAAC,UAAU,mCAAI,CAAC,CAAC;IAEzC,IAAI,UAAU,KAAK,CAAC;QAAE,OAAO,IAAI,CAAC;IAClC,IAAI,KAAK,CAAC,SAAS,KAAK,QAAQ,IAAI,YAAY,CAAC,IAAI,KAAK,SAAS;QAC/D,OAAO,IAAI,CAAC;IAEhB,MAAM,WAAW,GAAG,cAAc,CAAC,YAAY,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IAClE,MAAM,QAAQ,GAAG,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;IACpE,MAAM,MAAM,GAAqB,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;IAE1E,OAAO;QACH,MAAM;QACN,IAAI;QACJ,YAAY;QACZ,KAAK;QACL,QAAQ;QACR,MAAM;QACN,YAAY;QACZ,WAAW,EAAE,OAAO,CAAC,cAAc,CAAC;KACvC,CAAC;AACN,CAAC;AAED;;;;;;GAMG;AACH,MAAM,UAAU,cAAc,CAC1B,YAA0B,EAC1B,WAAyB,EACzB,QAAkB;IAElB,MAAM,MAAM,GAAgB,EAAE,CAAC;IAE/B,MAAM,SAAS,GAAG,SAAS,CAAC,WAAW,EAAE,YAAY,EAAE,QAAQ,CAAC,CAAC;IACjE,MAAM,UAAU,GAAG,SAAS,CAAC,WAAW,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC;IAExE,IAAI,SAAS;QAAE,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IACtC,IAAI,UAAU;QAAE,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IAExC,OAAO,MAAM,CAAC;AAClB,CAAC;AAED;;;;;;GAMG;AACH,gHAAgH;AAChH,MAAM,UAAU,8BAA8B,CAC1C,UAAsB,EACtB,KAAiB;IAEjB,MAAM,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC;IAC1C,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;IAE1B,IAAI,CAAC,OAAO,EAAE,CAAC;QACX,MAAM,KAAK,CAAC,iCAAiC,CAAC,CAAC;IACnD,CAAC;IACD,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC;QAC5B,MAAM,KAAK,CACP,qCAAqC,UAAU,CAAC,IAAI,SAAS,CAChE,CAAC;IACN,CAAC;IAED,OAAO,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,KAAK,CAAC,CAAC;AACvD,CAAC"}
@@ -24,20 +24,20 @@ declare class TracksInfo {
24
24
  * @param axes The axes to match data to
25
25
  * @param templateTracks Templates describing individual tracks
26
26
  * @param templateStyles Global styles/options for track plots
27
- * @param colorMapFunctions Overview of methods used to color rendered plots
27
+ * @param colormapFunctions Overview of methods used to color rendered plots
28
28
  * @returns An object containing videx tracks and related meta-info
29
29
  */
30
30
  export declare function createWellLogTracks(wellLog: WellLogSet[], axes: AxesInfo, templateTracks: TemplateTrack[], // Part of JSON
31
- colorMapFunctions: ColorMapFunction[]): TracksInfo;
31
+ colormapFunctions: ColorMapFunction[]): TracksInfo;
32
32
  /**
33
33
  * Creates a single well-log viewer track from a template object.
34
34
  * @param wellLog Well log data set
35
35
  * @param axesInfo Information about data axes to use
36
36
  * @param templateTrack Track setup template
37
- * @param colorMapFunctions Optional - Functions for coloring the plot
37
+ * @param colormapFunctions Optional - Functions for coloring the plot
38
38
  * @returns A videx well-log track, if the template was valid. Otherwise null
39
39
  */
40
- export declare function createTrack(wellLog: WellLogSet[], axesInfo: AxesInfo, templateTrack: TemplateTrack, colorMapFunctions?: ColorMapFunction[]): Track | null;
40
+ export declare function createTrack(wellLog: WellLogSet[], axesInfo: AxesInfo, templateTrack: TemplateTrack, colormapFunctions?: ColorMapFunction[]): Track | null;
41
41
  /**
42
42
  * Edits a videx track to match a new template.
43
43
  * **NOTE:** Mutates the track!
@@ -45,10 +45,10 @@ export declare function createTrack(wellLog: WellLogSet[], axesInfo: AxesInfo, t
45
45
  * @param newTemplateTrack The new template to apply
46
46
  * @param wellLogSets JSON Well-log containing curve data
47
47
  * @param axisInfo Description of the axes to plot data against
48
- * @param colorMapFunctions Methods used when coloring the plot
48
+ * @param colormapFunctions Methods used when coloring the plot
49
49
  * @returns The edited track
50
50
  */
51
- export declare function editTrack(existingTrack: Track, newTemplateTrack: TemplateTrack, wellLogSets: WellLogSet[], axisInfo: AxesInfo, colorMapFunctions: ColorMapFunction[]): Track;
51
+ export declare function editTrack(existingTrack: Track, newTemplateTrack: TemplateTrack, wellLogSets: WellLogSet[], axisInfo: AxesInfo, colormapFunctions: ColorMapFunction[]): Track;
52
52
  /**
53
53
  * Adds a new plot to a videx track.
54
54
  * **NOTE:** Mutates the track
@@ -56,9 +56,9 @@ export declare function editTrack(existingTrack: Track, newTemplateTrack: Templa
56
56
  * @param templatePlot Template object for the new plot,
57
57
  * @param wellLogSets JSON Well-log sets to source data from
58
58
  * @param axesInfo
59
- * @param colorMapFunctions
59
+ * @param colormapFunctions
60
60
  */
61
- export declare function addPlotToTrack(track: Track, templatePlot: TemplatePlot, wellLogSets: WellLogSet[], axesInfo: AxesInfo, colorMapFunctions: ColorMapFunction[]): void;
61
+ export declare function addPlotToTrack(track: Track, templatePlot: TemplatePlot, wellLogSets: WellLogSet[], axesInfo: AxesInfo, colormapFunctions: ColorMapFunction[]): void;
62
62
  /**
63
63
  * Modifies one of the plots in a videx track.
64
64
  * **NOTE:** Mutates the track!
@@ -67,9 +67,9 @@ export declare function addPlotToTrack(track: Track, templatePlot: TemplatePlot,
67
67
  * @param templatePlot The new template to apply
68
68
  * @param wellLogSets JSON Well-log sets to source data from
69
69
  * @param axesInfo Description of the axes to plot data against
70
- * @param colorMapFunctions Methods used when coloring the plot
70
+ * @param colormapFunctions Methods used when coloring the plot
71
71
  */
72
- export declare function editTrackPlot(track: Track, oldPlot: Plot, templatePlot: TemplatePlot, wellLogSets: WellLogSet[], axesInfo: AxesInfo, colorMapFunctions: ColorMapFunction[]): void;
72
+ export declare function editTrackPlot(track: Track, oldPlot: Plot, templatePlot: TemplatePlot, wellLogSets: WellLogSet[], axesInfo: AxesInfo, colormapFunctions: ColorMapFunction[]): void;
73
73
  /**
74
74
  * Removes a plot from a videx track.
75
75
  * **NOTE:** Mutates the track!
@@ -7,7 +7,7 @@
7
7
  *
8
8
  */
9
9
  import { ScaleTrack, DualScaleTrack, GraphTrack, StackedTrack, } from "@equinor/videx-wellog";
10
- import { getColorMapFunction } from "./color-function";
10
+ import { getColormapFunction } from "./color-function";
11
11
  import { createScale } from "./graph/factory";
12
12
  import { stackLegendConfig } from "./stack/stack-legend";
13
13
  import { getAxisTitle } from "./axes";
@@ -101,7 +101,7 @@ function updateStackedTrackScale(track) {
101
101
  // track.options.domain = plot.options.domain;
102
102
  //}
103
103
  //if (!track.options.domain) {
104
- // // could be on reguired track with missed data
104
+ // // could be on required track with missed data
105
105
  // console.log("Empty track.options.domain!");
106
106
  // track.options.domain =
107
107
  // track.options.scale === "log" ? [1, 100] : [0, 100];
@@ -116,11 +116,11 @@ function updateStackedTrackScale(track) {
116
116
  * @param axes The axes to match data to
117
117
  * @param templateTracks Templates describing individual tracks
118
118
  * @param templateStyles Global styles/options for track plots
119
- * @param colorMapFunctions Overview of methods used to color rendered plots
119
+ * @param colormapFunctions Overview of methods used to color rendered plots
120
120
  * @returns An object containing videx tracks and related meta-info
121
121
  */
122
122
  export function createWellLogTracks(wellLog, axes, templateTracks, // Part of JSON
123
- colorMapFunctions // JS code or JSON color table
123
+ colormapFunctions // JS code or JSON color table
124
124
  ) {
125
125
  var _a, _b;
126
126
  if (!(wellLog === null || wellLog === void 0 ? void 0 : wellLog.length))
@@ -129,7 +129,7 @@ colorMapFunctions // JS code or JSON color table
129
129
  const scaleTracks = setUpScaleTracks(axes, wellLog);
130
130
  info.tracks.push(...scaleTracks);
131
131
  for (const templateTrack of templateTracks) {
132
- const track = createTrack(wellLog, axes, templateTrack, colorMapFunctions);
132
+ const track = createTrack(wellLog, axes, templateTrack, colormapFunctions);
133
133
  if (!track) {
134
134
  console.warn("Could not build track", templateTrack);
135
135
  }
@@ -191,7 +191,7 @@ function maybeGetSecondaryPlotSetup(plotSetups, currIndex) {
191
191
  }
192
192
  return setup2;
193
193
  }
194
- function makeGraphTrackOptions(plotSetups, templateTrack, colorMapFunctions, existingOptions = {}) {
194
+ function makeGraphTrackOptions(plotSetups, templateTrack, colormapFunctions, existingOptions = {}) {
195
195
  // Only returns a non-required tracks if there's any plot-setups available
196
196
  const trackData = [];
197
197
  const trackPlots = [];
@@ -206,7 +206,7 @@ function makeGraphTrackOptions(plotSetups, templateTrack, colorMapFunctions, exi
206
206
  const plotSetup = plotSetups[index];
207
207
  const plotSetup2 = maybeGetSecondaryPlotSetup(plotSetups, index);
208
208
  applySetupMinMax(plotSetup, plotSetup2, indexMinMax);
209
- const plotConfig = buildPlotConfig(plotSetup, plotSetup2, templateTrack, colorMapFunctions, trackData.length, trackData.length + 1);
209
+ const plotConfig = buildPlotConfig(plotSetup, plotSetup2, templateTrack, colormapFunctions, trackData.length, trackData.length + 1);
210
210
  trackPlots.push(plotConfig);
211
211
  curvesUsed.push(plotSetup.curve);
212
212
  trackData.push(plotSetup.plotData.data);
@@ -219,14 +219,14 @@ function makeGraphTrackOptions(plotSetups, templateTrack, colorMapFunctions, exi
219
219
  }
220
220
  return Object.assign(Object.assign({}, createTrackOptionsFromTemplate(templateTrack, existingOptions)), { __indexMinMax: indexMinMax, label: makeTrackHeader(curvesUsed, templateTrack), data: trackData, plots: trackPlots });
221
221
  }
222
- function makeStackedTrackOptions(plotSetups, templateTrack, colorMapFunctions, existingOptions = {}) {
222
+ function makeStackedTrackOptions(plotSetups, templateTrack, colormapFunctions, existingOptions = {}) {
223
223
  var _a;
224
224
  // ? Why do we not care about "required" here? (@anders2303)
225
225
  if (!plotSetups.length)
226
226
  throw new Error("Unexpected empty plot list");
227
227
  const { curve, plotData, sourceLogSet, templatePlot } = plotSetups[0];
228
228
  const meta = getDiscreteMeta(sourceLogSet, curve.name);
229
- const colorFunc = getColorMapFunction((_a = templatePlot.colorMapFunctionName) !== null && _a !== void 0 ? _a : "", colorMapFunctions);
229
+ const colorFunc = getColormapFunction((_a = templatePlot.colorMapFunctionName) !== null && _a !== void 0 ? _a : "", colormapFunctions);
230
230
  const trackHeader = makeTrackHeader([curve], templateTrack);
231
231
  if (!meta && curve.valueType === "integer") {
232
232
  console.warn(`Discrete meta information for '${curve.name}' not found. Using default`);
@@ -244,20 +244,20 @@ function makeStackedTrackOptions(plotSetups, templateTrack, colorMapFunctions, e
244
244
  * @param wellLog Well log data set
245
245
  * @param axesInfo Information about data axes to use
246
246
  * @param templateTrack Track setup template
247
- * @param colorMapFunctions Optional - Functions for coloring the plot
247
+ * @param colormapFunctions Optional - Functions for coloring the plot
248
248
  * @returns A videx well-log track, if the template was valid. Otherwise null
249
249
  */
250
- export function createTrack(wellLog, axesInfo, templateTrack, colorMapFunctions) {
250
+ export function createTrack(wellLog, axesInfo, templateTrack, colormapFunctions) {
251
251
  const plotSetups = setupTrackPlots(wellLog, templateTrack, axesInfo);
252
252
  // ! Stacked tracks require one plot to initialize
253
253
  if (isStackedTrackTemplate(templateTrack) && plotSetups.length) {
254
- const stackedOptions = makeStackedTrackOptions(plotSetups, templateTrack, colorMapFunctions);
254
+ const stackedOptions = makeStackedTrackOptions(plotSetups, templateTrack, colormapFunctions);
255
255
  const track = newStackedTrack(stackedOptions);
256
256
  updateStackedTrackScale(track);
257
257
  return track;
258
258
  }
259
259
  else if (plotSetups.length || templateTrack.required) {
260
- const graphOptions = makeGraphTrackOptions(plotSetups, templateTrack, colorMapFunctions);
260
+ const graphOptions = makeGraphTrackOptions(plotSetups, templateTrack, colormapFunctions);
261
261
  const track = newGraphTrack(graphOptions);
262
262
  updateGraphTrackScale(track);
263
263
  return track;
@@ -271,22 +271,22 @@ export function createTrack(wellLog, axesInfo, templateTrack, colorMapFunctions)
271
271
  * @param newTemplateTrack The new template to apply
272
272
  * @param wellLogSets JSON Well-log containing curve data
273
273
  * @param axisInfo Description of the axes to plot data against
274
- * @param colorMapFunctions Methods used when coloring the plot
274
+ * @param colormapFunctions Methods used when coloring the plot
275
275
  * @returns The edited track
276
276
  */
277
- export function editTrack(existingTrack, newTemplateTrack, wellLogSets, axisInfo, colorMapFunctions) {
277
+ export function editTrack(existingTrack, newTemplateTrack, wellLogSets, axisInfo, colormapFunctions) {
278
278
  const newPlotSetups = setupTrackPlots(wellLogSets, newTemplateTrack, axisInfo);
279
279
  if (existingTrack instanceof StackedTrack) {
280
280
  // ! Hack to force to clear stacked areas
281
281
  existingTrack.data = null;
282
- const newTrackOptions = makeStackedTrackOptions(newPlotSetups, newTemplateTrack, colorMapFunctions, existingTrack.options);
282
+ const newTrackOptions = makeStackedTrackOptions(newPlotSetups, newTemplateTrack, colormapFunctions, existingTrack.options);
283
283
  existingTrack.options = newTrackOptions;
284
284
  existingTrack.data = newTrackOptions.data;
285
285
  updateStackedTrackScale(existingTrack);
286
286
  }
287
287
  else if (existingTrack instanceof GraphTrack) {
288
288
  // TODO: Deal with new plots being added here. Pass to attachPlotToTrack?
289
- const newOptions = makeGraphTrackOptions(newPlotSetups, newTemplateTrack, colorMapFunctions, existingTrack.options);
289
+ const newOptions = makeGraphTrackOptions(newPlotSetups, newTemplateTrack, colormapFunctions, existingTrack.options);
290
290
  existingTrack.options = newOptions;
291
291
  existingTrack.data = newOptions.data;
292
292
  existingTrack.refresh();
@@ -301,9 +301,9 @@ export function editTrack(existingTrack, newTemplateTrack, wellLogSets, axisInfo
301
301
  * @param templatePlot Template object for the new plot,
302
302
  * @param wellLogSets JSON Well-log sets to source data from
303
303
  * @param axesInfo
304
- * @param colorMapFunctions
304
+ * @param colormapFunctions
305
305
  */
306
- export function addPlotToTrack(track, templatePlot, wellLogSets, axesInfo, colorMapFunctions) {
306
+ export function addPlotToTrack(track, templatePlot, wellLogSets, axesInfo, colormapFunctions) {
307
307
  // ! Currently only supporting graph tracks, but keeping the function ambiguous for now
308
308
  if (!(track instanceof GraphTrack))
309
309
  throw Error("Can only add tracks to GraphTracks");
@@ -317,7 +317,7 @@ export function addPlotToTrack(track, templatePlot, wellLogSets, axesInfo, color
317
317
  throw Error("Invalid plot setup");
318
318
  }
319
319
  applySetupMinMax(setup1, setup2, existingIndexRange);
320
- const newPlotConfig = buildPlotConfig(setup1, setup2, existingTemplate, colorMapFunctions, trackDataPoints.length, trackDataPoints.length + 1);
320
+ const newPlotConfig = buildPlotConfig(setup1, setup2, existingTemplate, colormapFunctions, trackDataPoints.length, trackDataPoints.length + 1);
321
321
  const newPlot = buildGraphPlotFromTrackOptions(newPlotConfig, track);
322
322
  existingPlots.push(newPlot);
323
323
  existingTemplate.plots.push(templatePlot);
@@ -335,9 +335,9 @@ export function addPlotToTrack(track, templatePlot, wellLogSets, axesInfo, color
335
335
  * @param templatePlot The new template to apply
336
336
  * @param wellLogSets JSON Well-log sets to source data from
337
337
  * @param axesInfo Description of the axes to plot data against
338
- * @param colorMapFunctions Methods used when coloring the plot
338
+ * @param colormapFunctions Methods used when coloring the plot
339
339
  */
340
- export function editTrackPlot(track, oldPlot, templatePlot, wellLogSets, axesInfo, colorMapFunctions) {
340
+ export function editTrackPlot(track, oldPlot, templatePlot, wellLogSets, axesInfo, colormapFunctions) {
341
341
  if (!(track instanceof GraphTrack))
342
342
  throw Error("Can only add tracks to GraphTracks");
343
343
  const existingPlots = track.plots;
@@ -355,7 +355,7 @@ export function editTrackPlot(track, oldPlot, templatePlot, wellLogSets, axesInf
355
355
  throw Error("Invalid plot setup");
356
356
  }
357
357
  applySetupMinMax(setup1, setup2, existingIndexRange);
358
- const newPlotConfig = buildPlotConfig(setup1, setup2, existingTemplate, colorMapFunctions, trackDataPoints.length, trackDataPoints.length + 1);
358
+ const newPlotConfig = buildPlotConfig(setup1, setup2, existingTemplate, colormapFunctions, trackDataPoints.length, trackDataPoints.length + 1);
359
359
  const newPlot = buildGraphPlotFromTrackOptions(newPlotConfig, track);
360
360
  existingPlots[iOldPlot] = newPlot; // replace existing plot
361
361
  existingTemplate.plots[iOldPlot] = templatePlot;
@@ -81,7 +81,7 @@ export interface DiscreteMeta {
81
81
  objects: WellLogMetadataDiscreteObjects;
82
82
  }
83
83
  export declare function getDiscreteMeta(wellLogSet: WellLogSet, name: string): DiscreteMeta | null;
84
- export declare function getDiscreteColorAndName(value: number | string | null, colorMapFunction: ColorMapFunction | undefined, meta?: DiscreteMeta | null): {
84
+ export declare function getDiscreteColorAndName(value: number | string | null, colormapFunction: ColorMapFunction | undefined, meta?: DiscreteMeta | null): {
85
85
  color: number[];
86
86
  name: string;
87
87
  };
@@ -156,7 +156,7 @@ export function getDiscreteMeta(wellLogSet, name) {
156
156
  }
157
157
  return null; // something went wrong
158
158
  }
159
- export function getDiscreteColorAndName(value, colorMapFunction, meta) {
159
+ export function getDiscreteColorAndName(value, colormapFunction, meta) {
160
160
  let color;
161
161
  let name;
162
162
  if (value === null)
@@ -184,9 +184,9 @@ export function getDiscreteColorAndName(value, colorMapFunction, meta) {
184
184
  }
185
185
  }
186
186
  /*if(object)*/ {
187
- if (colorMapFunction) {
187
+ if (colormapFunction) {
188
188
  // get color from the table
189
- color = getInterpolatedColor(colorMapFunction, !object
189
+ color = getInterpolatedColor(colormapFunction, !object
190
190
  ? Number.NaN
191
191
  : // eslint-disable-next-line @typescript-eslint/no-explicit-any
192
192
  parseFloat(object[iCode].toString()) // parseInt for discrete log
@@ -200,7 +200,7 @@ export function getDiscreteColorAndName(value, colorMapFunction, meta) {
200
200
  }
201
201
  else {
202
202
  name = value.toString();
203
- if (colorMapFunction) {
203
+ if (colormapFunction) {
204
204
  // get color from the table
205
205
  if (typeof value === "string") {
206
206
  let v;
@@ -212,10 +212,10 @@ export function getDiscreteColorAndName(value, colorMapFunction, meta) {
212
212
  v = iStringToNum;
213
213
  iStringToNum++;
214
214
  }
215
- color = getInterpolatedColor(colorMapFunction, v);
215
+ color = getInterpolatedColor(colormapFunction, v);
216
216
  }
217
217
  else {
218
- color = getInterpolatedColor(colorMapFunction, parseInt(value.toString()));
218
+ color = getInterpolatedColor(colormapFunction, parseInt(value.toString()));
219
219
  }
220
220
  }
221
221
  else {
package/package.json CHANGED
@@ -1,43 +1,42 @@
1
1
  {
2
- "name": "@webviz/well-log-viewer",
3
- "version": "2.4.4",
4
- "description": "",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "files": [
8
- "dist"
9
- ],
10
- "scripts": {
11
- "transpile": "tsc --project ./tsconfig.json",
12
- "copy-files": "copyfiles --up 1 \"src/**/*.scss\" dist/",
13
- "build": "git clean -xdff dist && npm run transpile && npm run copy-files",
14
- "test_perf": "jest _performance",
15
- "test_correctness": "jest --coverage --testPathIgnorePatterns='_performance'",
16
- "test": "jest --coverage",
17
- "test:update": "npm test -- --u",
18
- "test:watch": "npm test -- --watch",
19
- "doc": "git clean -xdff docs && typedoc src",
20
- "semantic-release:dry-run": "semantic-release --dry-run"
21
- },
22
- "author": "Equinor <opensource@equinor.com>",
23
- "license": "MPL-2.0",
24
- "dependencies": {
25
- "@emerson-eps/color-tables": "^0.4.92",
26
- "@equinor/videx-wellog": "^0.11.3",
27
- "@webviz/wsc-common": "*",
28
- "convert-units": "^2.3.4",
29
- "d3": "^7.8.2"
30
- },
31
- "peerDependencies": {
32
- "@mui/material": "^5.11",
33
- "react": "^17 || ^18",
34
- "react-dom": "^17 || ^18"
35
- },
36
- "devDependencies": {
37
- "@reduxjs/toolkit": "^2.3.0",
38
- "react-redux": "^9.1.2"
39
- },
40
- "volta": {
41
- "node": "18.19.0"
42
- }
2
+ "name": "@webviz/well-log-viewer",
3
+ "version": "2.4.6",
4
+ "description": "",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "scripts": {
11
+ "transpile": "tsc --project ./tsconfig.json",
12
+ "copy-files": "copyfiles --up 1 \"src/**/*.scss\" dist/",
13
+ "build": "git clean -xdff dist && npm run transpile && npm run copy-files",
14
+ "test_perf": "jest _performance",
15
+ "test_correctness": "jest --coverage --testPathIgnorePatterns='_performance'",
16
+ "test": "jest --coverage",
17
+ "test:update": "npm test -- --u",
18
+ "test:watch": "npm test -- --watch",
19
+ "doc": "git clean -xdff docs && typedoc src"
20
+ },
21
+ "author": "Equinor <opensource@equinor.com>",
22
+ "license": "MPL-2.0",
23
+ "dependencies": {
24
+ "@emerson-eps/color-tables": "^0.4.92",
25
+ "@equinor/videx-wellog": "^0.11.3",
26
+ "@webviz/wsc-common": "1.2.4",
27
+ "convert-units": "^2.3.4",
28
+ "d3": "^7.8.2"
29
+ },
30
+ "peerDependencies": {
31
+ "@mui/material": "^5.11",
32
+ "react": "^17 || ^18",
33
+ "react-dom": "^17 || ^18"
34
+ },
35
+ "devDependencies": {
36
+ "@reduxjs/toolkit": "^2.3.0",
37
+ "react-redux": "^9.1.2"
38
+ },
39
+ "volta": {
40
+ "node": "20.18.3"
41
+ }
43
42
  }
@@ -1 +0,0 @@
1
- export {};
@@ -1,232 +0,0 @@
1
- import { findIndexByCurveName, findSetAndCurveIndex, getAllWellLogCurves, getAxisIndices, getCurveByName, getCurveFromVidexPlotId, getDiscreteMetaDataByName, getWellLogSetsFromProps, } from "./well-log";
2
- // @ts-expect-error TS2741 Mock object kept simple for testing purposes
3
- const MOCK_LOG_SET_1 = {
4
- curves: [{ name: "Curve1" }, { name: "Curve2" }],
5
- header: { well: "Well1" },
6
- metadata_discrete: {
7
- Curve1: {
8
- attributes: "Attributes1",
9
- objects: "Objects1",
10
- },
11
- },
12
- // Data is not needed for any of these tests
13
- data: [],
14
- };
15
- const MOCK_LOG_SET_2 = {
16
- curves: [{ name: "Curve3" }, { name: "Curve4" }],
17
- header: { well: "Well1" },
18
- metadata_discrete: {},
19
- // Data is not needed for any of these tests
20
- data: [],
21
- };
22
- const MOCK_LOG_SET_3 = {
23
- curves: [{ name: "C1" }, { name: "C2" }],
24
- header: { well: "Well1" },
25
- metadata_discrete: {},
26
- // Data is not needed for any of these tests
27
- data: [],
28
- };
29
- const MOCK_LOG_FROM_DIFFERENT_WELL = {
30
- curves: [{ name: "Curve1" }, { name: "Curve1" }],
31
- header: { well: "Some Other Well" },
32
- metadata_discrete: {},
33
- // Data is not needed for any of these tests
34
- data: [],
35
- };
36
- // @ts-expect-error TS2741 Mock object kept simple for testing purposes
37
- const MOCK_AXES_INFO = {
38
- primaryAxis: "primary",
39
- secondaryAxis: "secondary",
40
- mnemos: {
41
- primary: ["Curve1", "C1"],
42
- secondary: ["Curve2"],
43
- },
44
- };
45
- describe("getAllWellLogCurves", () => {
46
- it("should return all curves from a single well log set", () => {
47
- const wellLogSets = [MOCK_LOG_SET_1];
48
- const result = getAllWellLogCurves(wellLogSets);
49
- expect(result).toEqual([{ name: "Curve1" }, { name: "Curve2" }]);
50
- });
51
- it("should return all curves from multiple well log sets", () => {
52
- const wellLogSets = [MOCK_LOG_SET_1, MOCK_LOG_SET_2];
53
- const result = getAllWellLogCurves(wellLogSets);
54
- expect(result).toEqual([
55
- { name: "Curve1" },
56
- { name: "Curve2" },
57
- { name: "Curve3" },
58
- { name: "Curve4" },
59
- ]);
60
- });
61
- it("should handle well log sets with no curves", () => {
62
- const wellLogSets = [
63
- Object.assign(Object.assign({}, MOCK_LOG_SET_1), { curves: [] }),
64
- MOCK_LOG_SET_2,
65
- ];
66
- const result = getAllWellLogCurves(wellLogSets);
67
- expect(result).toEqual([{ name: "Curve3" }, { name: "Curve4" }]);
68
- });
69
- });
70
- describe("findSetAndCurveIndex", () => {
71
- it("should return the correct indices for an existing curve", () => {
72
- const wellLogSets = [MOCK_LOG_SET_1, MOCK_LOG_SET_2];
73
- const result = findSetAndCurveIndex(wellLogSets, "Curve1");
74
- expect(result).toEqual({ iSet: 0, iCurve: 0 });
75
- });
76
- it("should return -1 indices for a curve that does not exist", () => {
77
- const wellLogSets = [MOCK_LOG_SET_1, MOCK_LOG_SET_2];
78
- const result = findSetAndCurveIndex(wellLogSets, "Curve5");
79
- expect(result).toEqual({ iSet: -1, iCurve: -1 });
80
- });
81
- });
82
- describe("findIndexByCurveName", () => {
83
- it("should return the correct index for an existing curve", () => {
84
- const curves = MOCK_LOG_SET_1.curves;
85
- const result = findIndexByCurveName(curves, "Curve1");
86
- expect(result).toBe(0);
87
- });
88
- it("should return -1 for a curve that does not exist", () => {
89
- const curves = MOCK_LOG_SET_1.curves;
90
- const result = findIndexByCurveName(curves, "Curve5");
91
- expect(result).toBe(-1);
92
- });
93
- });
94
- describe("getCurveByName", () => {
95
- it("should return the correct curve", () => {
96
- const wellLogSet = MOCK_LOG_SET_1;
97
- const result = getCurveByName(wellLogSet, "Curve1");
98
- expect(result).toEqual({ name: "Curve1" });
99
- });
100
- it("should return undefined for a curve that does not exist", () => {
101
- const wellLogSet = MOCK_LOG_SET_1;
102
- const result = getCurveByName(wellLogSet, "Curve5");
103
- expect(result).toBeUndefined();
104
- });
105
- });
106
- describe("getDiscreteMetaDataByName", () => {
107
- it("should return the correct metadata for an existing curve", () => {
108
- const wellLogSet = MOCK_LOG_SET_1;
109
- const result = getDiscreteMetaDataByName(wellLogSet, "Curve1");
110
- expect(result).toEqual({
111
- attributes: "Attributes1",
112
- objects: "Objects1",
113
- });
114
- });
115
- it("should return null for a curve that does not exist", () => {
116
- const wellLogSet = MOCK_LOG_SET_1;
117
- const result = getDiscreteMetaDataByName(wellLogSet, "Curve5");
118
- expect(result).toBeNull();
119
- });
120
- it("should return null for a curve that does not have associated metadata", () => {
121
- const wellLogSet = MOCK_LOG_SET_1;
122
- const result = getDiscreteMetaDataByName(wellLogSet, "Curve5");
123
- expect(result).toBeNull();
124
- });
125
- it("should return null for a well log set that does not have metadata", () => {
126
- const wellLogSet = MOCK_LOG_SET_2;
127
- const result = getDiscreteMetaDataByName(wellLogSet, "Curve3");
128
- expect(result).toBeNull();
129
- });
130
- });
131
- describe("getAxisIndices", () => {
132
- it("should return the correct axis indices", () => {
133
- const curves = MOCK_LOG_SET_1.curves;
134
- const result = getAxisIndices(curves, MOCK_AXES_INFO);
135
- expect(result).toEqual({ primary: 0, secondary: 1 });
136
- });
137
- it("should work with a different name mnemonic", () => {
138
- const curves = MOCK_LOG_SET_3.curves;
139
- const result = getAxisIndices(curves, MOCK_AXES_INFO);
140
- expect(result).toEqual({ primary: 0, secondary: -1 });
141
- });
142
- it("should return -1 for both axes if they are not found", () => {
143
- const curvesWithOutAxes = [{ name: "Curr_1" }, { name: "Curr_1" }];
144
- const result = getAxisIndices(curvesWithOutAxes, MOCK_AXES_INFO);
145
- expect(result).toEqual({ primary: -1, secondary: -1 });
146
- });
147
- it("should return -1 if mnemos are not provided", () => {
148
- const curves = MOCK_LOG_SET_1.curves;
149
- // @ts-expect-error TS2345 Intentionally passing a broken object
150
- const result = getAxisIndices(curves, {});
151
- expect(result).toEqual({ primary: -1, secondary: -1 });
152
- });
153
- it("should return -1 if mnemos for axis dont exist", () => {
154
- const curves = MOCK_LOG_SET_1.curves;
155
- // @ts-expect-error TS2741 Kept simple for testing purposes
156
- const axesInfoWithWrongMnemos = {
157
- primaryAxis: "foo",
158
- secondaryAxis: "fee",
159
- mnemos: {
160
- bar: ["Curve1", "C1"],
161
- fum: ["Curve2"],
162
- },
163
- };
164
- const result = getAxisIndices(curves, axesInfoWithWrongMnemos);
165
- expect(result).toEqual({ primary: -1, secondary: -1 });
166
- });
167
- });
168
- describe("getWellLogSetsFromProps", () => {
169
- it("should return an array for welllog prop", () => {
170
- // @ts-expect-error TS2739 Prop kept simple for testing purposes
171
- const propWithSingle = {
172
- welllog: MOCK_LOG_SET_1,
173
- };
174
- const result1 = getWellLogSetsFromProps(propWithSingle);
175
- expect(result1).toEqual([MOCK_LOG_SET_1]);
176
- // @ts-expect-error TS2739 Prop kept simple for testing purposes
177
- const propWithArray = {
178
- welllog: [MOCK_LOG_SET_1, MOCK_LOG_SET_2],
179
- };
180
- const result2 = getWellLogSetsFromProps(propWithArray);
181
- expect(result2).toEqual([MOCK_LOG_SET_1, MOCK_LOG_SET_2]);
182
- });
183
- it("should return an array for wellLogSets prop", () => {
184
- // @ts-expect-error TS2739 Prop kept simple for testing purposes
185
- const prop = {
186
- wellLogSets: [MOCK_LOG_SET_1, MOCK_LOG_SET_2],
187
- };
188
- const result = getWellLogSetsFromProps(prop);
189
- expect(result).toEqual([MOCK_LOG_SET_1, MOCK_LOG_SET_2]);
190
- });
191
- it("should prioritize wellLogSets prop over welllog prop", () => {
192
- // @ts-expect-error TS2739 Prop kept simple for testing purposes
193
- const prop = {
194
- welllog: MOCK_LOG_SET_1,
195
- wellLogSets: [MOCK_LOG_SET_2],
196
- };
197
- const result = getWellLogSetsFromProps(prop);
198
- expect(result).toEqual([MOCK_LOG_SET_2]);
199
- });
200
- it("should return an empty array if none of the properties are provided", () => {
201
- // @ts-expect-error TS2345 Prop kept simple
202
- const result = getWellLogSetsFromProps({});
203
- expect(result).toEqual([]);
204
- });
205
- it("should warn if logs for different wells are found", () => {
206
- const warnSpy = jest.spyOn(console, "warn").mockImplementation();
207
- // @ts-expect-error TS2739 Prop kept simple for testing purposes
208
- const prop = {
209
- welllog: [MOCK_LOG_SET_1, MOCK_LOG_FROM_DIFFERENT_WELL],
210
- };
211
- getWellLogSetsFromProps(prop);
212
- expect(warnSpy).toHaveBeenCalled();
213
- warnSpy.mockRestore();
214
- });
215
- });
216
- describe("getCurveFromVidexPlotId", () => {
217
- it("should return the first curve in the second set", () => {
218
- const wellLogSets = [MOCK_LOG_SET_1, MOCK_LOG_SET_2];
219
- const result = getCurveFromVidexPlotId(wellLogSets, "1-0");
220
- expect(result).toEqual({ name: "Curve3" });
221
- });
222
- it("should return undefined if the id gives out-of-bounds indices", () => {
223
- const wellLogSets = [MOCK_LOG_SET_1, MOCK_LOG_SET_2];
224
- const result = getCurveFromVidexPlotId(wellLogSets, "2-0");
225
- expect(result).toBeUndefined();
226
- });
227
- it("should throw if the id is not in the correct format", () => {
228
- const wellLogSets = [MOCK_LOG_SET_1, MOCK_LOG_SET_2];
229
- expect(() => getCurveFromVidexPlotId(wellLogSets, "1")).toThrow("Wrong pattern");
230
- });
231
- });
232
- //# sourceMappingURL=well-log.test.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"well-log.test.js","sourceRoot":"","sources":["../../src/utils/well-log.test.ts"],"names":[],"mappings":"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"}