Skip to content

Commit

Permalink
chore: fix rdf type
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximvdw committed Jun 17, 2024
1 parent 4512170 commit 6e9081d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/nodes/processing/CalibrationNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<T extends DataObject = DataObject> extends ObjectProcessingNode {
protected state: CalibrationState = CalibrationState.IDLE;
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/processing/CellIdentificationNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<InOut extends DataFrame> extends RelativePositionProcessing<
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/processing/MultilaterationNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<InOut extends DataFrame> extends RelativePositionProcessing<InOut, RelativeDistance> {
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/processing/TriangulationNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<InOut extends DataFrame> extends RelativePositionProcessing<InOut, RelativeAngle> {
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/shapes/FrameMergeNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<InOut extends DataFrame> extends MergeShape<InOut> {
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/shapes/ObjectMergeNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<InOut extends DataFrame> extends FrameMergeNode<InOut> {
Expand Down
1 change: 1 addition & 0 deletions src/nodes/shapes/SourceMergeNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<InOut extends DataFrame> extends FrameMergeNode<InOut> {
Expand Down

0 comments on commit 6e9081d

Please sign in to comment.