Skip to content

Commit 2d41361

Browse files
committed
deploy: c1ea3a2
1 parent 75c09f1 commit 2d41361

76 files changed

Lines changed: 1411 additions & 899 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": "78189865-7c04-49ff-877f-d3af39611459"
388+
"id": "5a0d7249-958b-412c-8253-9ee848df50d4"
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": "f2e18bf4-ae25-41d3-9990-507e8aad6ef0"
433+
"id": "a858e3aa-657a-447c-bd64-4e8ec49d4516"
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": "fed3f56b-2d4e-4241-93d4-cfdf87275608"
58+
"id": "3259e25c-d1ec-4db5-b219-fb0b25800130"
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": "9fa350fb-fa31-416a-9f3b-e04071627db4"
44+
"id": "f626c8ed-587b-426b-83e7-3531d1e44d6a"
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": "1d98ebc4-7af0-48a2-8780-9a977e5dec6c"
57+
"id": "aaa72046-c3fd-42a5-b048-48e7cd687cfb"
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": "eb9251ae-017d-4de6-9522-ee536ad860f0"
160+
"id": "2e53eadd-ad61-4a8d-be32-84b127bef998"
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": "84f4f6d5-3636-4497-99fd-8c787f0f9a49"
151+
"id": "cb63f080-149e-4f45-b0cb-d3a29cee692e"
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="8b8fd75c" class="cell" data-execution_count="1">
524+
<div id="1f8e1080" 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="0b549fa9" class="cell" data-execution_count="2">
532+
<div id="b9ec7714" 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="cca24f80" class="cell" data-execution_count="3">
539+
<div id="7e496d0b" 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="45723448" class="cell" data-execution_count="4">
545+
<div id="dc143f42" 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="31c8e42a" class="cell" data-execution_count="5">
551+
<div id="4a5559dd" 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="452f6212" class="cell" data-execution_count="6">
641+
<div id="29ff1026" 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="6291c4db" class="cell" data-execution_count="7">
647+
<div id="cc9e0dbe" 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="baca1cff" class="cell" data-execution_count="8">
701+
<div id="e772160d" 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="2e6d9c23" class="cell" data-execution_count="9">
727+
<div id="ac3be47b" 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="d499091a" class="cell" data-execution_count="10">
735+
<div id="26aaa715" 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": "2c33ecc7-abc9-4d1e-aba8-c6c574c5ddbc"
25+
"id": "dc3cd3e5-2ca6-4592-a837-906bccde08b3"
2626
},
2727
{
2828
"cell_type": "code",
@@ -44,7 +44,7 @@
4444
"wl = Quantity(name=\"Water Level\", unit=\"meter\")\n",
4545
"wl"
4646
],
47-
"id": "60bf0255"
47+
"id": "38785b76"
4848
},
4949
{
5050
"cell_type": "code",
@@ -65,7 +65,7 @@
6565
"wl.name\n",
6666
"'Water Level'"
6767
],
68-
"id": "66bac8af"
68+
"id": "23004057"
6969
},
7070
{
7171
"cell_type": "code",
@@ -85,7 +85,7 @@
8585
"source": [
8686
"wl.unit"
8787
],
88-
"id": "f8db2f71"
88+
"id": "0af3350b"
8989
},
9090
{
9191
"cell_type": "code",
@@ -105,7 +105,7 @@
105105
"source": [
106106
"wl.is_compatible(wl)"
107107
],
108-
"id": "9fe1dd88"
108+
"id": "3230d0d8"
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": "6091a6d0"
128+
"id": "92099836"
129129
},
130130
{
131131
"cell_type": "markdown",
@@ -169,7 +169,7 @@
169169
"\n",
170170
"#### Examples"
171171
],
172-
"id": "ad7b9d12-2a34-43f6-98df-abb63338f9f7"
172+
"id": "2912aafb-d109-4383-b477-87b1b7da7ec2"
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": "e3295a75"
192+
"id": "d0956080"
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": "5c167d5c"
212+
"id": "a5bc1f64"
213213
},
214214
{
215215
"cell_type": "markdown",
@@ -237,7 +237,7 @@
237237
"\n",
238238
"#### Examples"
239239
],
240-
"id": "b19dd103-1ac7-4333-a61d-7b499a3ce4dd"
240+
"id": "4bc9ac73-567c-44b0-b4ad-649101c33a4d"
241241
},
242242
{
243243
"cell_type": "code",
@@ -266,7 +266,7 @@
266266
"source": [
267267
"Quantity.from_mikeio_eum_name(\"Water Level\")"
268268
],
269-
"id": "3b3ce211"
269+
"id": "ee25a487"
270270
},
271271
{
272272
"cell_type": "markdown",
@@ -292,7 +292,7 @@
292292
"\n",
293293
"#### Examples"
294294
],
295-
"id": "8a271346-2e2b-4f5b-80ca-b9ab1e1fac71"
295+
"id": "9b02af59-a5e5-48bd-967d-1bd1d9a9dfff"
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": "38a48c30"
317+
"id": "0647c76e"
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": "7f1d6993"
338+
"id": "f5e512e1"
339339
},
340340
{
341341
"cell_type": "markdown",
@@ -369,7 +369,7 @@
369369
"|------|----------|-------------------------------------|\n",
370370
"| | Quantity | A Quantity with empty name and unit |"
371371
],
372-
"id": "228ef0e7-8818-4d9f-bd3a-5d4ede45278b"
372+
"id": "9894ea9f-409c-49a7-a043-17f6246e0e42"
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": "cdbb71c9-0962-46da-8c3d-fa0fb1e39d05"
297+
"id": "83379e5f-be87-41ee-8057-e2a8db82fbeb"
298298
}
299299
],
300300
"nbformat": 4,

0 commit comments

Comments
 (0)