From 297bd5c8b8c846f8d8e585d6806608b35bcb6423 Mon Sep 17 00:00:00 2001 From: ekkelenk Date: Thu, 11 Jan 2024 11:50:45 +0100 Subject: [PATCH] support for added elevation types, uv and animatedVectors. --- src/response/getCapabilitiesResponse.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/response/getCapabilitiesResponse.ts b/src/response/getCapabilitiesResponse.ts index 5ff10db..73e71c8 100644 --- a/src/response/getCapabilitiesResponse.ts +++ b/src/response/getCapabilitiesResponse.ts @@ -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;