From f5862db448552fae66ecfbd37b5858c1d9f4ab22 Mon Sep 17 00:00:00 2001 From: Justin Braaten Date: Mon, 2 Oct 2023 11:59:34 -0700 Subject: [PATCH] Update 00_geemap_colab.ipynb --- examples/notebooks/00_geemap_colab.ipynb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/notebooks/00_geemap_colab.ipynb b/examples/notebooks/00_geemap_colab.ipynb index 6a7d9d6e14..1caf7b9e31 100644 --- a/examples/notebooks/00_geemap_colab.ipynb +++ b/examples/notebooks/00_geemap_colab.ipynb @@ -19,7 +19,7 @@ "source": [ "## Install geemap\n", "\n", - "The geemap package has been pre-installed in Google Colab. However, if you would like to install the latest version, you can uncomment and run the following command:" + "The geemap package is pre-installed in Google Colab and is updated to the lastest minor or major release every few weeks. If you would like to install the latest version, you can uncomment and run the following command:" ] }, { @@ -37,7 +37,7 @@ "source": [ "## Import libraries\n", "\n", - "Import the Earth Engine Python API and geemap." + "Import the Earth Engine Python API." ] }, { @@ -46,8 +46,7 @@ "metadata": {}, "outputs": [], "source": [ - "import ee\n", - "import geemap" + "import ee" ] }, { @@ -56,7 +55,7 @@ "source": [ "## EE Authentication\n", "\n", - "Run the following cell will start the Earth Engine authentication. Follow the instructions [here](https://book.geemap.org/chapters/01_introduction.html#earth-engine-authentication) to authenticate Earth Engine." + "Running the following cell will start the Earth Engine authentication. Follow the instructions [here](https://book.geemap.org/chapters/01_introduction.html#earth-engine-authentication) to authenticate Earth Engine." ] }, { @@ -65,7 +64,8 @@ "metadata": {}, "outputs": [], "source": [ - "geemap.ee_initialize()" + "ee.Authenticate()", + "ee.Initialize()" ] }, {