Skip to content

Commit 6b66f42

Browse files
committed
Built site for gh-pages
1 parent ec58ee4 commit 6b66f42

746 files changed

Lines changed: 9486 additions & 2603 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.

.nojekyll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9aed7106
1+
992d87d0

Interoperability.html

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,10 @@
179179
</li>
180180
</ul>
181181
</li>
182+
<li class="nav-item">
183+
<a class="nav-link" href="./documentation/alphabetical.html">
184+
<span class="menu-text">α</span></a>
185+
</li>
182186
<li class="nav-item">
183187
<a class="nav-link" href="./examples.html">
184188
<span class="menu-text">Examples</span></a>
@@ -482,13 +486,21 @@ <h3 class="anchored" data-anchor-id="dataframes">DataFrames</h3>
482486
<ul>
483487
<li>Create and plot a DataFrame</li>
484488
</ul>
485-
<div id="ad816189" class="cell" data-execution_count="1">
489+
<div id="2aa5aa9d" class="cell" data-execution_count="1">
486490
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb1"><pre class="sourceCode julia code-with-copy"><code class="sourceCode julia"><span id="cb1-1"><a href="#cb1-1" aria-hidden="true" tabindex="-1"></a><span class="im">using</span> <span class="bu">GMT</span>, <span class="bu">DataFrames</span></span>
487491
<span id="cb1-2"><a href="#cb1-2" aria-hidden="true" tabindex="-1"></a>df <span class="op">=</span> <span class="fu">DataFrame</span>(t <span class="op">=</span> <span class="fl">1</span><span class="op">:</span><span class="fl">10</span>, series1 <span class="op">=</span> <span class="fu">sin</span>.(<span class="fl">1</span><span class="op">:</span><span class="fl">10</span>), series2<span class="op">=</span><span class="fu">rand</span>(<span class="fl">10</span>));</span>
488492
<span id="cb1-3"><a href="#cb1-3" aria-hidden="true" tabindex="-1"></a><span class="fu">plot</span>(df, show<span class="op">=</span><span class="cn">true</span>)</span></code></pre></div><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></div>
489493
<div class="cell-output cell-output-stderr">
490494
<div class="ansi-escaped-output">
491-
<pre><span class="ansi-cyan-fg ansi-bold">[ </span><span class="ansi-cyan-fg ansi-bold">Info: </span>Precompiling GMTDataFramesExt [b0121151-b40e-578b-8798-214dacfa5da6]
495+
<pre><span class="ansi-green-fg ansi-bold">Precompiling</span> packages...
496+
497+
52459.5 ms<span class="ansi-green-fg"></span>GMT
498+
499+
1 dependency successfully precompiled in 54 seconds. 80 already precompiled.
500+
501+
<span class="ansi-cyan-fg ansi-bold">[ </span><span class="ansi-cyan-fg ansi-bold">Info: </span>Precompiling GMTParkerFFTExt [35a23bc9-6f20-5cbc-8971-9cdf66427582]
502+
503+
<span class="ansi-cyan-fg ansi-bold">[ </span><span class="ansi-cyan-fg ansi-bold">Info: </span>Precompiling GMTDataFramesExt [b0121151-b40e-578b-8798-214dacfa5da6]
492504
</pre>
493505
</div>
494506
</div>
@@ -501,7 +513,7 @@ <h3 class="anchored" data-anchor-id="dataframes">DataFrames</h3>
501513
</div>
502514
</div>
503515
<p>But one problem with the above solution is that although the <code>df</code> has three columns it only plotted a single curve. This happens because in GMT 3rd and on columns may be used to control color, symbol sizes etc and cannot therefore be assumed to <em>plotting data</em> by default. If we want that all columns are interpreted as data, we use the <code>multicol</code> option, like:</p>
504-
<div id="486018a1" class="cell" data-execution_count="2">
516+
<div id="59a0e26e" class="cell" data-execution_count="2">
505517
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb2"><pre class="sourceCode julia code-with-copy"><code class="sourceCode julia"><span id="cb2-1"><a href="#cb2-1" aria-hidden="true" tabindex="-1"></a><span class="im">using</span> <span class="bu">GMT</span>, <span class="bu">DataFrames</span></span>
506518
<span id="cb2-2"><a href="#cb2-2" aria-hidden="true" tabindex="-1"></a></span>
507519
<span id="cb2-3"><a href="#cb2-3" aria-hidden="true" tabindex="-1"></a>df <span class="op">=</span> <span class="fu">DataFrame</span>(t <span class="op">=</span> <span class="fl">1</span><span class="op">:</span><span class="fl">10</span>, series1 <span class="op">=</span> <span class="fu">sin</span>.(<span class="fl">1</span><span class="op">:</span><span class="fl">10</span>), series2<span class="op">=</span><span class="fu">rand</span>(<span class="fl">10</span>));</span>
@@ -596,7 +608,7 @@ <h3 class="anchored" data-anchor-id="rasters">Rasters</h3>
596608
<span id="cb8-5"><a href="#cb8-5" aria-hidden="true" tabindex="-1"></a>A <span class="op">=</span> <span class="fu">Raster</span>(WorldClim{BioClim}, <span class="fl">5</span>);</span>
597609
<span id="cb8-6"><a href="#cb8-6" aria-hidden="true" tabindex="-1"></a><span class="fu">viz</span>(A, colorbar<span class="op">=</span><span class="cn">true</span>)</span></code></pre></div><button title="Copy to Clipboard" class="code-copy-button"><i class="bi"></i></button></div>
598610
<p><img src=".\assets/world_clim_bio_clim.png" class="center img-fluid" style="width:80.0%"></p>
599-
<div id="fc41b018" class="cell" data-execution_count="3">
611+
<div id="def2cafb" class="cell" data-execution_count="3">
600612
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb9"><pre class="sourceCode julia code-with-copy"><code class="sourceCode julia"><span id="cb9-1"><a href="#cb9-1" aria-hidden="true" tabindex="-1"></a><span class="im">using</span> <span class="bu">GMT</span>, <span class="bu">Rasters</span></span>
601613
<span id="cb9-2"><a href="#cb9-2" aria-hidden="true" tabindex="-1"></a><span class="im">import</span> <span class="bu">NCDatasets</span></span>
602614
<span id="cb9-3"><a href="#cb9-3" aria-hidden="true" tabindex="-1"></a></span>
@@ -612,7 +624,7 @@ <h3 class="anchored" data-anchor-id="rasters">Rasters</h3>
612624
</div>
613625
</div>
614626
</div>
615-
<div id="ace6150d" class="cell" data-execution_count="4">
627+
<div id="61241aff" class="cell" data-execution_count="4">
616628
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb10"><pre class="sourceCode julia code-with-copy"><code class="sourceCode julia"><span id="cb10-1"><a href="#cb10-1" aria-hidden="true" tabindex="-1"></a>url <span class="op">=</span> <span class="st">"https://archive.unidata.ucar.edu/software/netcdf/examples/tos_O1_2001-2002.nc"</span>;</span>
617629
<span id="cb10-2"><a href="#cb10-2" aria-hidden="true" tabindex="-1"></a>filename <span class="op">=</span> <span class="fu">download</span>(url, <span class="st">"tos_O1_2001-2002.nc"</span>);</span>
618630
<span id="cb10-3"><a href="#cb10-3" aria-hidden="true" tabindex="-1"></a>A <span class="op">=</span> <span class="fu">Raster</span>(filename);</span>
@@ -626,7 +638,7 @@ <h3 class="anchored" data-anchor-id="rasters">Rasters</h3>
626638
</div>
627639
</div>
628640
<p>But <em>I Don’t like Kelvins</em>. Fine, want centigrade? Just offset the <em>z</em> values.</p>
629-
<div id="79d32055" class="cell" data-execution_count="5">
641+
<div id="609b4f5b" class="cell" data-execution_count="5">
630642
<div class="code-copy-outer-scaffold"><div class="sourceCode cell-code" id="cb11"><pre class="sourceCode julia code-with-copy"><code class="sourceCode julia"><span id="cb11-1"><a href="#cb11-1" aria-hidden="true" tabindex="-1"></a>url <span class="op">=</span> <span class="st">"https://archive.unidata.ucar.edu/software/netcdf/examples/tos_O1_2001-2002.nc"</span>;</span>
631643
<span id="cb11-2"><a href="#cb11-2" aria-hidden="true" tabindex="-1"></a>filename <span class="op">=</span> <span class="fu">download</span>(url, <span class="st">"tos_O1_2001-2002.nc"</span>);</span>
632644
<span id="cb11-3"><a href="#cb11-3" aria-hidden="true" tabindex="-1"></a>A <span class="op">=</span> <span class="fu">Raster</span>(filename);</span>
-10.2 KB
Loading

comp_other_pkgs.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@
144144
</li>
145145
</ul>
146146
</li>
147+
<li class="nav-item">
148+
<a class="nav-link" href="./documentation/alphabetical.html">
149+
<span class="menu-text">α</span></a>
150+
</li>
147151
<li class="nav-item">
148152
<a class="nav-link" href="./examples.html">
149153
<span class="menu-text">Examples</span></a>

documentation.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@
144144
</li>
145145
</ul>
146146
</li>
147+
<li class="nav-item">
148+
<a class="nav-link" href="./documentation/alphabetical.html">
149+
<span class="menu-text">α</span></a>
150+
</li>
147151
<li class="nav-item">
148152
<a class="nav-link" href="./examples.html">
149153
<span class="menu-text">Examples</span></a>

documentation/alphabetical.html

Lines changed: 37 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@
144144
</li>
145145
</ul>
146146
</li>
147+
<li class="nav-item">
148+
<a class="nav-link active" href="../documentation/alphabetical.html" aria-current="page">
149+
<span class="menu-text">α</span></a>
150+
</li>
147151
<li class="nav-item">
148152
<a class="nav-link" href="../examples.html">
149153
<span class="menu-text">Examples</span></a>
@@ -500,26 +504,30 @@ <h2 class="anchored" data-anchor-id="a">A</h2>
500504
<td>Utilities</td>
501505
</tr>
502506
<tr class="odd">
503-
<td><a href="utilities/append2fig.html"><code>append2fig</code></a></td>
507+
<td><a href="utilities/analemma.html"><code>analemma</code></a></td>
504508
<td>Utilities</td>
505509
</tr>
506510
<tr class="even">
511+
<td><a href="utilities/append2fig.html"><code>append2fig</code></a></td>
512+
<td>Utilities</td>
513+
</tr>
514+
<tr class="odd">
507515
<td><a href="gdalfuns/arccircle.html"><code>arccircle</code></a></td>
508516
<td>GDAL Functions</td>
509517
</tr>
510-
<tr class="odd">
518+
<tr class="even">
511519
<td><a href="gdalfuns/arcellipse.html"><code>arcellipse</code></a></td>
512520
<td>GDAL Functions</td>
513521
</tr>
514-
<tr class="even">
522+
<tr class="odd">
515523
<td><a href="modules/arrows.html"><code>arrows</code></a></td>
516524
<td>Modules</td>
517525
</tr>
518-
<tr class="odd">
526+
<tr class="even">
519527
<td><a href="utilities/autocor.html"><code>autocor</code></a></td>
520528
<td>Utilities</td>
521529
</tr>
522-
<tr class="even">
530+
<tr class="odd">
523531
<td><a href="utilities/autocov.html"><code>autocov</code></a></td>
524532
<td>Utilities</td>
525533
</tr>
@@ -860,42 +868,46 @@ <h2 class="anchored" data-anchor-id="e">E</h2>
860868
<td>Utilities</td>
861869
</tr>
862870
<tr class="even">
871+
<td><a href="utilities/enso.html"><code>enso</code></a></td>
872+
<td>Utilities</td>
873+
</tr>
874+
<tr class="odd">
863875
<td><a href="gdalfuns/envelope.html"><code>envelope</code></a></td>
864876
<td>GDAL Functions</td>
865877
</tr>
866-
<tr class="odd">
878+
<tr class="even">
867879
<td><a href="gdalfuns/envelope3d.html"><code>envelope3d</code></a></td>
868880
<td>GDAL Functions</td>
869881
</tr>
870-
<tr class="even">
882+
<tr class="odd">
871883
<td><a href="gdalfuns/epsg2proj.html"><code>epsg2proj</code></a></td>
872884
<td>GDAL Functions</td>
873885
</tr>
874-
<tr class="odd">
886+
<tr class="even">
875887
<td><a href="gdalfuns/epsg2wkt.html"><code>epsg2wkt</code></a></td>
876888
<td>GDAL Functions</td>
877889
</tr>
878-
<tr class="even">
890+
<tr class="odd">
879891
<td><a href="gdalfuns/equals.html"><code>equals</code></a></td>
880892
<td>GDAL Functions</td>
881893
</tr>
882-
<tr class="odd">
894+
<tr class="even">
883895
<td><a href="utilities/era5time.html"><code>era5time</code></a></td>
884896
<td>Utilities</td>
885897
</tr>
886-
<tr class="even">
898+
<tr class="odd">
887899
<td><a href="utilities/era5vars.html"><code>era5vars</code></a></td>
888900
<td>Utilities</td>
889901
</tr>
890-
<tr class="odd">
902+
<tr class="even">
891903
<td><a href="utilities/eulermat.html"><code>eulermat</code></a></td>
892904
<td>Utilities</td>
893905
</tr>
894-
<tr class="even">
906+
<tr class="odd">
895907
<td><a href="modules/events.html"><code>events</code></a></td>
896908
<td>Modules</td>
897909
</tr>
898-
<tr class="odd">
910+
<tr class="even">
899911
<td><a href="utilities/extrude.html"><code>extrude</code></a></td>
900912
<td>Utilities</td>
901913
</tr>
@@ -1669,10 +1681,14 @@ <h2 class="anchored" data-anchor-id="k">K</h2>
16691681
</thead>
16701682
<tbody>
16711683
<tr class="odd">
1672-
<td><a href="utilities/kmeans.html"><code>kmeans</code></a></td>
1684+
<td><a href="utilities/keeling.html"><code>keeling</code></a></td>
16731685
<td>Utilities</td>
16741686
</tr>
16751687
<tr class="even">
1688+
<td><a href="utilities/kmeans.html"><code>kmeans</code></a></td>
1689+
<td>Utilities</td>
1690+
</tr>
1691+
<tr class="odd">
16761692
<td><a href="modules/kml2gmt.html"><code>kml2gmt</code></a></td>
16771693
<td>Modules</td>
16781694
</tr>
@@ -2385,14 +2401,18 @@ <h2 class="anchored" data-anchor-id="s">S</h2>
23852401
<td>Modules</td>
23862402
</tr>
23872403
<tr class="odd">
2388-
<td><a href="utilities/surf2fv.html"><code>surf2fv</code></a></td>
2404+
<td><a href="utilities/sunsetrise.html"><code>sunsetrise</code></a></td>
23892405
<td>Utilities</td>
23902406
</tr>
23912407
<tr class="even">
2408+
<td><a href="utilities/surf2fv.html"><code>surf2fv</code></a></td>
2409+
<td>Utilities</td>
2410+
</tr>
2411+
<tr class="odd">
23922412
<td><a href="modules/surface.html"><code>surface</code></a></td>
23932413
<td>Modules</td>
23942414
</tr>
2395-
<tr class="odd">
2415+
<tr class="even">
23962416
<td><a href="gdalfuns/symdifference.html"><code>symdifference</code></a></td>
23972417
<td>GDAL Functions</td>
23982418
</tr>

documentation/common_features.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@
144144
</li>
145145
</ul>
146146
</li>
147+
<li class="nav-item">
148+
<a class="nav-link" href="../documentation/alphabetical.html">
149+
<span class="menu-text">α</span></a>
150+
</li>
147151
<li class="nav-item">
148152
<a class="nav-link" href="../examples.html">
149153
<span class="menu-text">Examples</span></a>

documentation/common_features/arrows_control.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@
144144
</li>
145145
</ul>
146146
</li>
147+
<li class="nav-item">
148+
<a class="nav-link" href="../../documentation/alphabetical.html">
149+
<span class="menu-text">α</span></a>
150+
</li>
147151
<li class="nav-item">
148152
<a class="nav-link" href="../../examples.html">
149153
<span class="menu-text">Examples</span></a>

documentation/common_features/color.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@
144144
</li>
145145
</ul>
146146
</li>
147+
<li class="nav-item">
148+
<a class="nav-link" href="../../documentation/alphabetical.html">
149+
<span class="menu-text">α</span></a>
150+
</li>
147151
<li class="nav-item">
148152
<a class="nav-link" href="../../examples.html">
149153
<span class="menu-text">Examples</span></a>

documentation/common_features/decorated.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@
144144
</li>
145145
</ul>
146146
</li>
147+
<li class="nav-item">
148+
<a class="nav-link" href="../../documentation/alphabetical.html">
149+
<span class="menu-text">α</span></a>
150+
</li>
147151
<li class="nav-item">
148152
<a class="nav-link" href="../../examples.html">
149153
<span class="menu-text">Examples</span></a>

0 commit comments

Comments
 (0)