Skip to content

Latest commit

 

History

History
76 lines (55 loc) · 2.71 KB

console.mdx

File metadata and controls

76 lines (55 loc) · 2.71 KB
title description icon
Console
Check out the Tilebox Console to interactively explore your datasets and workflows
terminal

The Tilebox Console is a web-based interface that allows you to explore your datasets and workflows. It's structured into tabs which correspond to the different modules of Tilebox.

Datasets Tab

The datasets tab allows you to explore the datasets that are available for your organization. You can select a dataset, view its collections and load data for a collection in a given time range.

Tilebox Console

Tilebox Console

If you click a specific event time within the data point list view, you'll see a detailed view of that data point.

Tilebox Console

Tilebox Console

Export as Code

Once you have selected a dataset, collection, and time range, you can export the current selection as a python code snippet. This pastes a code snippet like the one below into your clipboard.

from tilebox.datasets import Client

client = Client()
datasets = client.datasets()
sentinel2_msi = datasets.open_data.copernicus.sentinel2_msi
data = sentinel2_msi.collection("S2A_S2MSI1C").load(
    ("2024-07-12", "2024-07-26"),
    show_progress=True,
)
Paste the snippet into a [notebook](/sdks/python/sample-notebooks) to interactively explore the [`xarray.Dataset`](/sdks/python/xarray) that is returned.

Workflows Tab

The workflows tab allows you to create recurrent and near real time tasks.

Tilebox Console

Tilebox Console

Account Tab

API Keys

The API keys tab allows you to manage your API keys. You can create new API keys, revoke existing ones, and view the currently active API keys.

Tilebox Console

Tilebox Console

Usage

The usage tab allows you to view your current usage of the Tilebox API.

Tilebox Console

Tilebox Console