Skip to content

Commit

Permalink
move import coiled to end
Browse files Browse the repository at this point in the history
  • Loading branch information
tylere committed May 24, 2024
1 parent 8e585aa commit 30e35ce
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
6 changes: 3 additions & 3 deletions 00_core.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"outputs": [],
"source": [
"#| export\n",
"import coiled"
"import ee"
]
},
{
Expand All @@ -65,7 +65,7 @@
"outputs": [],
"source": [
"#| export\n",
"import ee"
"import google.auth"
]
},
{
Expand All @@ -75,7 +75,7 @@
"outputs": [],
"source": [
"#| export\n",
"import google.auth"
"import coiled"
]
},
{
Expand Down
2 changes: 2 additions & 0 deletions _docs/00_core.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,15 @@ <h1 class="title">core</h1>

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->
<hr>
<p><a href="https://github.com/VorGeo/earthengine-dask/blob/master/earthengine_dask/core.py#L33" target="_blank" style="float:right; font-size:smaller">source</a></p>
<section id="clustergee" class="level3">
<h3 class="anchored" data-anchor-id="clustergee">ClusterGEE</h3>
<blockquote class="blockquote">
<pre><code> ClusterGEE (**kwargs)</code></pre>
</blockquote>
<p>Create a Dask cluster with Coiled</p>
<hr>
<p><a href="https://github.com/VorGeo/earthengine-dask/blob/master/earthengine_dask/core.py#L22" target="_blank" style="float:right; font-size:smaller">source</a></p>
</section>
<section id="initearthengine" class="level3">
<h3 class="anchored" data-anchor-id="initearthengine">InitEarthEngine</h3>
Expand Down
10 changes: 10 additions & 0 deletions _docs/search.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@
"earthengine-dask"
]
},
{
"objectID": "00_core.html",
"href": "00_core.html",
"title": "core",
"section": "",
"text": "source",
"crumbs": [
"core"
]
},
{
"objectID": "00_core.html#authenticate-initialize-earth-engine",
"href": "00_core.html#authenticate-initialize-earth-engine",
Expand Down
2 changes: 1 addition & 1 deletion _docs/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
</url>
<url>
<loc>https://VorGeo.github.io/earthengine-dask/00_core.html</loc>
<lastmod>2024-05-24T22:41:57.513Z</lastmod>
<lastmod>2024-05-24T22:53:24.599Z</lastmod>
</url>
</urlset>
6 changes: 3 additions & 3 deletions earthengine_dask/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
import logging

# %% ../00_core.ipynb 4
import coiled
import ee

# %% ../00_core.ipynb 5
import dask.distributed

# %% ../00_core.ipynb 6
import ee
import google.auth

# %% ../00_core.ipynb 7
import google.auth
import coiled

# %% ../00_core.ipynb 8
class InitEarthEngine(dask.distributed.WorkerPlugin):
Expand Down

0 comments on commit 30e35ce

Please sign in to comment.