add authorization instructions to RTD

Issue #1 resolved
Andreas Janz repo owner created an issue

Authorize EarthEngine API

Install earthengine module from QGIS

Click settings -> User profiles -> Open user profile folder

Navigate to subdirectory python\plugins\ee_plugin\extlibs_windows

Copy the full path to this directory

Open OSGeo4W Shell

Run the following commands

py3_env

python

import sys

sys.path.append(r“ ------ paste full path to the above directory --------“)

import ee

ee.Authenticate

Allow the browser window to open up and follow the instructions in your browser

Copy the authentification code and paste it in the OSGeo4W shell

Comments (2)

  1. Stefan

    The last command is a function that is called without arguments, so it needs brackets at the end:

    ee.Authenticate()
    

  2. Log in to comment