diff --git a/backend/src/main/java/com/mcmasterbaja/model/AnalyzerType.java b/backend/src/main/java/com/mcmasterbaja/model/AnalyzerType.java index c624fe60..2f9f9c48 100644 --- a/backend/src/main/java/com/mcmasterbaja/model/AnalyzerType.java +++ b/backend/src/main/java/com/mcmasterbaja/model/AnalyzerType.java @@ -1,7 +1,6 @@ package com.mcmasterbaja.model; public enum AnalyzerType { - ACCEL_CURVE, AVERAGE, CUBIC, DELETE_OUTLIER, @@ -13,7 +12,6 @@ public enum AnalyzerType { SPLIT, CONSTANT_ADDER, STRICT_TIMESTAMP, - SHIFT_CURVE, SMOOTH_STRICT_PRIM, SMOOTH_STRICT_SEC; diff --git a/front-end/src/assets/help/index.ts b/front-end/src/assets/help/index.ts index 3677e2f4..e0484036 100644 --- a/front-end/src/assets/help/index.ts +++ b/front-end/src/assets/help/index.ts @@ -1,4 +1,3 @@ -import accelImage from '@assets/help/accel.png'; import interpolateImage from '@assets/help/interpolate.png'; import linearMultiplierImage from '@assets/help/linMult.png'; import RdpGif from '@assets/help/rdp.gif'; @@ -9,7 +8,6 @@ import splitImage from '@assets/help/split.png'; import placeholderImage from '@assets/help/placeholder.png'; export { - accelImage, interpolateImage, linearMultiplierImage, RdpGif, diff --git a/front-end/src/lib/subteamGraphPresets.ts b/front-end/src/lib/subteamGraphPresets.ts index eefa2851..5654f1a1 100644 --- a/front-end/src/lib/subteamGraphPresets.ts +++ b/front-end/src/lib/subteamGraphPresets.ts @@ -7,8 +7,8 @@ export const subteamGraphPresets: DataViewerPreset[] = [ graphs: [ { axes: [ - { source: 'RPM PRIM.csv', dataType: 'RPM PRIM' }, { source: 'RPM SEC.csv', dataType: 'RPM SEC' }, + { source: 'RPM PRIM.csv', dataType: 'RPM PRIM' }, ], analyzer: AnalyzerType.SGOLAY, analyzerOptions: ['100', '3'], diff --git a/front-end/src/types/AnalyzerTypes.ts b/front-end/src/types/AnalyzerTypes.ts index 7a45e900..c588c724 100644 --- a/front-end/src/types/AnalyzerTypes.ts +++ b/front-end/src/types/AnalyzerTypes.ts @@ -1,8 +1,6 @@ /* eslint-disable max-len */ import { AnalyzerType } from '@types'; import { - accelImage, - interpolateImage, linearMultiplierImage, RdpGif, rollAvgImage, @@ -47,18 +45,6 @@ export const analyzerConfig: Record = { defaultChecked: true, }, - [AnalyzerType.ACCEL_CURVE]: { - title: 'Acceleration Curve Tool', - description: - 'Given both primary (y-axis) and secondary (x-axis) RPM values, applies noise reduction then interpolates to show the shift curve.', - isJoinBased: true, - image: { - src: accelImage, - alt: 'Acceleration curve demo', - }, - links: [{ title: 'CVT Shifting Stages', url: 'CVT_Tutorial-part-2.pdf' }], - }, - [AnalyzerType.SGOLAY]: { title: 'Savitzky-Golay Smoother', description: diff --git a/front-end/src/types/ApiTypes.ts b/front-end/src/types/ApiTypes.ts index 2607e86a..667a14a4 100644 --- a/front-end/src/types/ApiTypes.ts +++ b/front-end/src/types/ApiTypes.ts @@ -24,7 +24,6 @@ export interface MinMax { } export enum AnalyzerType { - ACCEL_CURVE = 'ACCEL_CURVE', AVERAGE = 'AVERAGE', CUBIC = 'CUBIC', LINEAR_MULTIPLY = 'LINEAR_MULTIPLY',