Skip to content

Commit

Permalink
Merge pull request #23 from Deltares/DWO-625-schema-types
Browse files Browse the repository at this point in the history
support for added elevation types, uv and animatedVectors.
  • Loading branch information
ekkelenkamp authored Jan 11, 2024
2 parents c6cafb5 + 297bd5c commit d6b079b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/response/getCapabilitiesResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,26 @@ export interface Layer {
lastValueTime?: string | null;
elevation?: {
units?: string;
unitSymbol?: string;
lowerValue?: number;
upperValue?: number;
tickInterval?: number;
irregularTicks?: number[];
};
boundingBox?: BoundingBox;
styles?: Style[];
/**
* Set to true if a a geotiff image is supported for this layer with uv information. Default is valse
*/
uv?: boolean;
animatedVectors?: {
numberOfParticles?: number;
particleSize?: number;
fadeAmount?: number;
particleColor?: string;
speedFactor?: number;
coloredParticles?: boolean;
};
}
export interface Keyword {
parameterId?: string;
Expand Down

0 comments on commit d6b079b

Please sign in to comment.