Get Started
Set up your Python environment to run the GJD use cases
Prerequisites
Before running any of the examples in this section, make sure you have the following software installed.
1. Python
You need Python 3.10 or higher.
- Download from python.org
- Verify your installation:
python --version2. Quarto (for site rendering)
Quarto is used to render the notebooks into the HTML site you are reading. If you only want to run the notebooks locally, you can skip this.
- Download from quarto.org
3. IDE (recommended)
| IDE | Notes |
|---|---|
| JupyterLab | Classic notebook experience |
| VS Code / Cursor | Install the Jupyter extension |
| Google Colab | Zero install — upload the .ipynb file |
Required Python Packages
Install all dependencies at once:
pip install requests pandas matplotlib plotlyOr using a requirements.txt (included in the Python/ folder):
pip install -r requirements.txtPackage overview
| Package | Purpose |
|---|---|
requests |
HTTP requests to the GJD API |
pandas |
Data manipulation and analysis |
matplotlib |
Static charts and visualizations |
plotly |
Interactive charts |
Clone and Render
Once everything is installed, clone the repository and render the Python section:
git clone <repo-url>
cd usecasegjd/Python
quarto renderRun a single notebook
quarto render uc01-forest-cover-caqueta.ipynbLive preview
quarto previewNext Steps
Head to API Authentication to configure your API key, then explore the use cases.