Skip to content

Commit 7607b6d

Browse files
committed
deploy: 43e6da2
1 parent 2d41361 commit 7607b6d

74 files changed

Lines changed: 705 additions & 705 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

api/Comparer.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@
385385
"|------|----------|-------------|\n",
386386
"| | Comparer | |"
387387
],
388-
"id": "5a0d7249-958b-412c-8253-9ee848df50d4"
388+
"id": "fced8af2-bda3-42fd-918a-6ee47090ea10"
389389
}
390390
],
391391
"nbformat": 4,

api/ComparerCollection.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@
430430
">>> cc2 = ms.ComparerCollection.load(\"my_comparer_collection.msk\")\n",
431431
"```"
432432
],
433-
"id": "a858e3aa-657a-447c-bd64-4e8ec49d4516"
433+
"id": "fb89e11d-c417-4576-a296-08b8fd92b736"
434434
}
435435
],
436436
"nbformat": 4,

api/DfsuModelResult.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"|------|-------------------------|-----------------------------------------|\n",
5656
"| | PointModelResult or TrackModelResult | extracted modelresult with the same geometry as the observation |"
5757
],
58-
"id": "3259e25c-d1ec-4db5-b219-fb0b25800130"
58+
"id": "088a7544-f9a8-474b-8bc8-1d6a396dd4a4"
5959
}
6060
],
6161
"nbformat": 4,

api/DummyModelResult.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"2000-01-01 01:00:00 0.5\n",
4242
"```"
4343
],
44-
"id": "f626c8ed-587b-426b-83e7-3531d1e44d6a"
44+
"id": "2495de04-b1b5-4cee-9324-827e4b89c532"
4545
}
4646
],
4747
"nbformat": 4,

api/GridModelResult.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"|------|--------------------------------------|-----------------------|\n",
5555
"| | PointModelResult or TrackModelResult | extracted modelresult |"
5656
],
57-
"id": "aaa72046-c3fd-42a5-b048-48e7cd687cfb"
57+
"id": "129d9180-0619-4317-8ddf-d8956b36e6a1"
5858
}
5959
],
6060
"nbformat": 4,

api/PointModelResult.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
"| buffer | str | buffer time around start and end time, by default “1s” | `'1s'` |\n",
158158
"| no_overlap | Literal\\['ignore', 'error', 'warn'\\] | Empty data handling. | `'error'` |"
159159
],
160-
"id": "2e53eadd-ad61-4a8d-be32-84b127bef998"
160+
"id": "3710b8b7-a985-4667-bffe-2441f7dd77ce"
161161
}
162162
],
163163
"nbformat": 4,

api/PointObservation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
"| buffer | str | buffer time around start and end time, by default “1s” | `'1s'` |\n",
149149
"| no_overlap | Literal\\['ignore', 'error', 'warn'\\] | Empty data handling. | `'error'` |"
150150
],
151-
"id": "cb63f080-149e-4f45-b0cb-d3a29cee692e"
151+
"id": "1397be46-27a7-403e-99f8-d8512bff1e55"
152152
}
153153
],
154154
"nbformat": 4,

api/Quantity.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -521,34 +521,34 @@ <h2 class="doc-section doc-section-parameters anchored" data-anchor-id="paramete
521521
</section>
522522
<section id="examples" class="level2 doc-section doc-section-examples">
523523
<h2 class="doc-section doc-section-examples anchored" data-anchor-id="examples">Examples</h2>
524-
<div id="1f8e1080" class="cell" data-execution_count="1">
524+
<div id="e487e709" class="cell" data-execution_count="1">
525525
<div class="sourceCode cell-code" id="cb2"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb2-1"><a href="#cb2-1" aria-hidden="true" tabindex="-1"></a><span class="im">from</span> modelskill <span class="im">import</span> Quantity</span>
526526
<span id="cb2-2"><a href="#cb2-2" aria-hidden="true" tabindex="-1"></a>wl <span class="op">=</span> Quantity(name<span class="op">=</span><span class="st">"Water Level"</span>, unit<span class="op">=</span><span class="st">"meter"</span>)</span>
527527
<span id="cb2-3"><a href="#cb2-3" aria-hidden="true" tabindex="-1"></a>wl</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
528528
<div class="cell-output cell-output-display" data-execution_count="1">
529529
<pre><code>Quantity(name='Water Level', unit='meter')</code></pre>
530530
</div>
531531
</div>
532-
<div id="b9ec7714" class="cell" data-execution_count="2">
532+
<div id="28be0910" class="cell" data-execution_count="2">
533533
<div class="sourceCode cell-code" id="cb4"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb4-1"><a href="#cb4-1" aria-hidden="true" tabindex="-1"></a>wl.name</span>
534534
<span id="cb4-2"><a href="#cb4-2" aria-hidden="true" tabindex="-1"></a><span class="co">'Water Level'</span></span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
535535
<div class="cell-output cell-output-display" data-execution_count="2">
536536
<pre><code>'Water Level'</code></pre>
537537
</div>
538538
</div>
539-
<div id="7e496d0b" class="cell" data-execution_count="3">
539+
<div id="23a060f8" class="cell" data-execution_count="3">
540540
<div class="sourceCode cell-code" id="cb6"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb6-1"><a href="#cb6-1" aria-hidden="true" tabindex="-1"></a>wl.unit</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
541541
<div class="cell-output cell-output-display" data-execution_count="3">
542542
<pre><code>'meter'</code></pre>
543543
</div>
544544
</div>
545-
<div id="dc143f42" class="cell" data-execution_count="4">
545+
<div id="ad3b0965" class="cell" data-execution_count="4">
546546
<div class="sourceCode cell-code" id="cb8"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb8-1"><a href="#cb8-1" aria-hidden="true" tabindex="-1"></a>wl.is_compatible(wl)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
547547
<div class="cell-output cell-output-display" data-execution_count="4">
548548
<pre><code>True</code></pre>
549549
</div>
550550
</div>
551-
<div id="4a5559dd" class="cell" data-execution_count="5">
551+
<div id="6e985b61" class="cell" data-execution_count="5">
552552
<div class="sourceCode cell-code" id="cb10"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb10-1"><a href="#cb10-1" aria-hidden="true" tabindex="-1"></a>Quantity(name<span class="op">=</span><span class="st">"Wind Direction"</span>, unit<span class="op">=</span><span class="st">"degree"</span>, is_directional<span class="op">=</span><span class="va">True</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
553553
<div class="cell-output cell-output-display" data-execution_count="5">
554554
<pre><code>Quantity(name='Wind Direction', unit='degree', is_directional=True)</code></pre>
@@ -638,13 +638,13 @@ <h4 class="doc-section doc-section-returns anchored" data-anchor-id="returns">Re
638638
</section>
639639
<section id="examples-1" class="level4 doc-section doc-section-examples">
640640
<h4 class="doc-section doc-section-examples anchored" data-anchor-id="examples-1">Examples</h4>
641-
<div id="29ff1026" class="cell" data-execution_count="6">
641+
<div id="e4ef0dc2" class="cell" data-execution_count="6">
642642
<div class="sourceCode cell-code" id="cb13"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb13-1"><a href="#cb13-1" aria-hidden="true" tabindex="-1"></a>Quantity.from_cf_attrs({<span class="st">'long_name'</span>: <span class="st">'Water Level'</span>, <span class="st">'units'</span>: <span class="st">'meter'</span>})</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
643643
<div class="cell-output cell-output-display" data-execution_count="6">
644644
<pre><code>Quantity(name='Water Level', unit='meter')</code></pre>
645645
</div>
646646
</div>
647-
<div id="cc9e0dbe" class="cell" data-execution_count="7">
647+
<div id="ca728881" class="cell" data-execution_count="7">
648648
<div class="sourceCode cell-code" id="cb15"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb15-1"><a href="#cb15-1" aria-hidden="true" tabindex="-1"></a>Quantity.from_cf_attrs({<span class="st">'long_name'</span>: <span class="st">'Wind direction'</span>, <span class="st">'units'</span>: <span class="st">'degree'</span>})</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
649649
<div class="cell-output cell-output-display" data-execution_count="7">
650650
<pre><code>Quantity(name='Wind direction', unit='degree', is_directional=True)</code></pre>
@@ -698,7 +698,7 @@ <h4 class="doc-section doc-section-returns anchored" data-anchor-id="returns-1">
698698
</section>
699699
<section id="examples-2" class="level4 doc-section doc-section-examples">
700700
<h4 class="doc-section doc-section-examples anchored" data-anchor-id="examples-2">Examples</h4>
701-
<div id="e772160d" class="cell" data-execution_count="8">
701+
<div id="d1b478b5" class="cell" data-execution_count="8">
702702
<div class="sourceCode cell-code" id="cb18"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb18-1"><a href="#cb18-1" aria-hidden="true" tabindex="-1"></a>Quantity.from_mikeio_eum_name(<span class="st">"Water Level"</span>)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
703703
<div class="cell-output cell-output-stderr">
704704
<pre><code>/home/runner/work/modelskill/modelskill/src/modelskill/quantity.py:190: UserWarning:
@@ -724,15 +724,15 @@ <h3 class="anchored" data-anchor-id="modelskill.Quantity.is_compatible">is_compa
724724
<p>Check if the quantity is compatible with another quantity</p>
725725
<section id="examples-3" class="level4 doc-section doc-section-examples">
726726
<h4 class="doc-section doc-section-examples anchored" data-anchor-id="examples-3">Examples</h4>
727-
<div id="ac3be47b" class="cell" data-execution_count="9">
727+
<div id="0c5673d5" class="cell" data-execution_count="9">
728728
<div class="sourceCode cell-code" id="cb23"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb23-1"><a href="#cb23-1" aria-hidden="true" tabindex="-1"></a>wl <span class="op">=</span> Quantity(name<span class="op">=</span><span class="st">"Water Level"</span>, unit<span class="op">=</span><span class="st">"meter"</span>)</span>
729729
<span id="cb23-2"><a href="#cb23-2" aria-hidden="true" tabindex="-1"></a>ws <span class="op">=</span> Quantity(name<span class="op">=</span><span class="st">"Wind Speed"</span>, unit<span class="op">=</span><span class="st">"meter per second"</span>)</span>
730730
<span id="cb23-3"><a href="#cb23-3" aria-hidden="true" tabindex="-1"></a>wl.is_compatible(ws)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
731731
<div class="cell-output cell-output-display" data-execution_count="9">
732732
<pre><code>False</code></pre>
733733
</div>
734734
</div>
735-
<div id="26aaa715" class="cell" data-execution_count="10">
735+
<div id="893f8764" class="cell" data-execution_count="10">
736736
<div class="sourceCode cell-code" id="cb25"><pre class="sourceCode python code-with-copy"><code class="sourceCode python"><span id="cb25-1"><a href="#cb25-1" aria-hidden="true" tabindex="-1"></a>uq <span class="op">=</span> Quantity(name<span class="op">=</span><span class="st">"Undefined"</span>, unit<span class="op">=</span><span class="st">"Undefined"</span>)</span>
737737
<span id="cb25-2"><a href="#cb25-2" aria-hidden="true" tabindex="-1"></a>wl.is_compatible(uq)</span></code><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></pre></div>
738738
<div class="cell-output cell-output-display" data-execution_count="10">

api/Quantity.ipynb

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"\n",
2323
"## Examples"
2424
],
25-
"id": "dc3cd3e5-2ca6-4592-a837-906bccde08b3"
25+
"id": "30061dd0-8f14-4712-ae0f-fa21f04cd5a3"
2626
},
2727
{
2828
"cell_type": "code",
@@ -44,7 +44,7 @@
4444
"wl = Quantity(name=\"Water Level\", unit=\"meter\")\n",
4545
"wl"
4646
],
47-
"id": "38785b76"
47+
"id": "918d53c0"
4848
},
4949
{
5050
"cell_type": "code",
@@ -65,7 +65,7 @@
6565
"wl.name\n",
6666
"'Water Level'"
6767
],
68-
"id": "23004057"
68+
"id": "31624841"
6969
},
7070
{
7171
"cell_type": "code",
@@ -85,7 +85,7 @@
8585
"source": [
8686
"wl.unit"
8787
],
88-
"id": "0af3350b"
88+
"id": "ca5d6f6b"
8989
},
9090
{
9191
"cell_type": "code",
@@ -105,7 +105,7 @@
105105
"source": [
106106
"wl.is_compatible(wl)"
107107
],
108-
"id": "3230d0d8"
108+
"id": "90d08557"
109109
},
110110
{
111111
"cell_type": "code",
@@ -125,7 +125,7 @@
125125
"source": [
126126
"Quantity(name=\"Wind Direction\", unit=\"degree\", is_directional=True)"
127127
],
128-
"id": "92099836"
128+
"id": "89be1bed"
129129
},
130130
{
131131
"cell_type": "markdown",
@@ -169,7 +169,7 @@
169169
"\n",
170170
"#### Examples"
171171
],
172-
"id": "2912aafb-d109-4383-b477-87b1b7da7ec2"
172+
"id": "3fb3879b-5f4a-4b14-bc64-73869831a84a"
173173
},
174174
{
175175
"cell_type": "code",
@@ -189,7 +189,7 @@
189189
"source": [
190190
"Quantity.from_cf_attrs({'long_name': 'Water Level', 'units': 'meter'})"
191191
],
192-
"id": "d0956080"
192+
"id": "7680efa4"
193193
},
194194
{
195195
"cell_type": "code",
@@ -209,7 +209,7 @@
209209
"source": [
210210
"Quantity.from_cf_attrs({'long_name': 'Wind direction', 'units': 'degree'})"
211211
],
212-
"id": "a5bc1f64"
212+
"id": "d1b14152"
213213
},
214214
{
215215
"cell_type": "markdown",
@@ -237,7 +237,7 @@
237237
"\n",
238238
"#### Examples"
239239
],
240-
"id": "4bc9ac73-567c-44b0-b4ad-649101c33a4d"
240+
"id": "8f1f96c8-c48c-4ef0-bdff-77e4136f24b8"
241241
},
242242
{
243243
"cell_type": "code",
@@ -266,7 +266,7 @@
266266
"source": [
267267
"Quantity.from_mikeio_eum_name(\"Water Level\")"
268268
],
269-
"id": "ee25a487"
269+
"id": "7bb3a8f3"
270270
},
271271
{
272272
"cell_type": "markdown",
@@ -292,7 +292,7 @@
292292
"\n",
293293
"#### Examples"
294294
],
295-
"id": "9b02af59-a5e5-48bd-967d-1bd1d9a9dfff"
295+
"id": "c105dd21-b995-4dd5-a976-106ebda04cf2"
296296
},
297297
{
298298
"cell_type": "code",
@@ -314,7 +314,7 @@
314314
"ws = Quantity(name=\"Wind Speed\", unit=\"meter per second\")\n",
315315
"wl.is_compatible(ws)"
316316
],
317-
"id": "0647c76e"
317+
"id": "35d5daa2"
318318
},
319319
{
320320
"cell_type": "code",
@@ -335,7 +335,7 @@
335335
"uq = Quantity(name=\"Undefined\", unit=\"Undefined\")\n",
336336
"wl.is_compatible(uq)"
337337
],
338-
"id": "f5e512e1"
338+
"id": "483922cc"
339339
},
340340
{
341341
"cell_type": "markdown",
@@ -369,7 +369,7 @@
369369
"|------|----------|-------------------------------------|\n",
370370
"| | Quantity | A Quantity with empty name and unit |"
371371
],
372-
"id": "9894ea9f-409c-49a7-a043-17f6246e0e42"
372+
"id": "e017e2ba-ec2f-4afb-88b8-dddbbef7a6f2"
373373
}
374374
],
375375
"nbformat": 4,

api/SkillTable.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@
294294
"|------|------------------|----------------------------|\n",
295295
"| | gpd.GeoDataFrame | Skill data as GeoDataFrame |"
296296
],
297-
"id": "83379e5f-be87-41ee-8057-e2a8db82fbeb"
297+
"id": "dc7d8e28-319d-4287-b559-75dc1460c21c"
298298
}
299299
],
300300
"nbformat": 4,

0 commit comments

Comments
 (0)