File

libs/sensorml/src/lib/model/gml/AbstractReferenced.ts

Implements

Referenced

Index

Properties
Methods

Properties

axisLabels
Type : string[]
Decorators :
@DisplayName('Axis labels')
srsDimension
Type : number
Decorators :
@DisplayName('SRS dimension')
srsName
Type : string
Decorators :
@DisplayName('SRS name')
uomLabels
Type : string[]
Decorators :
@DisplayName('Unit of measure labels')

Methods

toString
toString()
Returns : string
import { Referenced } from './Referenced';
import { DisplayName } from '../../common/decorators/DisplayName';

export abstract class AbstractReferenced implements Referenced {
    @DisplayName('SRS name')
    srsName: string;

    @DisplayName('SRS dimension')
    srsDimension: number;

    @DisplayName('Axis labels')
    axisLabels: string[];

    @DisplayName('Unit of measure labels')
    uomLabels: string[];

    toString() {
        return 'Abstract referenced';
    }
}

result-matching ""

    No results matching ""