diff --git a/CHANGELOG.md b/CHANGELOG.md index 9805f46..92930ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## [1.17.2] - 2023-10-23 +### Fixed +- Typo bugfix. + ## [1.17.1] - 2022-10-22 ### Fixed - Fixed broken [Tooltip](https://chird.github.io/meteoJS/doc/module-meteoJS_tooltip_bootstrapTooltip.BootstrapTooltip.html) with Bootstrap v5.2.2. @@ -306,7 +310,8 @@ will not work anymore, until you pass a callback to `getTimeText`. ### Fixed - Some tests with DOM usage. -[Unreleased]: https://github.com/chird/meteoJS/compare/v1.17.1...HEAD +[Unreleased]: https://github.com/chird/meteoJS/compare/v1.17.2...HEAD +[1.17.2]: https://github.com/chird/meteoJS/compare/v1.17.1...v1.17.2 [1.17.1]: https://github.com/chird/meteoJS/compare/v1.17.0...v1.17.1 [1.17.0]: https://github.com/chird/meteoJS/compare/v1.16.1...v1.17.0 [1.16.1]: https://github.com/chird/meteoJS/compare/v1.16.0...v1.16.1 diff --git a/doc/Modelviewer.js.html b/doc/Modelviewer.js.html index d9b3986..3b767c2 100644 --- a/doc/Modelviewer.js.html +++ b/doc/Modelviewer.js.html @@ -277,7 +277,7 @@

Source: Modelviewer.js

diff --git a/doc/RepetitiveRequests.js.html b/doc/RepetitiveRequests.js.html index 8a20b98..fe57cc7 100644 --- a/doc/RepetitiveRequests.js.html +++ b/doc/RepetitiveRequests.js.html @@ -389,7 +389,7 @@

Source: RepetitiveRequests.js

diff --git a/doc/Sounding.js.html b/doc/Sounding.js.html index 89a924d..673c719 100644 --- a/doc/Sounding.js.html +++ b/doc/Sounding.js.html @@ -166,15 +166,15 @@

Source: Sounding.js

d.v === undefined && d.wdir !== undefined && d.wspd !== undefined) { - d.u = d.wspd * Math.sin(d.wdir / 180 * Math.PI); - d.v = d.wspd * Math.cos(d.wdir / 180 * Math.PI); + d.u = -d.wspd * Math.sin(d.wdir / 180 * Math.PI); + d.v = -d.wspd * Math.cos(d.wdir / 180 * Math.PI); } else if (d.u !== undefined && d.v !== undefined && d.wdir === undefined && d.wspd === undefined) { d.wspd = Math.sqrt(Math.pow(d.u, 2) + Math.pow(d.v, 2)); - d.wdir = Math.arctan(d.u/d.v) / Math.PI * 180; + d.wdir = 270 - (Math.atan2(d.v, d.u) / Math.PI * 180); } // Humidity @@ -277,7 +277,7 @@

Source: Sounding.js

diff --git a/doc/Synview.js.html b/doc/Synview.js.html index 6f3e061..1d714fb 100644 --- a/doc/Synview.js.html +++ b/doc/Synview.js.html @@ -201,7 +201,7 @@

Source: Synview.js

diff --git a/doc/ThermodynamicDiagram.js.html b/doc/ThermodynamicDiagram.js.html index 24aad92..4be1b3f 100644 --- a/doc/ThermodynamicDiagram.js.html +++ b/doc/ThermodynamicDiagram.js.html @@ -330,7 +330,7 @@

Source: ThermodynamicDiagram.js

diff --git a/doc/ThermodynamicDiagramPluggable.js.html b/doc/ThermodynamicDiagramPluggable.js.html index 386db7d..3c321ea 100644 --- a/doc/ThermodynamicDiagramPluggable.js.html +++ b/doc/ThermodynamicDiagramPluggable.js.html @@ -232,7 +232,7 @@

Source: ThermodynamicDiagramPluggable.js

diff --git a/doc/Timeline.js.html b/doc/Timeline.js.html index 5a29c46..efd74e5 100644 --- a/doc/Timeline.js.html +++ b/doc/Timeline.js.html @@ -896,7 +896,7 @@

Source: Timeline.js

diff --git a/doc/Tooltip.js.html b/doc/Tooltip.js.html index 182cef0..4242d10 100644 --- a/doc/Tooltip.js.html +++ b/doc/Tooltip.js.html @@ -155,7 +155,7 @@

Source: Tooltip.js

diff --git a/doc/base_Collection.js.html b/doc/base_Collection.js.html index 88091a3..c8230e6 100644 --- a/doc/base_Collection.js.html +++ b/doc/base_Collection.js.html @@ -318,7 +318,7 @@

Source: base/Collection.js

diff --git a/doc/base_Named.js.html b/doc/base_Named.js.html index 37a20e2..23868bf 100644 --- a/doc/base_Named.js.html +++ b/doc/base_Named.js.html @@ -162,7 +162,7 @@

Source: base/Named.js

diff --git a/doc/base_NamedCollection.js.html b/doc/base_NamedCollection.js.html index b650382..e7b8e48 100644 --- a/doc/base_NamedCollection.js.html +++ b/doc/base_NamedCollection.js.html @@ -110,7 +110,7 @@

Source: base/NamedCollection.js

diff --git a/doc/base_Unique.js.html b/doc/base_Unique.js.html index 3ae0493..a97ad91 100644 --- a/doc/base_Unique.js.html +++ b/doc/base_Unique.js.html @@ -83,7 +83,7 @@

Source: base/Unique.js

diff --git a/doc/base_UniqueNamed.js.html b/doc/base_UniqueNamed.js.html index a3109ff..ce0ef0b 100644 --- a/doc/base_UniqueNamed.js.html +++ b/doc/base_UniqueNamed.js.html @@ -95,7 +95,7 @@

Source: base/UniqueNamed.js

diff --git a/doc/calc.js.html b/doc/calc.js.html index 7750e6c..a778599 100644 --- a/doc/calc.js.html +++ b/doc/calc.js.html @@ -523,7 +523,7 @@

Source: calc.js

diff --git a/doc/events.js.html b/doc/events.js.html index e3ca81b..5d29ed3 100644 --- a/doc/events.js.html +++ b/doc/events.js.html @@ -165,7 +165,7 @@

Source: Events.js

diff --git a/doc/external-Event.html b/doc/external-Event.html index 24b92bd..2984759 100644 --- a/doc/external-Event.html +++ b/doc/external-Event.html @@ -51,7 +51,7 @@

Event

diff --git a/doc/external-HTMLElement.html b/doc/external-HTMLElement.html index 087b417..ae13ef6 100644 --- a/doc/external-HTMLElement.html +++ b/doc/external-HTMLElement.html @@ -51,7 +51,7 @@

HTMLElement

diff --git a/doc/external-SVG.html b/doc/external-SVG.html index 26bb613..c67db75 100644 --- a/doc/external-SVG.html +++ b/doc/external-SVG.html @@ -51,7 +51,7 @@

SVG

diff --git a/doc/external-XMLHttpRequest.html b/doc/external-XMLHttpRequest.html index c185a55..245ebc8 100644 --- a/doc/external-XMLHttpRequest.html +++ b/doc/external-XMLHttpRequest.html @@ -51,7 +51,7 @@

XMLHttpRequest

diff --git a/doc/external-jQuery.html b/doc/external-jQuery.html index ae807eb..efd9402 100644 --- a/doc/external-jQuery.html +++ b/doc/external-jQuery.html @@ -51,7 +51,7 @@

jQuery

diff --git a/doc/external-momentjs.html b/doc/external-momentjs.html index 5682bf7..00425f6 100644 --- a/doc/external-momentjs.html +++ b/doc/external-momentjs.html @@ -51,7 +51,7 @@

momentjs

diff --git a/doc/index.html b/doc/index.html index 7c1e9b5..a2e0468 100644 --- a/doc/index.html +++ b/doc/index.html @@ -9780,7 +9780,7 @@

meteoJS/tooltip/boots diff --git a/doc/index.js.html b/doc/index.js.html index 1f81e87..fe30f23 100644 --- a/doc/index.js.html +++ b/doc/index.js.html @@ -211,6 +211,7 @@

Source: index.js

import DiagramSounding from './thermodynamicDiagram/DiagramSounding.js'; import Hodograph from './thermodynamicDiagram/Hodograph.js'; import TDDiagram from './thermodynamicDiagram/TDDiagram.js'; +import PlotAltitudeDataArea from './thermodynamicDiagram/PlotAltitudeDataArea.js'; import { drawWindbarbInto } from './thermodynamicDiagram/Functions.js'; import WindbarbsProfile from './thermodynamicDiagram/WindbarbsProfile.js'; import WindspeedProfile from './thermodynamicDiagram/WindspeedProfile.js'; @@ -225,6 +226,7 @@

Source: index.js

SkewTlogPDiagram }, DiagramSounding, + PlotAltitudeDataArea, Hodograph, TDDiagram, functions: { @@ -247,7 +249,7 @@

Source: index.js

diff --git a/doc/modelviewer_Container.js.html b/doc/modelviewer_Container.js.html index 9ae1b5b..b3cff06 100644 --- a/doc/modelviewer_Container.js.html +++ b/doc/modelviewer_Container.js.html @@ -854,7 +854,7 @@

Source: modelviewer/Container.js

diff --git a/doc/modelviewer_Display.js.html b/doc/modelviewer_Display.js.html index 646d1c0..3a9c363 100644 --- a/doc/modelviewer_Display.js.html +++ b/doc/modelviewer_Display.js.html @@ -329,7 +329,7 @@

Source: modelviewer/Display.js

diff --git a/doc/modelviewer_NWPResources.js.html b/doc/modelviewer_NWPResources.js.html index 8b7e96a..2f69ac5 100644 --- a/doc/modelviewer_NWPResources.js.html +++ b/doc/modelviewer_NWPResources.js.html @@ -182,7 +182,7 @@

Source: modelviewer/NWPResources.js

diff --git a/doc/modelviewer_Node.js.html b/doc/modelviewer_Node.js.html index b561954..52da28a 100644 --- a/doc/modelviewer_Node.js.html +++ b/doc/modelviewer_Node.js.html @@ -397,7 +397,7 @@

Source: modelviewer/Node.js

diff --git a/doc/modelviewer_OffsetVariable.js.html b/doc/modelviewer_OffsetVariable.js.html index 9d21412..357f959 100644 --- a/doc/modelviewer_OffsetVariable.js.html +++ b/doc/modelviewer_OffsetVariable.js.html @@ -125,7 +125,7 @@

Source: modelviewer/OffsetVariable.js

diff --git a/doc/modelviewer_Resource.js.html b/doc/modelviewer_Resource.js.html index d8f05aa..05e7fe0 100644 --- a/doc/modelviewer_Resource.js.html +++ b/doc/modelviewer_Resource.js.html @@ -210,7 +210,7 @@

Source: modelviewer/Resource.js

diff --git a/doc/modelviewer_Resources.js.html b/doc/modelviewer_Resources.js.html index 0414b73..f47c10c 100644 --- a/doc/modelviewer_Resources.js.html +++ b/doc/modelviewer_Resources.js.html @@ -532,7 +532,7 @@

Source: modelviewer/Resources.js

diff --git a/doc/modelviewer_ResourcesTreeNode.js.html b/doc/modelviewer_ResourcesTreeNode.js.html index 9692c74..e228453 100644 --- a/doc/modelviewer_ResourcesTreeNode.js.html +++ b/doc/modelviewer_ResourcesTreeNode.js.html @@ -225,7 +225,7 @@

Source: modelviewer/ResourcesTreeNode.js

diff --git a/doc/modelviewer_TimeVariable.js.html b/doc/modelviewer_TimeVariable.js.html index adb5897..8399ebe 100644 --- a/doc/modelviewer_TimeVariable.js.html +++ b/doc/modelviewer_TimeVariable.js.html @@ -100,7 +100,7 @@

Source: modelviewer/TimeVariable.js

diff --git a/doc/modelviewer_Variable.js.html b/doc/modelviewer_Variable.js.html index 35542a1..ba1bc5e 100644 --- a/doc/modelviewer_Variable.js.html +++ b/doc/modelviewer_Variable.js.html @@ -91,7 +91,7 @@

Source: modelviewer/Variable.js

diff --git a/doc/modelviewer_VariableCollection.js.html b/doc/modelviewer_VariableCollection.js.html index 991b016..b800d76 100644 --- a/doc/modelviewer_VariableCollection.js.html +++ b/doc/modelviewer_VariableCollection.js.html @@ -163,7 +163,7 @@

Source: modelviewer/VariableCollection.js

diff --git a/doc/modelviewer_display_SelectNavigation.js.html b/doc/modelviewer_display_SelectNavigation.js.html index c2b5fd3..4cefb72 100644 --- a/doc/modelviewer_display_SelectNavigation.js.html +++ b/doc/modelviewer_display_SelectNavigation.js.html @@ -142,7 +142,7 @@

Source: modelviewer/display/SelectNavigation.js

diff --git a/doc/modelviewer_display_Simple.js.html b/doc/modelviewer_display_Simple.js.html index 0921244..e86d58b 100644 --- a/doc/modelviewer_display_Simple.js.html +++ b/doc/modelviewer_display_Simple.js.html @@ -132,7 +132,7 @@

Source: modelviewer/display/Simple.js

diff --git a/doc/modelviewer_resource_Image.js.html b/doc/modelviewer_resource_Image.js.html index ad6ed81..cb865ec 100644 --- a/doc/modelviewer_resource_Image.js.html +++ b/doc/modelviewer_resource_Image.js.html @@ -89,7 +89,7 @@

Source: modelviewer/resource/Image.js

diff --git a/doc/modelviewer_resource_Sounding.js.html b/doc/modelviewer_resource_Sounding.js.html index 427b22b..c4a2c79 100644 --- a/doc/modelviewer_resource_Sounding.js.html +++ b/doc/modelviewer_resource_Sounding.js.html @@ -93,7 +93,7 @@

Source: modelviewer/resource/Sounding.js

diff --git a/doc/module-meteoJS.html b/doc/module-meteoJS.html index 8d5ee73..ddfd2cd 100644 --- a/doc/module-meteoJS.html +++ b/doc/module-meteoJS.html @@ -44,7 +44,7 @@

meteoJS

diff --git a/doc/module-meteoJS_base_collection.Collection.html b/doc/module-meteoJS_base_collection.Collection.html index f8e7fa5..59487b7 100644 --- a/doc/module-meteoJS_base_collection.Collection.html +++ b/doc/module-meteoJS_base_collection.Collection.html @@ -420,7 +420,7 @@

Parameter

diff --git a/doc/module-meteoJS_base_collection.html b/doc/module-meteoJS_base_collection.html index 997e304..5e48d00 100644 --- a/doc/module-meteoJS_base_collection.html +++ b/doc/module-meteoJS_base_collection.html @@ -322,7 +322,7 @@

Parameters

diff --git a/doc/module-meteoJS_base_named.Named.html b/doc/module-meteoJS_base_named.Named.html index 84b998d..0f6f204 100644 --- a/doc/module-meteoJS_base_named.Named.html +++ b/doc/module-meteoJS_base_named.Named.html @@ -315,7 +315,7 @@

Parameters

diff --git a/doc/module-meteoJS_base_named.html b/doc/module-meteoJS_base_named.html index 12fb195..5360955 100644 --- a/doc/module-meteoJS_base_named.html +++ b/doc/module-meteoJS_base_named.html @@ -146,7 +146,7 @@

Properties

diff --git a/doc/module-meteoJS_base_namedCollection.NamedCollection.html b/doc/module-meteoJS_base_namedCollection.NamedCollection.html index f9a5ce5..9dbf681 100644 --- a/doc/module-meteoJS_base_namedCollection.NamedCollection.html +++ b/doc/module-meteoJS_base_namedCollection.NamedCollection.html @@ -646,7 +646,7 @@

Parameters

diff --git a/doc/module-meteoJS_base_namedCollection.html b/doc/module-meteoJS_base_namedCollection.html index 9579dba..bf79631 100644 --- a/doc/module-meteoJS_base_namedCollection.html +++ b/doc/module-meteoJS_base_namedCollection.html @@ -146,7 +146,7 @@

Properties

diff --git a/doc/module-meteoJS_base_unique.Unique.html b/doc/module-meteoJS_base_unique.Unique.html index 907daf4..1509d9f 100644 --- a/doc/module-meteoJS_base_unique.Unique.html +++ b/doc/module-meteoJS_base_unique.Unique.html @@ -156,7 +156,7 @@

Parameter

diff --git a/doc/module-meteoJS_base_unique.html b/doc/module-meteoJS_base_unique.html index cc86548..af98340 100644 --- a/doc/module-meteoJS_base_unique.html +++ b/doc/module-meteoJS_base_unique.html @@ -118,7 +118,7 @@

Property

diff --git a/doc/module-meteoJS_base_uniquenamed.UniqueNamed.html b/doc/module-meteoJS_base_uniquenamed.UniqueNamed.html index 63197f0..ca50c13 100644 --- a/doc/module-meteoJS_base_uniquenamed.UniqueNamed.html +++ b/doc/module-meteoJS_base_uniquenamed.UniqueNamed.html @@ -342,7 +342,7 @@

Parameters

diff --git a/doc/module-meteoJS_base_uniquenamed.html b/doc/module-meteoJS_base_uniquenamed.html index ed23e1b..7ff357c 100644 --- a/doc/module-meteoJS_base_uniquenamed.html +++ b/doc/module-meteoJS_base_uniquenamed.html @@ -118,7 +118,7 @@

Property

diff --git a/doc/module-meteoJS_calc.html b/doc/module-meteoJS_calc.html index 8bb52d0..2c84ffe 100644 --- a/doc/module-meteoJS_calc.html +++ b/doc/module-meteoJS_calc.html @@ -1319,7 +1319,7 @@

Parameter

diff --git a/doc/module-meteoJS_events.html b/doc/module-meteoJS_events.html index c6462da..250d7ad 100644 --- a/doc/module-meteoJS_events.html +++ b/doc/module-meteoJS_events.html @@ -363,7 +363,7 @@

Parameters

diff --git a/doc/module-meteoJS_modelviewer.Modelviewer.html b/doc/module-meteoJS_modelviewer.Modelviewer.html index 8943f30..e9e1b33 100644 --- a/doc/module-meteoJS_modelviewer.Modelviewer.html +++ b/doc/module-meteoJS_modelviewer.Modelviewer.html @@ -210,7 +210,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer.html b/doc/module-meteoJS_modelviewer.html index 324a2fa..78a764e 100644 --- a/doc/module-meteoJS_modelviewer.html +++ b/doc/module-meteoJS_modelviewer.html @@ -238,7 +238,7 @@

Parameters

diff --git a/doc/module-meteoJS_modelviewer_container.Container.html b/doc/module-meteoJS_modelviewer_container.Container.html index ec57ef6..2610773 100644 --- a/doc/module-meteoJS_modelviewer_container.Container.html +++ b/doc/module-meteoJS_modelviewer_container.Container.html @@ -403,7 +403,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_container.html b/doc/module-meteoJS_modelviewer_container.html index c3d8c5f..fbe92d7 100644 --- a/doc/module-meteoJS_modelviewer_container.html +++ b/doc/module-meteoJS_modelviewer_container.html @@ -621,7 +621,7 @@

change:visibleRe
diff --git a/doc/module-meteoJS_modelviewer_display.Display.html b/doc/module-meteoJS_modelviewer_display.Display.html index 11aac6f..8e80819 100644 --- a/doc/module-meteoJS_modelviewer_display.Display.html +++ b/doc/module-meteoJS_modelviewer_display.Display.html @@ -229,7 +229,7 @@

render<
diff --git a/doc/module-meteoJS_modelviewer_display.html b/doc/module-meteoJS_modelviewer_display.html index 87d8ea9..b22f785 100644 --- a/doc/module-meteoJS_modelviewer_display.html +++ b/doc/module-meteoJS_modelviewer_display.html @@ -174,7 +174,7 @@

init:display

diff --git a/doc/module-meteoJS_modelviewer_display_selectNavigation.SelectNavigation.html b/doc/module-meteoJS_modelviewer_display_selectNavigation.SelectNavigation.html index 282c65a..3db9464 100644 --- a/doc/module-meteoJS_modelviewer_display_selectNavigation.SelectNavigation.html +++ b/doc/module-meteoJS_modelviewer_display_selectNavigation.SelectNavigation.html @@ -69,7 +69,7 @@

onInit<
diff --git a/doc/module-meteoJS_modelviewer_display_selectNavigation.html b/doc/module-meteoJS_modelviewer_display_selectNavigation.html index cede8ac..7841554 100644 --- a/doc/module-meteoJS_modelviewer_display_selectNavigation.html +++ b/doc/module-meteoJS_modelviewer_display_selectNavigation.html @@ -64,7 +64,7 @@

diff --git a/doc/module-meteoJS_modelviewer_display_simple.Simple.html b/doc/module-meteoJS_modelviewer_display_simple.Simple.html index deef0a3..082e52b 100644 --- a/doc/module-meteoJS_modelviewer_display_simple.Simple.html +++ b/doc/module-meteoJS_modelviewer_display_simple.Simple.html @@ -106,7 +106,7 @@

onInit<
diff --git a/doc/module-meteoJS_modelviewer_display_simple.html b/doc/module-meteoJS_modelviewer_display_simple.html index 985eb31..6991886 100644 --- a/doc/module-meteoJS_modelviewer_display_simple.html +++ b/doc/module-meteoJS_modelviewer_display_simple.html @@ -64,7 +64,7 @@

Simple diff --git a/doc/module-meteoJS_modelviewer_node.Node.html b/doc/module-meteoJS_modelviewer_node.Node.html index 5f943cb..0cc2249 100644 --- a/doc/module-meteoJS_modelviewer_node.Node.html +++ b/doc/module-meteoJS_modelviewer_node.Node.html @@ -440,7 +440,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_node.html b/doc/module-meteoJS_modelviewer_node.html index b028ef0..e2461c1 100644 --- a/doc/module-meteoJS_modelviewer_node.html +++ b/doc/module-meteoJS_modelviewer_node.html @@ -116,7 +116,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_nwpResources.NWPResources.html b/doc/module-meteoJS_modelviewer_nwpResources.NWPResources.html index b296ecd..b565588 100644 --- a/doc/module-meteoJS_modelviewer_nwpResources.NWPResources.html +++ b/doc/module-meteoJS_modelviewer_nwpResources.NWPResources.html @@ -287,7 +287,7 @@

Parameters

diff --git a/doc/module-meteoJS_modelviewer_nwpResources.html b/doc/module-meteoJS_modelviewer_nwpResources.html index f5ea4f1..de56816 100644 --- a/doc/module-meteoJS_modelviewer_nwpResources.html +++ b/doc/module-meteoJS_modelviewer_nwpResources.html @@ -64,7 +64,7 @@

NWPResou diff --git a/doc/module-meteoJS_modelviewer_offsetVariable.OffsetVariable.html b/doc/module-meteoJS_modelviewer_offsetVariable.OffsetVariable.html index a15407a..72fa857 100644 --- a/doc/module-meteoJS_modelviewer_offsetVariable.OffsetVariable.html +++ b/doc/module-meteoJS_modelviewer_offsetVariable.OffsetVariable.html @@ -128,7 +128,7 @@

run
diff --git a/doc/module-meteoJS_modelviewer_offsetVariable.html b/doc/module-meteoJS_modelviewer_offsetVariable.html index 1853f7d..855a1bc 100644 --- a/doc/module-meteoJS_modelviewer_offsetVariable.html +++ b/doc/module-meteoJS_modelviewer_offsetVariable.html @@ -132,7 +132,7 @@

Parameters

diff --git a/doc/module-meteoJS_modelviewer_resource.Resource.html b/doc/module-meteoJS_modelviewer_resource.Resource.html index 3d7b1af..09a1784 100644 --- a/doc/module-meteoJS_modelviewer_resource.Resource.html +++ b/doc/module-meteoJS_modelviewer_resource.Resource.html @@ -310,7 +310,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_resource.html b/doc/module-meteoJS_modelviewer_resource.html index 38df8ad..0e033fc 100644 --- a/doc/module-meteoJS_modelviewer_resource.html +++ b/doc/module-meteoJS_modelviewer_resource.html @@ -161,7 +161,7 @@

Parameters

diff --git a/doc/module-meteoJS_modelviewer_resource_image.Image.html b/doc/module-meteoJS_modelviewer_resource_image.Image.html index 1a0ea98..86c3b86 100644 --- a/doc/module-meteoJS_modelviewer_resource_image.Image.html +++ b/doc/module-meteoJS_modelviewer_resource_image.Image.html @@ -103,7 +103,7 @@

url
diff --git a/doc/module-meteoJS_modelviewer_resource_image.html b/doc/module-meteoJS_modelviewer_resource_image.html index 186ca83..804717c 100644 --- a/doc/module-meteoJS_modelviewer_resource_image.html +++ b/doc/module-meteoJS_modelviewer_resource_image.html @@ -118,7 +118,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_resource_sounding.Sounding.html b/doc/module-meteoJS_modelviewer_resource_sounding.Sounding.html index 5152cdc..8981eee 100644 --- a/doc/module-meteoJS_modelviewer_resource_sounding.Sounding.html +++ b/doc/module-meteoJS_modelviewer_resource_sounding.Sounding.html @@ -103,7 +103,7 @@

sounding diff --git a/doc/module-meteoJS_modelviewer_resource_sounding.html b/doc/module-meteoJS_modelviewer_resource_sounding.html index 65c50f7..8ba42a7 100644 --- a/doc/module-meteoJS_modelviewer_resource_sounding.html +++ b/doc/module-meteoJS_modelviewer_resource_sounding.html @@ -118,7 +118,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_resources.Resources.html b/doc/module-meteoJS_modelviewer_resources.Resources.html index 918c1b7..37cbbd8 100644 --- a/doc/module-meteoJS_modelviewer_resources.Resources.html +++ b/doc/module-meteoJS_modelviewer_resources.Resources.html @@ -601,7 +601,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_resources.html b/doc/module-meteoJS_modelviewer_resources.html index f5436d1..eb64d70 100644 --- a/doc/module-meteoJS_modelviewer_resources.html +++ b/doc/module-meteoJS_modelviewer_resources.html @@ -201,7 +201,7 @@

Properties

diff --git a/doc/module-meteoJS_modelviewer_resourcesTreeNode.ResourcesTreeNode.html b/doc/module-meteoJS_modelviewer_resourcesTreeNode.ResourcesTreeNode.html index 93bc5aa..ea997b6 100644 --- a/doc/module-meteoJS_modelviewer_resourcesTreeNode.ResourcesTreeNode.html +++ b/doc/module-meteoJS_modelviewer_resourcesTreeNode.ResourcesTreeNode.html @@ -328,7 +328,7 @@

removeChild diff --git a/doc/module-meteoJS_modelviewer_resourcesTreeNode.html b/doc/module-meteoJS_modelviewer_resourcesTreeNode.html index 3331c50..e3ddf35 100644 --- a/doc/module-meteoJS_modelviewer_resourcesTreeNode.html +++ b/doc/module-meteoJS_modelviewer_resourcesTreeNode.html @@ -118,7 +118,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_timeVariable.TimeVariable.html b/doc/module-meteoJS_modelviewer_timeVariable.TimeVariable.html index 2cee2e5..f551566 100644 --- a/doc/module-meteoJS_modelviewer_timeVariable.TimeVariable.html +++ b/doc/module-meteoJS_modelviewer_timeVariable.TimeVariable.html @@ -124,7 +124,7 @@

setId diff --git a/doc/module-meteoJS_modelviewer_timeVariable.html b/doc/module-meteoJS_modelviewer_timeVariable.html index d147b06..d7c8e77 100644 --- a/doc/module-meteoJS_modelviewer_timeVariable.html +++ b/doc/module-meteoJS_modelviewer_timeVariable.html @@ -118,7 +118,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_variable.Variable.html b/doc/module-meteoJS_modelviewer_variable.Variable.html index 750a7ac..39cdb7b 100644 --- a/doc/module-meteoJS_modelviewer_variable.Variable.html +++ b/doc/module-meteoJS_modelviewer_variable.Variable.html @@ -103,7 +103,7 @@

variableCollection<
diff --git a/doc/module-meteoJS_modelviewer_variable.html b/doc/module-meteoJS_modelviewer_variable.html index 0f3bff5..f7b896a 100644 --- a/doc/module-meteoJS_modelviewer_variable.html +++ b/doc/module-meteoJS_modelviewer_variable.html @@ -118,7 +118,7 @@

Parameter

diff --git a/doc/module-meteoJS_modelviewer_variableCollection.VariableCollection.html b/doc/module-meteoJS_modelviewer_variableCollection.VariableCollection.html index 2e1ccff..9fc4973 100644 --- a/doc/module-meteoJS_modelviewer_variableCollection.VariableCollection.html +++ b/doc/module-meteoJS_modelviewer_variableCollection.VariableCollection.html @@ -198,7 +198,7 @@

setId diff --git a/doc/module-meteoJS_modelviewer_variableCollection.html b/doc/module-meteoJS_modelviewer_variableCollection.html index 7e62126..3a572ed 100644 --- a/doc/module-meteoJS_modelviewer_variableCollection.html +++ b/doc/module-meteoJS_modelviewer_variableCollection.html @@ -179,7 +179,7 @@

Parameter

diff --git a/doc/module-meteoJS_repetitiveRequests.RepetitiveRequests.html b/doc/module-meteoJS_repetitiveRequests.RepetitiveRequests.html index 5b69445..12caf3b 100644 --- a/doc/module-meteoJS_repetitiveRequests.RepetitiveRequests.html +++ b/doc/module-meteoJS_repetitiveRequests.RepetitiveRequests.html @@ -169,7 +169,7 @@

stop diff --git a/doc/module-meteoJS_repetitiveRequests.html b/doc/module-meteoJS_repetitiveRequests.html index 889f623..0d377cb 100644 --- a/doc/module-meteoJS_repetitiveRequests.html +++ b/doc/module-meteoJS_repetitiveRequests.html @@ -326,7 +326,7 @@

Property

diff --git a/doc/module-meteoJS_sounding.Sounding.html b/doc/module-meteoJS_sounding.Sounding.html index e8194e8..64abc03 100644 --- a/doc/module-meteoJS_sounding.Sounding.html +++ b/doc/module-meteoJS_sounding.Sounding.html @@ -403,7 +403,7 @@

Parameter

diff --git a/doc/module-meteoJS_sounding.html b/doc/module-meteoJS_sounding.html index d26406c..16420dc 100644 --- a/doc/module-meteoJS_sounding.html +++ b/doc/module-meteoJS_sounding.html @@ -347,7 +347,7 @@

Parameter

diff --git a/doc/module-meteoJS_sounding_parcel.Parcel.html b/doc/module-meteoJS_sounding_parcel.Parcel.html index 499b47d..a65c81f 100644 --- a/doc/module-meteoJS_sounding_parcel.Parcel.html +++ b/doc/module-meteoJS_sounding_parcel.Parcel.html @@ -502,7 +502,7 @@

Parameter

diff --git a/doc/module-meteoJS_sounding_parcel.html b/doc/module-meteoJS_sounding_parcel.html index 2b6d1f6..0fb8011 100644 --- a/doc/module-meteoJS_sounding_parcel.html +++ b/doc/module-meteoJS_sounding_parcel.html @@ -706,7 +706,7 @@

Parameters

diff --git a/doc/module-meteoJS_synview.html b/doc/module-meteoJS_synview.html index 9a55354..85cc8bb 100644 --- a/doc/module-meteoJS_synview.html +++ b/doc/module-meteoJS_synview.html @@ -301,7 +301,7 @@

Parameters

diff --git a/doc/module-meteoJS_synview_collection.Collection.html b/doc/module-meteoJS_synview_collection.Collection.html index afefee0..946413a 100644 --- a/doc/module-meteoJS_synview_collection.Collection.html +++ b/doc/module-meteoJS_synview_collection.Collection.html @@ -309,7 +309,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_collection.html b/doc/module-meteoJS_synview_collection.html index c7dd211..50b4833 100644 --- a/doc/module-meteoJS_synview_collection.html +++ b/doc/module-meteoJS_synview_collection.html @@ -206,7 +206,7 @@

Parameters

diff --git a/doc/module-meteoJS_synview_map.SynviewMap.html b/doc/module-meteoJS_synview_map.SynviewMap.html index 727509e..58f3cec 100644 --- a/doc/module-meteoJS_synview_map.SynviewMap.html +++ b/doc/module-meteoJS_synview_map.SynviewMap.html @@ -342,7 +342,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_map.html b/doc/module-meteoJS_synview_map.html index 807d72a..daaa79c 100644 --- a/doc/module-meteoJS_synview_map.html +++ b/doc/module-meteoJS_synview_map.html @@ -278,7 +278,7 @@

singleclick:pointer
diff --git a/doc/module-meteoJS_synview_map_ll.MapLL.html b/doc/module-meteoJS_synview_map_ll.MapLL.html index 547c925..e6a0c4f 100644 --- a/doc/module-meteoJS_synview_map_ll.MapLL.html +++ b/doc/module-meteoJS_synview_map_ll.MapLL.html @@ -328,7 +328,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_map_ll.html b/doc/module-meteoJS_synview_map_ll.html index a9548aa..d0cac49 100644 --- a/doc/module-meteoJS_synview_map_ll.html +++ b/doc/module-meteoJS_synview_map_ll.html @@ -64,7 +64,7 @@

MapLL

diff --git a/doc/module-meteoJS_synview_map_ol.MapOL.html b/doc/module-meteoJS_synview_map_ol.MapOL.html index 2226f7a..c2ac991 100644 --- a/doc/module-meteoJS_synview_map_ol.MapOL.html +++ b/doc/module-meteoJS_synview_map_ol.MapOL.html @@ -308,7 +308,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_map_ol.html b/doc/module-meteoJS_synview_map_ol.html index 2a3601b..465e997 100644 --- a/doc/module-meteoJS_synview_map_ol.html +++ b/doc/module-meteoJS_synview_map_ol.html @@ -100,7 +100,7 @@

projwgs84 diff --git a/doc/module-meteoJS_synview_resource.Resource.html b/doc/module-meteoJS_synview_resource.Resource.html index 878508c..906d078 100644 --- a/doc/module-meteoJS_synview_resource.Resource.html +++ b/doc/module-meteoJS_synview_resource.Resource.html @@ -491,7 +491,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_resource.html b/doc/module-meteoJS_synview_resource.html index b7a1c0c..4bc7045 100644 --- a/doc/module-meteoJS_synview_resource.html +++ b/doc/module-meteoJS_synview_resource.html @@ -260,7 +260,7 @@

Parameters

diff --git a/doc/module-meteoJS_synview_resourceCollection.ResourceCollection.html b/doc/module-meteoJS_synview_resourceCollection.ResourceCollection.html index 777cdf3..de2ccfd 100644 --- a/doc/module-meteoJS_synview_resourceCollection.ResourceCollection.html +++ b/doc/module-meteoJS_synview_resourceCollection.ResourceCollection.html @@ -517,7 +517,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_resourceCollection.html b/doc/module-meteoJS_synview_resourceCollection.html index 859c4d1..99b159c 100644 --- a/doc/module-meteoJS_synview_resourceCollection.html +++ b/doc/module-meteoJS_synview_resourceCollection.html @@ -64,7 +64,7 @@

diff --git a/doc/module-meteoJS_synview_resource_GeoJSON.GeoJSON.html b/doc/module-meteoJS_synview_resource_GeoJSON.GeoJSON.html index 76e4983..7be045a 100644 --- a/doc/module-meteoJS_synview_resource_GeoJSON.GeoJSON.html +++ b/doc/module-meteoJS_synview_resource_GeoJSON.GeoJSON.html @@ -549,7 +549,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_resource_GeoJSON.html b/doc/module-meteoJS_synview_resource_GeoJSON.html index 5d2d38f..a7003c8 100644 --- a/doc/module-meteoJS_synview_resource_GeoJSON.html +++ b/doc/module-meteoJS_synview_resource_GeoJSON.html @@ -64,7 +64,7 @@

GeoJSON diff --git a/doc/module-meteoJS_synview_resource_GeoJSONTile.GeoJSONTile.html b/doc/module-meteoJS_synview_resource_GeoJSONTile.GeoJSONTile.html index eb6193c..58eb0b2 100644 --- a/doc/module-meteoJS_synview_resource_GeoJSONTile.GeoJSONTile.html +++ b/doc/module-meteoJS_synview_resource_GeoJSONTile.GeoJSONTile.html @@ -81,7 +81,7 @@

makeOLLayer diff --git a/doc/module-meteoJS_synview_resource_GeoJSONTile.html b/doc/module-meteoJS_synview_resource_GeoJSONTile.html index 97691ea..643a92f 100644 --- a/doc/module-meteoJS_synview_resource_GeoJSONTile.html +++ b/doc/module-meteoJS_synview_resource_GeoJSONTile.html @@ -64,7 +64,7 @@

GeoJS diff --git a/doc/module-meteoJS_synview_resource_Image.ImageStatic.html b/doc/module-meteoJS_synview_resource_Image.ImageStatic.html index ff25713..911c263 100644 --- a/doc/module-meteoJS_synview_resource_Image.ImageStatic.html +++ b/doc/module-meteoJS_synview_resource_Image.ImageStatic.html @@ -538,7 +538,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_resource_Image.html b/doc/module-meteoJS_synview_resource_Image.html index afdd491..81d725a 100644 --- a/doc/module-meteoJS_synview_resource_Image.html +++ b/doc/module-meteoJS_synview_resource_Image.html @@ -118,7 +118,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_resource_OSM.OSM.html b/doc/module-meteoJS_synview_resource_OSM.OSM.html index 1e52e73..2c1af06 100644 --- a/doc/module-meteoJS_synview_resource_OSM.OSM.html +++ b/doc/module-meteoJS_synview_resource_OSM.OSM.html @@ -506,7 +506,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_resource_OSM.html b/doc/module-meteoJS_synview_resource_OSM.html index 80dd0aa..a72e334 100644 --- a/doc/module-meteoJS_synview_resource_OSM.html +++ b/doc/module-meteoJS_synview_resource_OSM.html @@ -64,7 +64,7 @@

OSM

diff --git a/doc/module-meteoJS_synview_resource_Vector.Vector.html b/doc/module-meteoJS_synview_resource_Vector.Vector.html index 3fb58fd..06b91cd 100644 --- a/doc/module-meteoJS_synview_resource_Vector.Vector.html +++ b/doc/module-meteoJS_synview_resource_Vector.Vector.html @@ -547,7 +547,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_resource_Vector.html b/doc/module-meteoJS_synview_resource_Vector.html index ee17add..f5b9b93 100644 --- a/doc/module-meteoJS_synview_resource_Vector.html +++ b/doc/module-meteoJS_synview_resource_Vector.html @@ -64,7 +64,7 @@

Vector

diff --git a/doc/module-meteoJS_synview_resource_VectorTile.VectorTile.html b/doc/module-meteoJS_synview_resource_VectorTile.VectorTile.html index 613dc4e..a7c9809 100644 --- a/doc/module-meteoJS_synview_resource_VectorTile.VectorTile.html +++ b/doc/module-meteoJS_synview_resource_VectorTile.VectorTile.html @@ -79,7 +79,7 @@

makeOLLayer diff --git a/doc/module-meteoJS_synview_resource_VectorTile.html b/doc/module-meteoJS_synview_resource_VectorTile.html index 3cfa352..a89c020 100644 --- a/doc/module-meteoJS_synview_resource_VectorTile.html +++ b/doc/module-meteoJS_synview_resource_VectorTile.html @@ -64,7 +64,7 @@

VectorT diff --git a/doc/module-meteoJS_synview_tooltip.Tooltip.html b/doc/module-meteoJS_synview_tooltip.Tooltip.html index 6c19e91..e1d4c38 100644 --- a/doc/module-meteoJS_synview_tooltip.Tooltip.html +++ b/doc/module-meteoJS_synview_tooltip.Tooltip.html @@ -80,7 +80,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_tooltip.html b/doc/module-meteoJS_synview_tooltip.html index d48cfe2..24ede61 100644 --- a/doc/module-meteoJS_synview_tooltip.html +++ b/doc/module-meteoJS_synview_tooltip.html @@ -191,7 +191,7 @@

Parameters

diff --git a/doc/module-meteoJS_synview_type.Type.html b/doc/module-meteoJS_synview_type.Type.html index b7a6b4f..cc491e7 100644 --- a/doc/module-meteoJS_synview_type.Type.html +++ b/doc/module-meteoJS_synview_type.Type.html @@ -619,7 +619,7 @@

Parameter

diff --git a/doc/module-meteoJS_synview_type.html b/doc/module-meteoJS_synview_type.html index dca381a..0446649 100644 --- a/doc/module-meteoJS_synview_type.html +++ b/doc/module-meteoJS_synview_type.html @@ -340,7 +340,7 @@

change:visible diff --git a/doc/module-meteoJS_synview_typeCollection.TypeCollection.html b/doc/module-meteoJS_synview_typeCollection.TypeCollection.html index ad06427..543419a 100644 --- a/doc/module-meteoJS_synview_typeCollection.TypeCollection.html +++ b/doc/module-meteoJS_synview_typeCollection.TypeCollection.html @@ -400,7 +400,7 @@

setSyncVisibility diff --git a/doc/module-meteoJS_synview_typeCollection.html b/doc/module-meteoJS_synview_typeCollection.html index 8c4e777..4faff35 100644 --- a/doc/module-meteoJS_synview_typeCollection.html +++ b/doc/module-meteoJS_synview_typeCollection.html @@ -133,7 +133,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram.ThermodynamicDiagram.html b/doc/module-meteoJS_thermodynamicDiagram.ThermodynamicDiagram.html index 2b54460..bd6020b 100644 --- a/doc/module-meteoJS_thermodynamicDiagram.ThermodynamicDiagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram.ThermodynamicDiagram.html @@ -664,7 +664,7 @@

Parameter

diff --git a/doc/module-meteoJS_thermodynamicDiagram.html b/doc/module-meteoJS_thermodynamicDiagram.html index b198cf9..de63f3f 100644 --- a/doc/module-meteoJS_thermodynamicDiagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram.html @@ -623,7 +623,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagramPluggable.ThermodynamicDiagramPluggable.html b/doc/module-meteoJS_thermodynamicDiagramPluggable.ThermodynamicDiagramPluggable.html index da24279..f4a6646 100644 --- a/doc/module-meteoJS_thermodynamicDiagramPluggable.ThermodynamicDiagramPluggable.html +++ b/doc/module-meteoJS_thermodynamicDiagramPluggable.ThermodynamicDiagramPluggable.html @@ -632,7 +632,7 @@

Parameter

diff --git a/doc/module-meteoJS_thermodynamicDiagramPluggable.html b/doc/module-meteoJS_thermodynamicDiagramPluggable.html index 3d01189..41d1582 100644 --- a/doc/module-meteoJS_thermodynamicDiagramPluggable.html +++ b/doc/module-meteoJS_thermodynamicDiagramPluggable.html @@ -146,7 +146,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_axes_windspeedProfileAxis.WindspeedProfileAxis.html b/doc/module-meteoJS_thermodynamicDiagram_axes_windspeedProfileAxis.WindspeedProfileAxis.html index c78502c..96e57b8 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_axes_windspeedProfileAxis.WindspeedProfileAxis.html +++ b/doc/module-meteoJS_thermodynamicDiagram_axes_windspeedProfileAxis.WindspeedProfileAxis.html @@ -534,7 +534,7 @@

onCoordinateSystemCh
diff --git a/doc/module-meteoJS_thermodynamicDiagram_axes_windspeedProfileAxis.html b/doc/module-meteoJS_thermodynamicDiagram_axes_windspeedProfileAxis.html index caf2db3..574505b 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_axes_windspeedProfileAxis.html +++ b/doc/module-meteoJS_thermodynamicDiagram_axes_windspeedProfileAxis.html @@ -204,7 +204,7 @@

Properties

diff --git a/doc/module-meteoJS_thermodynamicDiagram_axes_xAxis.html b/doc/module-meteoJS_thermodynamicDiagram_axes_xAxis.html index 1a8e601..5a95fb5 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_axes_xAxis.html +++ b/doc/module-meteoJS_thermodynamicDiagram_axes_xAxis.html @@ -134,7 +134,7 @@

Properties

diff --git a/doc/module-meteoJS_thermodynamicDiagram_axes_xAxis.xAxis.html b/doc/module-meteoJS_thermodynamicDiagram_axes_xAxis.xAxis.html index 97b64ce..1389467 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_axes_xAxis.xAxis.html +++ b/doc/module-meteoJS_thermodynamicDiagram_axes_xAxis.xAxis.html @@ -494,7 +494,7 @@

onCoordinateSystemCh
diff --git a/doc/module-meteoJS_thermodynamicDiagram_axes_yAxis.html b/doc/module-meteoJS_thermodynamicDiagram_axes_yAxis.html index 611580f..72b952e 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_axes_yAxis.html +++ b/doc/module-meteoJS_thermodynamicDiagram_axes_yAxis.html @@ -173,7 +173,7 @@

Property

diff --git a/doc/module-meteoJS_thermodynamicDiagram_axes_yAxis.yAxis.html b/doc/module-meteoJS_thermodynamicDiagram_axes_yAxis.yAxis.html index f982b9b..ea9c1aa 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_axes_yAxis.yAxis.html +++ b/doc/module-meteoJS_thermodynamicDiagram_axes_yAxis.yAxis.html @@ -523,7 +523,7 @@

onCoordinateSystemCh
diff --git a/doc/module-meteoJS_thermodynamicDiagram_axis.Axis.html b/doc/module-meteoJS_thermodynamicDiagram_axis.Axis.html index 93bf64d..784bb47 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_axis.Axis.html +++ b/doc/module-meteoJS_thermodynamicDiagram_axis.Axis.html @@ -521,7 +521,7 @@

onCoordinateSystemCh
diff --git a/doc/module-meteoJS_thermodynamicDiagram_axis.html b/doc/module-meteoJS_thermodynamicDiagram_axis.html index f361366..93f596d 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_axis.html +++ b/doc/module-meteoJS_thermodynamicDiagram_axis.html @@ -329,7 +329,7 @@

Property

diff --git a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem.CoordinateSystem.html b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem.CoordinateSystem.html index e897585..8ee7847 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem.CoordinateSystem.html +++ b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem.CoordinateSystem.html @@ -1374,7 +1374,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem.html b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem.html index d183937..5786a4f 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem.html +++ b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem.html @@ -330,7 +330,7 @@

change:options diff --git a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_emagram.Emagram.html b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_emagram.Emagram.html index 5bd0bd4..a4d8641 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_emagram.Emagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_emagram.Emagram.html @@ -1394,7 +1394,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_emagram.html b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_emagram.html index c54b7aa..573c133 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_emagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_emagram.html @@ -64,7 +64,7 @@

diff --git a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_skewTlogPDiagram.SkewTlogPDiagram.html b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_skewTlogPDiagram.SkewTlogPDiagram.html index 290188b..46e0cf0 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_skewTlogPDiagram.SkewTlogPDiagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_skewTlogPDiagram.SkewTlogPDiagram.html @@ -1391,7 +1391,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_skewTlogPDiagram.html b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_skewTlogPDiagram.html index 5014ef3..e1a400f 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_skewTlogPDiagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_skewTlogPDiagram.html @@ -64,7 +64,7 @@

diff --git a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_stueveDiagram.StueveDiagram.html b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_stueveDiagram.StueveDiagram.html index 82f04dd..93f77cb 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_stueveDiagram.StueveDiagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_stueveDiagram.StueveDiagram.html @@ -1397,7 +1397,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_stueveDiagram.html b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_stueveDiagram.html index 1379964..c81b4fc 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_stueveDiagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram_coordinateSystem_stueveDiagram.html @@ -64,7 +64,7 @@

diff --git a/doc/module-meteoJS_thermodynamicDiagram_diagramParcel.DiagramParcel.html b/doc/module-meteoJS_thermodynamicDiagram_diagramParcel.DiagramParcel.html index 98ad3d0..379f159 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_diagramParcel.DiagramParcel.html +++ b/doc/module-meteoJS_thermodynamicDiagram_diagramParcel.DiagramParcel.html @@ -237,7 +237,7 @@

Parameter

diff --git a/doc/module-meteoJS_thermodynamicDiagram_diagramParcel.html b/doc/module-meteoJS_thermodynamicDiagram_diagramParcel.html index c41746e..c16a903 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_diagramParcel.html +++ b/doc/module-meteoJS_thermodynamicDiagram_diagramParcel.html @@ -263,7 +263,7 @@

change:visible diff --git a/doc/module-meteoJS_thermodynamicDiagram_diagramSounding.DiagramSounding.html b/doc/module-meteoJS_thermodynamicDiagram_diagramSounding.DiagramSounding.html index ba2b184..750f004 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_diagramSounding.DiagramSounding.html +++ b/doc/module-meteoJS_thermodynamicDiagram_diagramSounding.DiagramSounding.html @@ -348,7 +348,7 @@

Parameter

diff --git a/doc/module-meteoJS_thermodynamicDiagram_diagramSounding.html b/doc/module-meteoJS_thermodynamicDiagram_diagramSounding.html index 7b6c26f..4df2f9b 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_diagramSounding.html +++ b/doc/module-meteoJS_thermodynamicDiagram_diagramSounding.html @@ -533,7 +533,7 @@

change:visible diff --git a/doc/module-meteoJS_thermodynamicDiagram_functions.html b/doc/module-meteoJS_thermodynamicDiagram_functions.html index 4d79815..c22bfa6 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_functions.html +++ b/doc/module-meteoJS_thermodynamicDiagram_functions.html @@ -651,7 +651,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_hodograph.Hodograph.html b/doc/module-meteoJS_thermodynamicDiagram_hodograph.Hodograph.html index a0c9b9f..5cfe96c 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_hodograph.Hodograph.html +++ b/doc/module-meteoJS_thermodynamicDiagram_hodograph.Hodograph.html @@ -735,7 +735,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_hodograph.html b/doc/module-meteoJS_thermodynamicDiagram_hodograph.html index ebd8c9a..a92603c 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_hodograph.html +++ b/doc/module-meteoJS_thermodynamicDiagram_hodograph.html @@ -746,7 +746,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_plotAltitudeDataArea.PlotAltitudeDataArea.html b/doc/module-meteoJS_thermodynamicDiagram_plotAltitudeDataArea.PlotAltitudeDataArea.html index 1e4b705..2123a18 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_plotAltitudeDataArea.PlotAltitudeDataArea.html +++ b/doc/module-meteoJS_thermodynamicDiagram_plotAltitudeDataArea.PlotAltitudeDataArea.html @@ -30,7 +30,7 @@

Abstract class to define an area on the SVG with sounding data, plotted with pressure on the y-axis.

-
import PlotAltitudeArea from 'meteojs/thermodynamicDiagram/PlotAltitudeArea';
+
import PlotAltitudeDataArea from 'meteojs/thermodynamicDiagram/PlotAltitudeDataArea';
@@ -701,7 +701,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_plotAltitudeDataArea.html b/doc/module-meteoJS_thermodynamicDiagram_plotAltitudeDataArea.html index 0cde1cd..4d54034 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_plotAltitudeDataArea.html +++ b/doc/module-meteoJS_thermodynamicDiagram_plotAltitudeDataArea.html @@ -160,7 +160,7 @@

Property

diff --git a/doc/module-meteoJS_thermodynamicDiagram_plotArea.PlotArea.html b/doc/module-meteoJS_thermodynamicDiagram_plotArea.PlotArea.html index 835ce66..438d466 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_plotArea.PlotArea.html +++ b/doc/module-meteoJS_thermodynamicDiagram_plotArea.PlotArea.html @@ -408,7 +408,7 @@

onCoordinateSystemCh
diff --git a/doc/module-meteoJS_thermodynamicDiagram_plotArea.html b/doc/module-meteoJS_thermodynamicDiagram_plotArea.html index dfdaf2d..d70cf50 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_plotArea.html +++ b/doc/module-meteoJS_thermodynamicDiagram_plotArea.html @@ -657,7 +657,7 @@

prebuild:background
diff --git a/doc/module-meteoJS_thermodynamicDiagram_plotDataArea.PlotDataArea.html b/doc/module-meteoJS_thermodynamicDiagram_plotDataArea.PlotDataArea.html index a0316f1..ad780e3 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_plotDataArea.PlotDataArea.html +++ b/doc/module-meteoJS_thermodynamicDiagram_plotDataArea.PlotDataArea.html @@ -722,7 +722,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_plotDataArea.html b/doc/module-meteoJS_thermodynamicDiagram_plotDataArea.html index d61d752..098b572 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_plotDataArea.html +++ b/doc/module-meteoJS_thermodynamicDiagram_plotDataArea.html @@ -1065,7 +1065,7 @@

remove:sounding<
diff --git a/doc/module-meteoJS_thermodynamicDiagram_tdDiagram.TDDiagram.html b/doc/module-meteoJS_thermodynamicDiagram_tdDiagram.TDDiagram.html index 7a31680..c745d9c 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_tdDiagram.TDDiagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram_tdDiagram.TDDiagram.html @@ -946,7 +946,7 @@

Parameter

diff --git a/doc/module-meteoJS_thermodynamicDiagram_tdDiagram.html b/doc/module-meteoJS_thermodynamicDiagram_tdDiagram.html index b8ea940..aae371c 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_tdDiagram.html +++ b/doc/module-meteoJS_thermodynamicDiagram_tdDiagram.html @@ -894,7 +894,7 @@

touchstart diff --git a/doc/module-meteoJS_thermodynamicDiagram_windbarbsProfile.WindbarbsProfile.html b/doc/module-meteoJS_thermodynamicDiagram_windbarbsProfile.WindbarbsProfile.html index 018869c..e698c21 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_windbarbsProfile.WindbarbsProfile.html +++ b/doc/module-meteoJS_thermodynamicDiagram_windbarbsProfile.WindbarbsProfile.html @@ -706,7 +706,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_windbarbsProfile.html b/doc/module-meteoJS_thermodynamicDiagram_windbarbsProfile.html index 70827c6..179765e 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_windbarbsProfile.html +++ b/doc/module-meteoJS_thermodynamicDiagram_windbarbsProfile.html @@ -134,7 +134,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_windspeedProfile.WindspeedProfile.html b/doc/module-meteoJS_thermodynamicDiagram_windspeedProfile.WindspeedProfile.html index 8632379..89862ec 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_windspeedProfile.WindspeedProfile.html +++ b/doc/module-meteoJS_thermodynamicDiagram_windspeedProfile.WindspeedProfile.html @@ -680,7 +680,7 @@

Parameters

diff --git a/doc/module-meteoJS_thermodynamicDiagram_windspeedProfile.html b/doc/module-meteoJS_thermodynamicDiagram_windspeedProfile.html index 60b011f..e2e3faf 100644 --- a/doc/module-meteoJS_thermodynamicDiagram_windspeedProfile.html +++ b/doc/module-meteoJS_thermodynamicDiagram_windspeedProfile.html @@ -534,7 +534,7 @@

change:windspeedMax
diff --git a/doc/module-meteoJS_timeline.Timeline.html b/doc/module-meteoJS_timeline.Timeline.html index 21e7101..228fef9 100644 --- a/doc/module-meteoJS_timeline.Timeline.html +++ b/doc/module-meteoJS_timeline.Timeline.html @@ -686,7 +686,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline.html b/doc/module-meteoJS_timeline.html index 03bd24f..7e879fd 100644 --- a/doc/module-meteoJS_timeline.html +++ b/doc/module-meteoJS_timeline.html @@ -408,7 +408,7 @@

change:times

diff --git a/doc/module-meteoJS_timeline_animation.Animation.html b/doc/module-meteoJS_timeline_animation.Animation.html index 4b77097..ae517c0 100644 --- a/doc/module-meteoJS_timeline_animation.Animation.html +++ b/doc/module-meteoJS_timeline_animation.Animation.html @@ -301,7 +301,7 @@

toggle<
diff --git a/doc/module-meteoJS_timeline_animation.html b/doc/module-meteoJS_timeline_animation.html index 03e74b9..bddacab 100644 --- a/doc/module-meteoJS_timeline_animation.html +++ b/doc/module-meteoJS_timeline_animation.html @@ -949,7 +949,7 @@

stop:animation diff --git a/doc/module-meteoJS_timeline_animation_togglebutton.ToggleButton.html b/doc/module-meteoJS_timeline_animation_togglebutton.ToggleButton.html index 5fcf59b..9a5921e 100644 --- a/doc/module-meteoJS_timeline_animation_togglebutton.ToggleButton.html +++ b/doc/module-meteoJS_timeline_animation_togglebutton.ToggleButton.html @@ -80,7 +80,7 @@

Parameter

diff --git a/doc/module-meteoJS_timeline_animation_togglebutton.html b/doc/module-meteoJS_timeline_animation_togglebutton.html index 6bd2e77..f4accbc 100644 --- a/doc/module-meteoJS_timeline_animation_togglebutton.html +++ b/doc/module-meteoJS_timeline_animation_togglebutton.html @@ -301,7 +301,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline_navigationButtons.NavigationButtons.html b/doc/module-meteoJS_timeline_navigationButtons.NavigationButtons.html index 59a4310..daf21e3 100644 --- a/doc/module-meteoJS_timeline_navigationButtons.NavigationButtons.html +++ b/doc/module-meteoJS_timeline_navigationButtons.NavigationButtons.html @@ -150,7 +150,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline_navigationButtons.html b/doc/module-meteoJS_timeline_navigationButtons.html index 45762b1..26e822a 100644 --- a/doc/module-meteoJS_timeline_navigationButtons.html +++ b/doc/module-meteoJS_timeline_navigationButtons.html @@ -377,7 +377,7 @@

Properties

diff --git a/doc/module-meteoJS_timeline_visualisation.Visualisation.html b/doc/module-meteoJS_timeline_visualisation.Visualisation.html index dbb7a05..2d200ef 100644 --- a/doc/module-meteoJS_timeline_visualisation.Visualisation.html +++ b/doc/module-meteoJS_timeline_visualisation.Visualisation.html @@ -428,7 +428,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline_visualisation.html b/doc/module-meteoJS_timeline_visualisation.html index d8d3fff..48c36b1 100644 --- a/doc/module-meteoJS_timeline_visualisation.html +++ b/doc/module-meteoJS_timeline_visualisation.html @@ -339,7 +339,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline_visualisation_bsButtons.bsButtons.html b/doc/module-meteoJS_timeline_visualisation_bsButtons.bsButtons.html index a84fc72..08a1054 100644 --- a/doc/module-meteoJS_timeline_visualisation_bsButtons.bsButtons.html +++ b/doc/module-meteoJS_timeline_visualisation_bsButtons.bsButtons.html @@ -433,7 +433,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline_visualisation_bsButtons.html b/doc/module-meteoJS_timeline_visualisation_bsButtons.html index 119cc4d..5611e60 100644 --- a/doc/module-meteoJS_timeline_visualisation_bsButtons.html +++ b/doc/module-meteoJS_timeline_visualisation_bsButtons.html @@ -162,7 +162,7 @@

Parameter

diff --git a/doc/module-meteoJS_timeline_visualisation_bsDropdown.bsDropdown.html b/doc/module-meteoJS_timeline_visualisation_bsDropdown.bsDropdown.html index 7fe64b6..ca3bb5a 100644 --- a/doc/module-meteoJS_timeline_visualisation_bsDropdown.bsDropdown.html +++ b/doc/module-meteoJS_timeline_visualisation_bsDropdown.bsDropdown.html @@ -434,7 +434,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline_visualisation_bsDropdown.html b/doc/module-meteoJS_timeline_visualisation_bsDropdown.html index 7e2ede3..c32573f 100644 --- a/doc/module-meteoJS_timeline_visualisation_bsDropdown.html +++ b/doc/module-meteoJS_timeline_visualisation_bsDropdown.html @@ -357,7 +357,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline_visualisation_slider.Slider.html b/doc/module-meteoJS_timeline_visualisation_slider.Slider.html index f4a7991..6b2e1d7 100644 --- a/doc/module-meteoJS_timeline_visualisation_slider.Slider.html +++ b/doc/module-meteoJS_timeline_visualisation_slider.Slider.html @@ -433,7 +433,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline_visualisation_slider.html b/doc/module-meteoJS_timeline_visualisation_slider.html index 484023d..2d9f42a 100644 --- a/doc/module-meteoJS_timeline_visualisation_slider.html +++ b/doc/module-meteoJS_timeline_visualisation_slider.html @@ -89,7 +89,7 @@

options diff --git a/doc/module-meteoJS_timeline_visualisation_text.Text.html b/doc/module-meteoJS_timeline_visualisation_text.Text.html index 6057675..0c2d260 100644 --- a/doc/module-meteoJS_timeline_visualisation_text.Text.html +++ b/doc/module-meteoJS_timeline_visualisation_text.Text.html @@ -433,7 +433,7 @@

Parameters

diff --git a/doc/module-meteoJS_timeline_visualisation_text.html b/doc/module-meteoJS_timeline_visualisation_text.html index 6a743e0..aa00c7f 100644 --- a/doc/module-meteoJS_timeline_visualisation_text.html +++ b/doc/module-meteoJS_timeline_visualisation_text.html @@ -118,7 +118,7 @@

Parameter

diff --git a/doc/module-meteoJS_tooltip.Tooltip.html b/doc/module-meteoJS_tooltip.Tooltip.html index f8d4109..efc6f15 100644 --- a/doc/module-meteoJS_tooltip.Tooltip.html +++ b/doc/module-meteoJS_tooltip.Tooltip.html @@ -220,7 +220,7 @@

update<
diff --git a/doc/module-meteoJS_tooltip.html b/doc/module-meteoJS_tooltip.html index 2f987dc..0b20b77 100644 --- a/doc/module-meteoJS_tooltip.html +++ b/doc/module-meteoJS_tooltip.html @@ -96,7 +96,7 @@

show:tooltip

diff --git a/doc/module-meteoJS_tooltip_bootstrapTooltip.BootstrapTooltip.html b/doc/module-meteoJS_tooltip_bootstrapTooltip.BootstrapTooltip.html index d792690..d34d37b 100644 --- a/doc/module-meteoJS_tooltip_bootstrapTooltip.BootstrapTooltip.html +++ b/doc/module-meteoJS_tooltip_bootstrapTooltip.BootstrapTooltip.html @@ -267,7 +267,7 @@

update<
diff --git a/doc/module-meteoJS_tooltip_bootstrapTooltip.html b/doc/module-meteoJS_tooltip_bootstrapTooltip.html index e95d2d7..3f7cf71 100644 --- a/doc/module-meteoJS_tooltip_bootstrapTooltip.html +++ b/doc/module-meteoJS_tooltip_bootstrapTooltip.html @@ -162,7 +162,7 @@

Properties

diff --git a/doc/sounding_Parcel.js.html b/doc/sounding_Parcel.js.html index d7ed403..8f2bd07 100644 --- a/doc/sounding_Parcel.js.html +++ b/doc/sounding_Parcel.js.html @@ -446,7 +446,7 @@

Source: sounding/Parcel.js

diff --git a/doc/synview_Collection.js.html b/doc/synview_Collection.js.html index 9d267e6..9561374 100644 --- a/doc/synview_Collection.js.html +++ b/doc/synview_Collection.js.html @@ -192,7 +192,7 @@

Source: synview/Collection.js

diff --git a/doc/synview_Resource.js.html b/doc/synview_Resource.js.html index 20072c9..67cb8a6 100644 --- a/doc/synview_Resource.js.html +++ b/doc/synview_Resource.js.html @@ -549,7 +549,7 @@

Source: synview/Resource.js

diff --git a/doc/synview_ResourceCollection.js.html b/doc/synview_ResourceCollection.js.html index 17a32e8..b337523 100644 --- a/doc/synview_ResourceCollection.js.html +++ b/doc/synview_ResourceCollection.js.html @@ -278,7 +278,7 @@

Source: synview/ResourceCollection.js

diff --git a/doc/synview_SynviewMap.js.html b/doc/synview_SynviewMap.js.html index 7ec517f..dcf8ca8 100644 --- a/doc/synview_SynviewMap.js.html +++ b/doc/synview_SynviewMap.js.html @@ -210,7 +210,7 @@

Source: synview/SynviewMap.js

diff --git a/doc/synview_Tooltip.js.html b/doc/synview_Tooltip.js.html index 619a254..61bf3f2 100644 --- a/doc/synview_Tooltip.js.html +++ b/doc/synview_Tooltip.js.html @@ -171,7 +171,7 @@

Source: synview/Tooltip.js

diff --git a/doc/synview_Type.js.html b/doc/synview_Type.js.html index c81a379..2ec75e5 100644 --- a/doc/synview_Type.js.html +++ b/doc/synview_Type.js.html @@ -574,7 +574,7 @@

Source: synview/Type.js

diff --git a/doc/synview_TypeCollection.js.html b/doc/synview_TypeCollection.js.html index c7191e9..a79a23e 100644 --- a/doc/synview_TypeCollection.js.html +++ b/doc/synview_TypeCollection.js.html @@ -200,7 +200,7 @@

Source: synview/TypeCollection.js

diff --git a/doc/synview_map_MapLL.js.html b/doc/synview_map_MapLL.js.html index 52d5efe..173f764 100644 --- a/doc/synview_map_MapLL.js.html +++ b/doc/synview_map_MapLL.js.html @@ -70,7 +70,7 @@

Source: synview/map/MapLL.js

diff --git a/doc/synview_map_MapOL.js.html b/doc/synview_map_MapOL.js.html index 7161a1c..b2318ed 100644 --- a/doc/synview_map_MapOL.js.html +++ b/doc/synview_map_MapOL.js.html @@ -253,7 +253,7 @@

Source: synview/map/MapOL.js

diff --git a/doc/synview_resource_GeoJSON.js.html b/doc/synview_resource_GeoJSON.js.html index b7e4307..23f8f85 100644 --- a/doc/synview_resource_GeoJSON.js.html +++ b/doc/synview_resource_GeoJSON.js.html @@ -60,7 +60,7 @@

Source: synview/resource/GeoJSON.js

diff --git a/doc/synview_resource_GeoJSONTile.js.html b/doc/synview_resource_GeoJSONTile.js.html index 336825c..92400eb 100644 --- a/doc/synview_resource_GeoJSONTile.js.html +++ b/doc/synview_resource_GeoJSONTile.js.html @@ -59,7 +59,7 @@

Source: synview/resource/GeoJSONTile.js

diff --git a/doc/synview_resource_Image.js.html b/doc/synview_resource_Image.js.html index f597e97..165fad5 100644 --- a/doc/synview_resource_Image.js.html +++ b/doc/synview_resource_Image.js.html @@ -132,7 +132,7 @@

Source: synview/resource/Image.js

diff --git a/doc/synview_resource_OSM.js.html b/doc/synview_resource_OSM.js.html index e217efe..6bc39eb 100644 --- a/doc/synview_resource_OSM.js.html +++ b/doc/synview_resource_OSM.js.html @@ -68,7 +68,7 @@

Source: synview/resource/OSM.js

diff --git a/doc/synview_resource_Vector.js.html b/doc/synview_resource_Vector.js.html index cd43ad8..ae15489 100644 --- a/doc/synview_resource_Vector.js.html +++ b/doc/synview_resource_Vector.js.html @@ -115,7 +115,7 @@

Source: synview/resource/Vector.js

diff --git a/doc/synview_resource_VectorTile.js.html b/doc/synview_resource_VectorTile.js.html index 4c7bb61..ad272cc 100644 --- a/doc/synview_resource_VectorTile.js.html +++ b/doc/synview_resource_VectorTile.js.html @@ -87,7 +87,7 @@

Source: synview/resource/VectorTile.js

diff --git a/doc/thermodynamicDiagram_Axis.js.html b/doc/thermodynamicDiagram_Axis.js.html index 375923a..b1f8873 100644 --- a/doc/thermodynamicDiagram_Axis.js.html +++ b/doc/thermodynamicDiagram_Axis.js.html @@ -323,7 +323,7 @@

Source: thermodynamicDiagram/Axis.js

diff --git a/doc/thermodynamicDiagram_CoordinateSystem.js.html b/doc/thermodynamicDiagram_CoordinateSystem.js.html index 2ad21d7..11f4694 100644 --- a/doc/thermodynamicDiagram_CoordinateSystem.js.html +++ b/doc/thermodynamicDiagram_CoordinateSystem.js.html @@ -641,7 +641,7 @@

Source: thermodynamicDiagram/CoordinateSystem.js

diff --git a/doc/thermodynamicDiagram_DiagramParcel.js.html b/doc/thermodynamicDiagram_DiagramParcel.js.html index ff12e8f..d547f95 100644 --- a/doc/thermodynamicDiagram_DiagramParcel.js.html +++ b/doc/thermodynamicDiagram_DiagramParcel.js.html @@ -213,7 +213,7 @@

Source: thermodynamicDiagram/DiagramParcel.js

diff --git a/doc/thermodynamicDiagram_DiagramSounding.js.html b/doc/thermodynamicDiagram_DiagramSounding.js.html index 3d9ba4c..ddfe02c 100644 --- a/doc/thermodynamicDiagram_DiagramSounding.js.html +++ b/doc/thermodynamicDiagram_DiagramSounding.js.html @@ -606,7 +606,7 @@

Source: thermodynamicDiagram/DiagramSounding.js

diff --git a/doc/thermodynamicDiagram_Functions.js.html b/doc/thermodynamicDiagram_Functions.js.html index c2b497a..83c8b05 100644 --- a/doc/thermodynamicDiagram_Functions.js.html +++ b/doc/thermodynamicDiagram_Functions.js.html @@ -423,7 +423,7 @@

Source: thermodynamicDiagram/Functions.js

diff --git a/doc/thermodynamicDiagram_Hodograph.js.html b/doc/thermodynamicDiagram_Hodograph.js.html index 511e78e..d40f356 100644 --- a/doc/thermodynamicDiagram_Hodograph.js.html +++ b/doc/thermodynamicDiagram_Hodograph.js.html @@ -176,12 +176,21 @@

Source: thermodynamicDiagram/Hodograph.js

hoverLabels = {}, dataGroupIds = ['windbarbs'], getCoordinatesByLevelData = (dataGroupId, sounding, levelData, plotArea) => { - if (levelData.wspd === undefined || - levelData.wdir === undefined) + let x = undefined; + let y = undefined; + if (levelData.wspd !== undefined &amp;&amp; + levelData.wdir !== undefined) { + x = levelData.wspd * -Math.sin(levelData.wdir / 180 * Math.PI); + y = levelData.wspd * Math.cos(levelData.wdir / 180 * Math.PI); + } + else if (levelData.u !== undefined &amp;&amp; + levelData.v !== undefined) { + x = levelData.u; + y = -levelData.v; + } + if (x === undefined || + y === undefined) return {}; - - const x = levelData.wspd * -Math.sin(levelData.wdir / 180 * Math.PI); - const y = levelData.wspd * Math.cos(levelData.wdir / 180 * Math.PI); return { x: plotArea.center[0] + x * plotArea.pixelPerSpeed, y: plotArea.center[1] + y * plotArea.pixelPerSpeed @@ -726,7 +735,7 @@

Source: thermodynamicDiagram/Hodograph.js

diff --git a/doc/thermodynamicDiagram_PlotAltitudeDataArea.js.html b/doc/thermodynamicDiagram_PlotAltitudeDataArea.js.html index 1764936..d4bc213 100644 --- a/doc/thermodynamicDiagram_PlotAltitudeDataArea.js.html +++ b/doc/thermodynamicDiagram_PlotAltitudeDataArea.js.html @@ -57,7 +57,7 @@

Source: thermodynamicDiagram/PlotAltitudeDataArea.js

* Abstract class to define an area on the SVG with sounding data, plotted with * pressure on the y-axis. * - * &lt;pre>&lt;code>import PlotAltitudeArea from 'meteojs/thermodynamicDiagram/PlotAltitudeArea';&lt;/code>&lt;/pre> + * &lt;pre>&lt;code>import PlotAltitudeDataArea from 'meteojs/thermodynamicDiagram/PlotAltitudeDataArea';&lt;/code>&lt;/pre> * * @extends module:meteoJS/thermodynamicDiagram/plotDataArea.PlotDataArea */ @@ -181,7 +181,7 @@

Source: thermodynamicDiagram/PlotAltitudeDataArea.js

diff --git a/doc/thermodynamicDiagram_TDDiagram.js.html b/doc/thermodynamicDiagram_TDDiagram.js.html index 7073fb7..ba39dbf 100644 --- a/doc/thermodynamicDiagram_TDDiagram.js.html +++ b/doc/thermodynamicDiagram_TDDiagram.js.html @@ -1297,7 +1297,7 @@

Source: thermodynamicDiagram/TDDiagram.js

diff --git a/doc/thermodynamicDiagram_WindbarbsProfile.js.html b/doc/thermodynamicDiagram_WindbarbsProfile.js.html index 300d872..bbd0993 100644 --- a/doc/thermodynamicDiagram_WindbarbsProfile.js.html +++ b/doc/thermodynamicDiagram_WindbarbsProfile.js.html @@ -147,7 +147,7 @@

Source: thermodynamicDiagram/WindbarbsProfile.js

diff --git a/doc/thermodynamicDiagram_WindspeedProfile.js.html b/doc/thermodynamicDiagram_WindspeedProfile.js.html index 2bf2ee1..444728c 100644 --- a/doc/thermodynamicDiagram_WindspeedProfile.js.html +++ b/doc/thermodynamicDiagram_WindspeedProfile.js.html @@ -452,7 +452,7 @@

Source: thermodynamicDiagram/WindspeedProfile.js

diff --git a/doc/thermodynamicDiagram_axes_WindspeedProfileAxis.js.html b/doc/thermodynamicDiagram_axes_WindspeedProfileAxis.js.html index df6568a..ddaf8d2 100644 --- a/doc/thermodynamicDiagram_axes_WindspeedProfileAxis.js.html +++ b/doc/thermodynamicDiagram_axes_WindspeedProfileAxis.js.html @@ -202,7 +202,7 @@

Source: thermodynamicDiagram/axes/WindspeedProfileAxis.js

diff --git a/doc/thermodynamicDiagram_axes_xAxis.js.html b/doc/thermodynamicDiagram_axes_xAxis.js.html index 69312c1..35487c2 100644 --- a/doc/thermodynamicDiagram_axes_xAxis.js.html +++ b/doc/thermodynamicDiagram_axes_xAxis.js.html @@ -123,7 +123,7 @@

Source: thermodynamicDiagram/axes/xAxis.js

diff --git a/doc/thermodynamicDiagram_axes_yAxis.js.html b/doc/thermodynamicDiagram_axes_yAxis.js.html index 934d84a..6e9394a 100644 --- a/doc/thermodynamicDiagram_axes_yAxis.js.html +++ b/doc/thermodynamicDiagram_axes_yAxis.js.html @@ -153,7 +153,7 @@

Source: thermodynamicDiagram/axes/yAxis.js

diff --git a/doc/thermodynamicDiagram_coordinateSystem_Emagram.js.html b/doc/thermodynamicDiagram_coordinateSystem_Emagram.js.html index 356368f..28871bf 100644 --- a/doc/thermodynamicDiagram_coordinateSystem_Emagram.js.html +++ b/doc/thermodynamicDiagram_coordinateSystem_Emagram.js.html @@ -76,7 +76,7 @@

Source: thermodynamicDiagram/coordinateSystem/Emagram.js

diff --git a/doc/thermodynamicDiagram_coordinateSystem_SkewTlogPDiagram.js.html b/doc/thermodynamicDiagram_coordinateSystem_SkewTlogPDiagram.js.html index febd123..048fdfd 100644 --- a/doc/thermodynamicDiagram_coordinateSystem_SkewTlogPDiagram.js.html +++ b/doc/thermodynamicDiagram_coordinateSystem_SkewTlogPDiagram.js.html @@ -53,7 +53,7 @@

Source: thermodynamicDiagram/coordinateSystem/SkewTlogPDiagram.js

diff --git a/doc/thermodynamicDiagram_coordinateSystem_StueveDiagram.js.html b/doc/thermodynamicDiagram_coordinateSystem_StueveDiagram.js.html index 375e05f..05a8e13 100644 --- a/doc/thermodynamicDiagram_coordinateSystem_StueveDiagram.js.html +++ b/doc/thermodynamicDiagram_coordinateSystem_StueveDiagram.js.html @@ -120,7 +120,7 @@

Source: thermodynamicDiagram/coordinateSystem/StueveDiagram.js

diff --git a/doc/thermodynamicDiagram_plotArea.js.html b/doc/thermodynamicDiagram_plotArea.js.html index ae0d051..0d08d38 100644 --- a/doc/thermodynamicDiagram_plotArea.js.html +++ b/doc/thermodynamicDiagram_plotArea.js.html @@ -530,7 +530,7 @@

Source: thermodynamicDiagram/PlotArea.js

diff --git a/doc/thermodynamicDiagram_plotDataArea.js.html b/doc/thermodynamicDiagram_plotDataArea.js.html index 290427d..5a4d08e 100644 --- a/doc/thermodynamicDiagram_plotDataArea.js.html +++ b/doc/thermodynamicDiagram_plotDataArea.js.html @@ -631,7 +631,7 @@

Source: thermodynamicDiagram/PlotDataArea.js

diff --git a/doc/timeline_Animation.js.html b/doc/timeline_Animation.js.html index 4a7ff49..aba0135 100644 --- a/doc/timeline_Animation.js.html +++ b/doc/timeline_Animation.js.html @@ -622,7 +622,7 @@

Source: timeline/Animation.js

diff --git a/doc/timeline_NavigationButtons.js.html b/doc/timeline_NavigationButtons.js.html index 6008bf9..2064347 100644 --- a/doc/timeline_NavigationButtons.js.html +++ b/doc/timeline_NavigationButtons.js.html @@ -212,7 +212,7 @@

Source: timeline/NavigationButtons.js

diff --git a/doc/timeline_Visualisation.js.html b/doc/timeline_Visualisation.js.html index 92bfbc8..f88c5a9 100644 --- a/doc/timeline_Visualisation.js.html +++ b/doc/timeline_Visualisation.js.html @@ -351,7 +351,7 @@

Source: timeline/Visualisation.js

diff --git a/doc/timeline_animation_ToggleButton.js.html b/doc/timeline_animation_ToggleButton.js.html index f171afa..91dc7e0 100644 --- a/doc/timeline_animation_ToggleButton.js.html +++ b/doc/timeline_animation_ToggleButton.js.html @@ -226,7 +226,7 @@

Source: timeline/animation/ToggleButton.js

diff --git a/doc/timeline_visualisation_Slider.js.html b/doc/timeline_visualisation_Slider.js.html index c739271..43df26e 100644 --- a/doc/timeline_visualisation_Slider.js.html +++ b/doc/timeline_visualisation_Slider.js.html @@ -124,7 +124,7 @@

Source: timeline/visualisation/Slider.js

diff --git a/doc/timeline_visualisation_Text.js.html b/doc/timeline_visualisation_Text.js.html index 613195e..7eade95 100644 --- a/doc/timeline_visualisation_Text.js.html +++ b/doc/timeline_visualisation_Text.js.html @@ -92,7 +92,7 @@

Source: timeline/visualisation/Text.js

diff --git a/doc/timeline_visualisation_bsButtons.js.html b/doc/timeline_visualisation_bsButtons.js.html index 2011d97..768c9fd 100644 --- a/doc/timeline_visualisation_bsButtons.js.html +++ b/doc/timeline_visualisation_bsButtons.js.html @@ -232,7 +232,7 @@

Source: timeline/visualisation/bsButtons.js

diff --git a/doc/timeline_visualisation_bsDropdown.js.html b/doc/timeline_visualisation_bsDropdown.js.html index fa10127..72ed443 100644 --- a/doc/timeline_visualisation_bsDropdown.js.html +++ b/doc/timeline_visualisation_bsDropdown.js.html @@ -287,7 +287,7 @@

Source: timeline/visualisation/bsDropdown.js

diff --git a/doc/tooltip_BootstrapTooltip.js.html b/doc/tooltip_BootstrapTooltip.js.html index 34162fb..dabe94c 100644 --- a/doc/tooltip_BootstrapTooltip.js.html +++ b/doc/tooltip_BootstrapTooltip.js.html @@ -234,7 +234,7 @@

Source: tooltip/BootstrapTooltip.js

diff --git a/meteoJS.min.js b/meteoJS.min.js index 4d10b86..cbcb15d 100644 --- a/meteoJS.min.js +++ b/meteoJS.min.js @@ -1,3 +1,3 @@ /*! For license information please see meteoJS.min.js.LICENSE.txt */ -var meteoJS,SVG=SVG||{},jQuery=jQuery||{},ol=ol||{layer:{},source:{},format:{},style:{}},Popper=Popper||{},bootstrap=bootstrap||{};(()=>{var e={588:(e,t,n)=>{function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}var i=function(e){"use strict";var t,n=Object.prototype,i=n.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},a=r.iterator||"@@iterator",s=r.asyncIterator||"@@asyncIterator",l=r.toStringTag||"@@toStringTag";function u(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{u({},"")}catch(e){u=function(e,t,n){return e[t]=n}}function c(e,t,n,o){var i=t&&t.prototype instanceof b?t:b,r=Object.create(i.prototype),a=new E(o||[]);return r._invoke=function(e,t,n){var o=d;return function(i,r){if(o===h)throw new Error("Generator is already running");if(o===v){if("throw"===i)throw r;return N()}for(n.method=i,n.arg=r;;){var a=n.delegate;if(a){var s=T(a,n);if(s){if(s===y)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(o===d)throw o=v,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o=h;var l=f(e,t,n);if("normal"===l.type){if(o=n.done?v:p,l.arg===y)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(o=v,n.method="throw",n.arg=l.arg)}}}(e,n,a),r}function f(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=c;var d="suspendedStart",p="suspendedYield",h="executing",v="completed",y={};function b(){}function m(){}function g(){}var w={};u(w,a,(function(){return this}));var O=Object.getPrototypeOf,_=O&&O(O(R([])));_&&_!==n&&i.call(_,a)&&(w=_);var P=g.prototype=b.prototype=Object.create(w);function S(e){["next","throw","return"].forEach((function(t){u(e,t,(function(e){return this._invoke(t,e)}))}))}function j(e,t){function n(r,a,s,l){var u=f(e[r],e,a);if("throw"!==u.type){var c=u.arg,d=c.value;return d&&"object"===o(d)&&i.call(d,"__await")?t.resolve(d.__await).then((function(e){n("next",e,s,l)}),(function(e){n("throw",e,s,l)})):t.resolve(d).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,l)}))}l(u.arg)}var r;this._invoke=function(e,o){function i(){return new t((function(t,i){n(e,o,t,i)}))}return r=r?r.then(i,i):i()}}function T(e,n){var o=e.iterator[n.method];if(o===t){if(n.delegate=null,"throw"===n.method){if(e.iterator.return&&(n.method="return",n.arg=t,T(e,n),"throw"===n.method))return y;n.method="throw",n.arg=new TypeError("The iterator does not provide a 'throw' method")}return y}var i=f(o,e.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,y;var r=i.arg;return r?r.done?(n[e.resultName]=r.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,y):r:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,y)}function k(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function x(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function E(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(k,this),this.reset(!0)}function R(e){if(e){var n=e[a];if(n)return n.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,r=function n(){for(;++o=0;--r){var a=this.tryEntries[r],s=a.completion;if("root"===a.tryLoc)return o("end");if(a.tryLoc<=this.prev){var l=i.call(a,"catchLoc"),u=i.call(a,"finallyLoc");if(l&&u){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&i.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),x(n),y}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var o=n.completion;if("throw"===o.type){var i=o.arg;x(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,n,o){return this.delegate={iterator:R(e),resultName:n,nextLoc:o},"next"===this.method&&(this.arg=t),y}},e}("object"===o(e=n.nmd(e))?e.exports:{});try{regeneratorRuntime=i}catch(e){"object"===("undefined"==typeof globalThis?"undefined":o(globalThis))?globalThis.regeneratorRuntime=i:Function("r","regeneratorRuntime = r")(i)}}},t={};function n(o){var i=t[o];if(void 0!==i)return i.exports;var r=t[o]={id:o,loaded:!1,exports:{}};return e[o](r,r.exports,n),r.loaded=!0,r.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var o in t)n.o(t,o)&&!n.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nmd=e=>(e.paths=[],e.children||(e.children=[]),e);var o={};(()=>{"use strict";n.r(o),n.d(o,{Modelviewer:()=>Fo,RepetitiveRequests:()=>F,Sounding:()=>cr,Synview:()=>Lt,ThermodynamicDiagram:()=>sc,ThermodynamicDiagramPluggable:()=>as,Timeline:()=>q,Tooltip:()=>ro,calc:()=>e,events:()=>Sc,modelviewer:()=>xc,sounding:()=>Ec,synview:()=>Tc,thermodynamicDiagram:()=>Rc,timeline:()=>jc,tooltip:()=>kc});var e={};function t(e){if(void 0!==e&&!isNaN(e))return 44330.769*(1-Math.pow(e/1013.25,.19029496))}function i(e){if(void 0!==e&&!isNaN(e))return 1013.25*Math.pow(1-e/44330.769,5.255)}function r(e,t){if(void 0!==e&&!isNaN(e)&&void 0!==t&&!isNaN(t))return e*Math.pow(1e3/t,.286)}function a(e,t){if(void 0!==e&&!isNaN(e)&&void 0!==t&&!isNaN(t))return e*Math.pow(t/1e3,.286)}function s(e,t){if(void 0!==t&&!isNaN(t)){for(var n=void 0,o=Math.pow(1e3/t,.286),i=273,r=20,a=0;Math.abs(r)>.1&&a<100;)a++,n=d(i,t),(i*o*Math.exp(2.5*n/i)-e)*r>0&&(r*=-.5),i+=r;return i}}function l(e,t){if(void 0!==e&&!isNaN(e)&&void 0!==t&&!isNaN(t)){var n=.4343*Math.log(e*t/(622+e));return Math.pow(10,.0498646455*n+2.4082965)-7.07475+38.9114*Math.pow(Math.pow(10,.0915*n)-1.2035,2)}}function u(e,t,n){if(!(void 0===e||isNaN(e)||void 0===t||isNaN(t)||void 0===n||isNaN(n))){for(var o=t-273.15,i=1,r=10,a=1,s=6.112*Math.exp(17.67*o/(o+243.5));Math.abs(i)>.05&&0!=(i=s-(6.112*Math.exp(17.67*o/(o+243.5))-n*(e-273.15-o)*66e-5*(1+.00115*o)))&&(i<0?-1!=a&&(a=-1,r/=10):1!=a&&(a=1,r/=10),!(Math.abs(i)<=.05));)o+=r*a;return o+273.15}}function c(e,t,n){var o=r(e,n);if(!(void 0===o||void 0===t||isNaN(t)||void 0===e||isNaN(e)||void 0===n||isNaN(n)))return o*Math.exp(2.4819*d(t,n)/v(e,t))}function f(e){if(void 0!==e&&!isNaN(e)){var t=new Array(6.1104546,.4442351,.014302099,.00026454708,30357098e-13,2.0972268e-8,60487594e-18,-1469687e-19),n=new Array(.06485546857696639,.03783195122560735,.02224449342887902,.013182892842468312,.007874020771412448,.004739730494884733,.0028751203550435793,.001757430376758103,.0010824173951885098,.0006717089391856059,.0004199647026320394,.0002645243638634699,.00016784796373681322,.00010728539763162038,6907426344961356e-20,4479404897680843e-20,2925704195639373e-20,19245291263499416e-21,12749137241074795e-21,8505070102755051e-21,5713400253349711e-21,3864650296738762e-21,2632109719650053e-21,18049107293057043e-22,12460785055581605e-22,8.660705713468708e-7,6.059822176688955e-7,4.2682119794324277e-7,3.026165085143795e-7,2.15963854234914e-7,1.5512895457833687e-7),o=0;if((e-=273.15)>-50)o=t[0]+e*(t[1]+e*(t[2]+e*(t[3]+e*(t[4]+e*(t[5]+e*(t[6]+e*t[7]))))));else{var i=(-e-50)/5;o=010;){var i=o+(n-o)/2,r=d(a(e,i),i);if(void 0===r)return;r.1;){var i=o+(n-o)/2,r=p(i,t);if(void 0===r)return;r>e?o=i:n=i}return o+(n-o)/2}}function v(e,t){if(void 0!==e&&!isNaN(e)&&void 0!==t&&!isNaN(t))return t-(.001296*t-.15772)*(e-t)}function y(e){return void 0===e||isNaN(e)?void 0:e+273.15}function b(e){return void 0===e||isNaN(e)?void 0:e-273.15}function m(e){return void 0===e||isNaN(e)?void 0:3.6*e}function g(e){return void 0===e||isNaN(e)?void 0:e/3.6}function w(e){return void 0===e||isNaN(e)?void 0:900*e/463}function O(e){return void 0===e||isNaN(e)?void 0:463*e/900}function _(e){return void 0===e||isNaN(e)?void 0:Math.min(12,Math.pow(e/.836,2/3))}function P(e){return void 0===e||isNaN(e)?void 0:.836*Math.pow(e,1.5)}function S(e,t){if(void 0!==e&&!isNaN(e)&&void 0!==t&&!isNaN(t))return 153*b(e)+.9985*t-304.26}function j(e,t,n,o){if(!(void 0===e||isNaN(e)||void 0===t||isNaN(t)||void 0===n||isNaN(n))){if(0==t)return e;var i=.02896;if(void 0===o&&(o=n),n==o)return e*Math.exp(9.807*-i/8.314/n*t);var r=(n-o)/t;return e*Math.exp(9.807*i/8.314/r*Math.log(1-r*t/n))}}function T(e,t,n){if(!(void 0===e||isNaN(e)||void 0===t||isNaN(t)||void 0===n||isNaN(n))){var o=f(t)*n;return 100*(e-o)/287.058/t+100*o/461.495/t}}function k(e){return k="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},k(e)}function x(e,t,n){"listeners"in this&&void 0!==this.listeners||(this.listeners={}),e in this.listeners||(this.listeners[e]={});var o=Math.random().toString(36).substr(2,9);return this.listeners[e][o]={callback:t,thisArg:n},o}function E(e,t){"listeners"in this&&void 0!==this.listeners&&e in this.listeners&&t in this.listeners[e]&&delete this.listeners[e][t]}function R(e,t,n){"once_listeners"in this&&void 0!==this.once_listeners||(this.once_listeners={}),e in this.once_listeners&&"push"in this.once_listeners[e]||(this.once_listeners[e]=[]),this.once_listeners[e].push({callback:t,thisArg:n})}function N(e){return"listeners"in this&&void 0!==this.listeners&&e in this.listeners&&Object.keys(this.listeners[e]).length||"once_listeners"in this&&e in this.once_listeners&&Object.keys(this.once_listeners[e]).length}function C(e){var t=this,n=Array.prototype.slice.call(arguments);if(n.shift(),"listeners"in this&&void 0!==this.listeners&&e in this.listeners&&"object"==k(this.listeners[e])&&Object.keys(this.listeners[e]).forEach((function(o){t.listeners[e][o].callback.apply(void 0===t.listeners[e][o].thisArg?t:t.listeners[e][o].thisArg,n)})),"once_listeners"in this&&void 0!==this.once_listeners&&e in this.once_listeners&&"forEach"in this.once_listeners[e]){var o=this.once_listeners[e];this.once_listeners[e]=[],o.forEach((function(e){e.callback.apply(void 0===e.thisArg?t:e.thisArg,n)}))}}n.r(e),n.d(e,{altitudeISAByPres:()=>t,densityHumidAirByPressureAndTempAndRelHumidity:()=>T,dewpointByHMRAndPres:()=>l,equiPotentialTempByTempAndDewpointAndPres:()=>c,lclByPotentialTempAndHMR:()=>p,lclTemperatureByTempAndDewpoint:()=>v,potentialTempByLCLAndHMR:()=>h,potentialTempByTempAndPres:()=>r,pressureByBarometricFormula:()=>j,pressureISAByAltitude:()=>i,saturationHMRByTempAndPres:()=>d,saturationPressureByTemp:()=>f,snowlineByTemp850hPaAndAltidude:()=>S,tempByEquiPotTempAndPres:()=>s,tempByPotentialTempAndPres:()=>a,tempCelsiusToKelvin:()=>y,tempKelvinToCelsius:()=>b,wetbulbTempByTempAndDewpointAndPres:()=>u,windspeedBFToMS:()=>P,windspeedKMHToMS:()=>g,windspeedKNToMS:()=>O,windspeedMSToBF:()=>_,windspeedMSToKMH:()=>m,windspeedMSToKN:()=>w}),n(588);const B=function(e){e.on=x,e.un=E,e.once=R,e.hasListener=N,e.trigger=C};function I(e){return I="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},I(e)}function D(){D=function(){return e};var e={},t=Object.prototype,n=t.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",r=o.asyncIterator||"@@asyncIterator",a=o.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,o){var i=t&&t.prototype instanceof f?t:f,r=Object.create(i.prototype),a=new P(o||[]);return r._invoke=function(e,t,n){var o="suspendedStart";return function(i,r){if("executing"===o)throw new Error("Generator is already running");if("completed"===o){if("throw"===i)throw r;return{value:void 0,done:!0}}for(n.method=i,n.arg=r;;){var a=n.delegate;if(a){var s=w(a,n);if(s){if(s===c)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===o)throw o="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o="executing";var l=u(e,t,n);if("normal"===l.type){if(o=n.done?"completed":"suspendedYield",l.arg===c)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(o="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),r}function u(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var c={};function f(){}function d(){}function p(){}var h={};s(h,i,(function(){return this}));var v=Object.getPrototypeOf,y=v&&v(v(S([])));y&&y!==t&&n.call(y,i)&&(h=y);var b=p.prototype=f.prototype=Object.create(h);function m(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function g(e,t){function o(i,r,a,s){var l=u(e[i],e,r);if("throw"!==l.type){var c=l.arg,f=c.value;return f&&"object"==I(f)&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){o("next",e,a,s)}),(function(e){o("throw",e,a,s)})):t.resolve(f).then((function(e){c.value=e,a(c)}),(function(e){return o("throw",e,a,s)}))}s(l.arg)}var i;this._invoke=function(e,n){function r(){return new t((function(t,i){o(e,n,t,i)}))}return i=i?i.then(r,r):r()}}function w(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,w(e,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return c}var o=u(n,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,c;var i=o.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,c):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function O(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function _(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(O,this),this.reset(!0)}function S(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,r=function t(){for(;++o=0;--i){var r=this.tryEntries[i],a=r.completion;if("root"===r.tryLoc)return o("end");if(r.tryLoc<=this.prev){var s=n.call(r,"catchLoc"),l=n.call(r,"finallyLoc");if(s&&l){if(this.prev=0;--o){var i=this.tryEntries[o];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),_(n),c}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var o=n.completion;if("throw"===o.type){var i=o.arg;_(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:S(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),c}},e}function M(e,t,n,o,i,r,a){try{var s=e[r](a),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(o,i)}function A(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function V(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{},n=t.url,o=void 0===n?void 0:n,i=t.user,r=void 0===i?"":i,a=t.password,s=void 0===a?"":a,l=t.start,u=void 0===l||l,c=t.defaultTimeout,f=void 0===c?void 0:c,d=t.timeoutOnError,p=void 0===d?void 0:d,h=t.pauseOnHiddenDocument,v=void 0!==h&&h,y=t.responseType,b=void 0===y?"":y;A(this,e),this._url=o,this._user=r,this._password=s,this._isStarted=u,this._defaultTimeout=f,this._timeoutOnError=p,this._pauseOnHiddenDocument=v,this._initPauseOnHiddenDocument(),this._isSuppressedByHiddenDocument=!1,this._responseType=b,this._timeoutID=void 0,this._loading=!1,this._isStarted&&this.start()}var t,n,o,i;return t=e,n=[{key:"url",get:function(){return this._url},set:function(e){this._url=e}},{key:"user",get:function(){return this._user},set:function(e){this._user=e}},{key:"password",get:function(){return this._password},set:function(e){this._password=e}},{key:"responseType",get:function(){return this._responseType},set:function(e){this._responseType=e}},{key:"start",value:function(){this._isStarted=!0,this._startRequest()}},{key:"stop",value:function(){this._isStarted=!1,void 0!==this._timeoutID&&(clearTimeout(this._timeoutID),this._timeoutID=void 0)}},{key:"_planRequest",value:function(e){var t=this,n=e.delay;void 0===this._timeoutID&&(this._timeoutID=setTimeout((function(){t._pauseOnHiddenDocument&&"hidden"in document&&document.hidden?t._isSuppressedByHiddenDocument=!0:t._startRequest()}),n))}},{key:"_startRequest",value:function(){var e=this;void 0!==this._timeoutID&&(clearTimeout(this._timeoutID),this._timeoutID=void 0),this._makeRequest().then((function(t){var n=t.request;if(e._isStarted){var o=e._defaultTimeout,i=n.getResponseHeader("Cache-Control");if(null!==i){var r=/(^|,\s*)max-age=([0-9]+)($|\s*,)/.exec(i);null!==r&&r[2]>0&&(o=Math.round(1e3*r[2]))}e.trigger("success:request",{request:n}),void 0!==o&&e._planRequest({delay:o})}}),(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.request;e._isStarted&&void 0!==n&&(e.trigger("error:request",{request:n}),void 0!==e._timeoutOnError&&e._planRequest({delay:e._timeoutOnError}))}),(function(t){var n=t.request,o=void 0===n?void 0:n;void 0!==o&&e.trigger("error:request",{request:o})}))}},{key:"_makeRequest",value:(o=D().mark((function e(){var t=this;return D().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.trigger("before:request"),e.abrupt("return",new Promise((function(e,n){if(void 0!==t._url)if(t._loading)n();else{t._loading=!0;var o=new XMLHttpRequest;void 0!==t.responseType&&(o.responseType=t.responseType),o.addEventListener("load",(function(){t._loading=!1,200==o.status?e({request:o}):n({request:o})})),o.addEventListener("error",(function(){t._loading=!1,n({request:o})})),o.open("GET",t._url,!0,t._user,t._password),o.send()}else n()})));case 2:case"end":return e.stop()}}),e,this)})),i=function(){var e=this,t=arguments;return new Promise((function(n,i){var r=o.apply(e,t);function a(e){M(r,n,i,a,s,"next",e)}function s(e){M(r,n,i,a,s,"throw",e)}a(void 0)}))},function(){return i.apply(this,arguments)})},{key:"_initPauseOnHiddenDocument",value:function(){var e=this;this._pauseOnHiddenDocument&&document.addEventListener("visibilitychange",(function(){"hidden"in document&&!document.hidden&&e._isSuppressedByHiddenDocument&&e._isStarted&&(e._isSuppressedByHiddenDocument=!1,e.start())}))}}],n&&V(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),e}();B(G.prototype);const F=G;function Y(e){return Y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Y(e)}function z(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function X(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{},n=t.maxTimeGap,o=void 0===n?void 0:n,i=t.keyboardNavigation,r=void 0===i?{}:i;z(this,e),this.maxTimeGap=o,this.selectedTime=new Date("invalid"),this.times=[],this.enabledTimes=[],this.allEnabledTimes=[],this.timesByKey={},this._keyboardNavigation={},this._initKeyboardNavigation(r)}var t,n;return t=e,n=[{key:"getSelectedTime",value:function(){return this.selectedTime}},{key:"setSelectedTime",value:function(e){return this._setSelectedTime(K(e,this.times)>-1?e:new Date("invalid")),this}},{key:"getTimes",value:function(){return this.times}},{key:"getEnabledTimes",value:function(){return this.enabledTimes}},{key:"getAllEnabledTimes",value:function(){return this.allEnabledTimes}},{key:"setTimesBySetID",value:function(e,t){return this.timesByKey[e]={times:t,enabled:t},this._updateTimes(),this._updateEnabledTimes(),this}},{key:"setEnabledTimesBySetID",value:function(e,t){return e in this.timesByKey&&(this.timesByKey[e].enabled=t,this._updateEnabledTimes()),this}},{key:"getSetIDs",value:function(){return Object.keys(this.timesByKey)}},{key:"deleteSetID",value:function(e){return e in this.timesByKey&&(delete this.timesByKey[e],this._updateTimes(),this._updateEnabledTimes()),this}},{key:"first",value:function(){return this._setSelectedTime(this.getFirstEnabledTime()),this}},{key:"last",value:function(){return this._setSelectedTime(this.getLastEnabledTime()),this}},{key:"next",value:function(){return this._setSelectedTime(this.getNextEnabledTime()),this}},{key:"prev",value:function(){return this._setSelectedTime(this.getPrevEnabledTime()),this}},{key:"nextAllEnabledTime",value:function(){return this._setSelectedTime(this.getNextAllEnabledTime()),this}},{key:"prevAllEnabledTime",value:function(){return this._setSelectedTime(this.getPrevAllEnabledTime()),this}},{key:"add",value:function(e,t){var n=this.getSelectedTime(),o=0;switch(t){case"hours":case"h":o=3600*e*1e3;break;case"minutes":case"m":o=60*e*1e3;break;case"seconds":case"s":o=1e3*e;break;case"milliseconds":case"ms":o=e}switch(0!=o&&(n=new Date(n.valueOf()+o)),t){case"years":case"y":n.setUTCFullYear(n.getUTCFullYear()+e);break;case"months":case"M":n.setUTCMonth(n.getUTCMonth()+e);break;case"days":case"d":n.setUTCDate(n.getUTCDate()+e)}return K(n,this.times)>-1&&this._setSelectedTime(n),this}},{key:"sub",value:function(e,t){var n=this.getSelectedTime(),o=0;switch(t){case"hours":case"h":o=3600*e*1e3;break;case"minutes":case"m":o=60*e*1e3;break;case"seconds":case"s":o=1e3*e;break;case"milliseconds":case"ms":o=e}switch(0!=o&&(n=new Date(n.valueOf()-o)),t){case"years":case"y":n.setUTCFullYear(n.getUTCFullYear()-e);break;case"months":case"M":n.setUTCMonth(n.getUTCMonth()-e);break;case"days":case"d":n.setUTCDate(n.getUTCDate()-e)}return K(n,this.times)>-1&&this._setSelectedTime(n),this}},{key:"getFirstEnabledTime",value:function(){return this.enabledTimes.length>0?this.enabledTimes[0]:new Date("invalid")}},{key:"getLastEnabledTime",value:function(){return this.enabledTimes.length>0?this.enabledTimes[this.enabledTimes.length-1]:new Date("invalid")}},{key:"getNextEnabledTime",value:function(){if(this.enabledTimes.length<1)return new Date("invalid");var e=K(this.getSelectedTime(),this.enabledTimes);if(e>-1)return++e-1)return-1<--e?this.enabledTimes[e]:this.enabledTimes[0];if(isNaN(this.getSelectedTime()))return this.enabledTimes[0];for(var t=new Date("invalid"),n=this.enabledTimes.length-1;n>=0;n--)if(this.getSelectedTime().valueOf()>this.enabledTimes[n].valueOf()){t=this.enabledTimes[n];break}return t}},{key:"getFirstAllEnabledTime",value:function(){return this.allEnabledTimes.length>0?this.allEnabledTimes[0]:new Date("invalid")}},{key:"getLastAllEnabledTime",value:function(){return this.allEnabledTimes.length>0?this.allEnabledTimes[this.allEnabledTimes.length-1]:new Date("invalid")}},{key:"getNextAllEnabledTime",value:function(){if(this.allEnabledTimes.length<1)return new Date("invalid");var e=K(this.getSelectedTime(),this.allEnabledTimes);if(e>-1)return++e-1)return-1<--e?this.allEnabledTimes[e]:this.allEnabledTimes[0];if(isNaN(this.getSelectedTime()))return this.allEnabledTimes[0];for(var t=new Date("invalid"),n=this.allEnabledTimes.length-1;n>=0;n--)if(this.getSelectedTime().valueOf()>this.allEnabledTimes[n].valueOf()){t=this.allEnabledTimes[n];break}return t}},{key:"isTimeEnabled",value:function(e){return this.enabledTimes.reduce((function(t,n){return n.valueOf()==e.valueOf()||t}),!1)}},{key:"isTimeAllEnabled",value:function(e){return this.allEnabledTimes.reduce((function(t,n){return n.valueOf()==e.valueOf()||t}),!1)}},{key:"isFirstEnabledTime",value:function(){return this.getFirstEnabledTime().valueOf()==this.getSelectedTime().valueOf()}},{key:"isLastEnabledTime",value:function(){return this.getLastEnabledTime().valueOf()==this.getSelectedTime().valueOf()}},{key:"_setSelectedTime",value:function(e){var t=this.selectedTime;return this.selectedTime=e,this.trigger("change:time",t),this.selectedTime}},{key:"_updateTimes",value:function(){this.times=[];var e=[],t={};for(var n in this.timesByKey)this.timesByKey[n].times.forEach((function(n){n.valueOf()in t||(e.push(n),t[n.valueOf()]=n)}));U(e),e.forEach((function(e){if(this.times.length<1)this.times.push(e);else{var t=this.times[this.times.length-1];if(void 0!==this.maxTimeGap&&e.valueOf()-t.valueOf()>1e3*this.maxTimeGap){var n=t;do{n=new Date(n.getTime()+1e3*this.maxTimeGap),this.times.push(n)}while(e.valueOf()-n.valueOf()>1e3*this.maxTimeGap)}this.times.push(e)}}),this),U(this.times),this.trigger("change:times")}},{key:"_updateEnabledTimes",value:function(){this.enabledTimes=[],this.allEnabledTimes=[];var e={},t={};for(var n in this.timesByKey)this.timesByKey[n].enabled.forEach((function(n){n.valueOf()in e||(this.enabledTimes.push(n),e[n.valueOf()]=n),n.valueOf()in t?t[n.valueOf()]++:t[n.valueOf()]=1}),this);for(var o in U(this.enabledTimes),t)t[o]==Object.keys(this.timesByKey).length&&this.allEnabledTimes.push(e[o]);U(this.allEnabledTimes),this.trigger("change:enabledTimes")}},{key:"_initKeyboardNavigation",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.enabled,o=void 0!==n&&n,i=t.first,r=void 0===i?36:i,a=t.last,s=void 0===a?35:a,l=t.prev,u=void 0===l?37:l,c=t.next,f=void 0===c?39:c,d=t.prevAllEnabledTime,p=void 0===d?[37,"ctrl"]:d,h=t.nextAllEnabledTime,v=void 0===h?[39,"ctrl"]:h,y=t.add,b=void 0===y?void 0:y,m=t.sub,g=void 0===m?void 0:m;void 0===b&&(b={"3h":[39,"ctrl","shift"],"6h":[39,"shift"],"12h":[39,"alt","shift"],"24h":[39,"alt"]}),void 0===g&&(g={"3h":[37,"ctrl","shift"],"6h":[37,"shift"],"12h":[37,"alt","shift"],"24h":[37,"alt"]}),this._keyboardNavigation={enabled:o,first:r,last:s,prev:u,next:f,prevAllEnabledTime:p,nextAllEnabledTime:v,add:b,sub:g},document&&this._keyboardNavigation.enabled&&document.addEventListener("keydown",(function(t){Object.keys(e._keyboardNavigation).forEach((function(n){"enabled"!=n&&(/^(add|sub)$/.test(n)?Object.keys(e._keyboardNavigation[n]).forEach((function(o){var i=o.match(/^([0-9]+)\s*([a-zA-Z]+)$/);null!==i&&$(t,e._keyboardNavigation[n][o])&&(e[n](+i[1],i[2]),t.preventDefault(),t.stopPropagation())})):n in e&&$(t,e._keyboardNavigation[n])&&(e[n](),t.preventDefault(),t.stopPropagation()))}))}))}}],n&&X(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),e}();B(H.prototype);const q=H;var K=function(e,t){return t.findIndex((function(t){return t.valueOf()==e.valueOf()}))};function U(e){e.sort((function(e,t){return e.valueOf()-t.valueOf()}))}function $(e,t){if("object"==Y(t)&&"forEach"in t||(t=[t]),0==t.length)return!1;var n=[["ctrl","ctrlKey"],["alt","altKey"],["shift","shiftKey"],["meta","metaKey"]].reduce((function(n,o){return n&&(t.indexOf(o[0])>-1?e[o[1]]:!e[o[1]])}),!0);return t.forEach((function(t){switch(t){case"ctrl":case"alt":case"shift":case"meta":break;default:t!=e.keyCode&&(n=!1)}})),n}const Z=jQuery;var W=n.n(Z);function J(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Q(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{},o=n.timeline,i=n.restartPause,r=void 0===i?1.8:i,a=n.imagePeriod,s=void 0===a?.2:a,l=n.imageFrequency,u=void 0===l?void 0:l,c=n.enabledStepsOnly,f=void 0===c||c,d=n.allEnabledStepsOnly,p=void 0!==d&&d;J(this,e),this.options={timeline:o,restartPause:r,imagePeriod:s,imageFrequency:u,enabledStepsOnly:f,allEnabledStepsOnly:p},void 0===this.options.timeline&&(this.options.timeline=new q),void 0!==this.options.imageFrequency&&0!=this.options.imageFrequency&&(this.options.imagePeriod=1/this.options.imageFrequency),this.animationIntervalID=void 0,this.animationTimeoutID=void 0,this.animationStep=0,this.timesHash={},this.times=[];var h=function(){t.times=t.options.timeline[t._getTimelineTimesMethod()](),t.timesHash={},t.times.forEach((function(e,n){return t.timesHash[e.valueOf()]=n}))};this.options.timeline.on(this._getTimelineChangeTimesEvent(),h),h()}var t,n;return t=e,(n=[{key:"getImagePeriod",value:function(){return this.options.imagePeriod}},{key:"setImagePeriod",value:function(e){return this.options.imagePeriod=e,this.isStarted()&&this._updateAnimation(),this.trigger("change:imageFrequency"),this}},{key:"getImageFrequency",value:function(){return 1/this.options.imagePeriod}},{key:"setImageFrequency",value:function(e){return 0!=e&&this.setImagePeriod(1/e),this}},{key:"getRestartPause",value:function(){return this.options.restartPause}},{key:"setRestartPause",value:function(e){return this.options.restartPause=Number(e),this.trigger("change:restartPause"),this}},{key:"isStarted",value:function(){return void 0!==this.animationIntervalID||void 0!==this.animationTimeoutID}},{key:"start",value:function(){this.options.timeline.getSelectedTime().valueOf()in this.timesHash&&this._setStep(this.timesHash[this.options.timeline.getSelectedTime().valueOf()]),this.isStarted()||this._updateAnimation(),this.trigger("start:animation")}},{key:"stop",value:function(){this._clearAnimation(),this.trigger("stop:animation")}},{key:"toggle",value:function(){this.isStarted()?this.stop():this.start()}},{key:"_setStep",value:function(e){0<=e&&e=e._getCount()-1&&(e.trigger("end:animation"),e._clearAnimation(),e._initRestartPause())}),1e3*this.options.imagePeriod))}},{key:"_initRestartPause",value:function(){var e=this;void 0===this.animationTimeoutID&&(this.animationTimeoutID=window.setTimeout((function(){e.animationStep=0,e.trigger("restart:animation"),e.animationStep").addClass("form-control").attr("type","number").attr("min",1).attr("step",1),a=W()("
").addClass("input-group").append(r).append(W()("").addClass("input-group-text").text(i));r.on("change",(function(){return n.setImageFrequency(r.val())}));var s=function(){return r.val(n.getImageFrequency())};return n.on("change:imageFrequency",s),s(),e.append(a),a}function oe(e,t){var n=t.animation,o=t.frequencies;o=o||[1];var i=W()("").addClass("form-range").attr("type","range").attr("min",0).attr("max",o.length-1);i.on("change input",(function(){var e=i.val();e-1&&i.val(e)};return n.on("change:imageFrequency",r),r(),e.append(i),i}function ie(e,t){var n=t.animation,o=t.suffix,i=void 0===o?"s":o,r=W()("").addClass("form-control").attr("type","number").attr("min",0).attr("step",.1),a=W()("
").addClass("input-group").append(r).append(W()("").addClass("input-group-text").text(i));r.on("change",(function(){return n.setRestartPause(r.val())}));var s=function(){return r.val(n.getRestartPause())};return n.on("change:restartPause",s),s(),e.append(a),a}const re='\n \n',ae='\n \n';function se(e,t){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:{};ue(this,e);var o=n.animation,i=void 0===o?void 0:o,r=n.node,a=void 0===r?void 0:r,s=n.startedContent,l=void 0===s?void 0:s,u=n.startedClass,c=void 0===u?void 0:u,f=n.stoppedContent,d=void 0===f?void 0:f,p=n.stoppedClass,h=void 0===p?void 0:p,v=n.classButton,y=void 0===v?void 0:v,b=n.classDropdownToggle,m=void 0===b?void 0:b,g=n.menu,w=void 0===g||g,O=n.menuImageFrequency,_=void 0===O||O,P=n.imageFrequencyCaption,S=void 0===P?"Frequency":P,j=n.menuFrequencies,T=void 0===j?void 0:j,k=n.menuRestartPause,x=void 0===k||k,E=n.restartPauseCaption,R=void 0===E?"Restart pause":E;"startedContent"in n||(l=W()(ae)),"stoppedContent"in n||(d=W()(re)),this.options={animation:i,node:a,startedContent:l,startedClass:c,stoppedContent:d,stoppedClass:h,classButton:y,classDropdownToggle:m,menu:w,menuImageFrequency:_,imageFrequencyCaption:S,menuFrequencies:T,menuRestartPause:x,restartPauseCaption:R},this.options.node=W()(this.options.node);var N=this.options.node;this.options.node.is("button")||(N=W()("