libs/sensorml/src/lib/model/gml/AbstractReferenced.ts
Properties |
Methods |
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')
|
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';
}
}