- Install python 3.8
- pip install MGP_SDK
- Create a credentials file called
.mgp-config
- The file should look like:
[mgp] user_name=<your-user-name> user_password=<your-password> client_id=<your-client-id>
from MGP_SDK.interface import Interface
interface = Interface()
print(help(interface))
print(help(interface.streaming))
print(help(interface.account_service))
Documentation site: https://maxar-geospatial-platform.readthedocs.io/en/latest/
Github site: https://github.com/Maxar-Corp/maxar-geospatial-platform
https://jupyter.org/install
In your python 3.7 environment run the following installation commands
pip install notebook
After Installation is completed launch the Jupyter Notebook in your python environment with
jupyter notebook
Create a new Short cut on your desktop. After Naming your shortcut right click and select Properties Under the Shortcut tab In the target box input the following command. Substituting in the Path to your Anaconda3 and the name of your python environment.
%windir%\System32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy ByPass -NoExit -Command "& '<Path to Anaconda3>\condabin\conda-hook.ps1' ; "conda activate <PythonEnvironmentName>"; "jupyter notebook"
in the Start In box input
%cd%
This will allow you to store this shortcut anywhere on your computer.