From 6e9081da242c833379872f43c0af8dc67b7fc368 Mon Sep 17 00:00:00 2001 From: Maxim Van de Wynckel Date: Mon, 17 Jun 2024 16:12:55 +0200 Subject: [PATCH] chore: fix rdf type --- src/nodes/processing/CalibrationNode.ts | 2 +- src/nodes/processing/CellIdentificationNode.ts | 2 +- src/nodes/processing/MultilaterationNode.ts | 2 +- src/nodes/processing/TriangulationNode.ts | 2 +- src/nodes/shapes/FrameMergeNode.ts | 2 +- src/nodes/shapes/ObjectMergeNode.ts | 2 +- src/nodes/shapes/SourceMergeNode.ts | 1 + 7 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/nodes/processing/CalibrationNode.ts b/src/nodes/processing/CalibrationNode.ts index 32c05ccb8..648226b82 100644 --- a/src/nodes/processing/CalibrationNode.ts +++ b/src/nodes/processing/CalibrationNode.ts @@ -5,7 +5,7 @@ import { ObjectProcessingNode, ObjectProcessingNodeOptions } from '../ObjectProc /** * Calibration node for sensors. This node allows intercepts data frames when * performing user-aided calibration. - * @type {@link http://purl.org/poso/CalibrationProcedure} + * @rdf {@link http://purl.org/poso/CalibrationProcedure} */ export class CalibrationNode extends ObjectProcessingNode { protected state: CalibrationState = CalibrationState.IDLE; diff --git a/src/nodes/processing/CellIdentificationNode.ts b/src/nodes/processing/CellIdentificationNode.ts index 2b8043d8f..ffb46504f 100644 --- a/src/nodes/processing/CellIdentificationNode.ts +++ b/src/nodes/processing/CellIdentificationNode.ts @@ -5,7 +5,7 @@ import { RelativePositionProcessing } from './RelativePositionProcessing'; /** * Cell identification processing node - * @type {@link http://purl.org/poso/CellIdentification} + * @rdf {@link http://purl.org/poso/CellIdentification} * @category Processing node */ export class CellIdentificationNode extends RelativePositionProcessing< diff --git a/src/nodes/processing/MultilaterationNode.ts b/src/nodes/processing/MultilaterationNode.ts index a8286ed1f..6da98264e 100644 --- a/src/nodes/processing/MultilaterationNode.ts +++ b/src/nodes/processing/MultilaterationNode.ts @@ -7,7 +7,7 @@ import { RelativePositionProcessing } from './RelativePositionProcessing'; /** * Multilateration processing node - * @type {@link http://purl.org/poso/Multilateration} + * @rdf {@link http://purl.org/poso/Multilateration} * @category Processing node */ export class MultilaterationNode extends RelativePositionProcessing { diff --git a/src/nodes/processing/TriangulationNode.ts b/src/nodes/processing/TriangulationNode.ts index 63e76527c..80fac264e 100644 --- a/src/nodes/processing/TriangulationNode.ts +++ b/src/nodes/processing/TriangulationNode.ts @@ -17,7 +17,7 @@ import { ObjectProcessingNodeOptions } from '../ObjectProcessingNode'; * - {@link Absolute2DPosition} * - {@link Absolute3DPosition} * - {@link GeographicalPosition} - * @type {@link http://purl.org/poso/Triangulation} + * @rdf {@link http://purl.org/poso/Triangulation} * @category Processing node */ export class TriangulationNode extends RelativePositionProcessing { diff --git a/src/nodes/shapes/FrameMergeNode.ts b/src/nodes/shapes/FrameMergeNode.ts index 621b75f65..0f6e09a56 100644 --- a/src/nodes/shapes/FrameMergeNode.ts +++ b/src/nodes/shapes/FrameMergeNode.ts @@ -10,7 +10,7 @@ import { MergeShape } from './MergeShape'; * ```typescript * new FrameMergeNode(); * ``` - * @type {@link http://purl.org/poso/HighLevelFusion} + * @rdf {@link http://purl.org/poso/HighLevelFusion} * @category Flow shape */ export class FrameMergeNode extends MergeShape { diff --git a/src/nodes/shapes/ObjectMergeNode.ts b/src/nodes/shapes/ObjectMergeNode.ts index 64db67542..604ba27df 100644 --- a/src/nodes/shapes/ObjectMergeNode.ts +++ b/src/nodes/shapes/ObjectMergeNode.ts @@ -5,7 +5,7 @@ import { FrameMergeNode } from './FrameMergeNode'; import { MergeShapeOptions } from './MergeShape'; /** - * @type {@link http://purl.org/poso/HighLevelFusion} + * @rdf {@link http://purl.org/poso/HighLevelFusion} * @category Flow shape */ export class ObjectMergeNode extends FrameMergeNode { diff --git a/src/nodes/shapes/SourceMergeNode.ts b/src/nodes/shapes/SourceMergeNode.ts index db50de798..8b00cfad6 100644 --- a/src/nodes/shapes/SourceMergeNode.ts +++ b/src/nodes/shapes/SourceMergeNode.ts @@ -12,6 +12,7 @@ import { MergeShapeOptions } from './MergeShape'; * It is possible to set a timeout, when this timeout is reached the frames that are received are merged and pushed. * * When frames of the same source are received they are overridden. + * @rdf {@link http://purl.org/poso/HighLevelFusion} * @category Flow shape */ export class SourceMergeNode extends FrameMergeNode {