Skip to content

Latest commit

 

History

History
73 lines (52 loc) · 2.72 KB

console.mdx

File metadata and controls

73 lines (52 loc) · 2.72 KB
title description icon
Console
Explore your datasets and workflows with the Tilebox Console
terminal

The Tilebox Console is a web interface that enables you to explore your datasets and workflows, manage your account and API keys, add collaborators to your team and monitor your usage.

Datasets

The datasets explorer lets you explore available datasets for your team. You can select a dataset, view its collections, and load data for a collection within a specified time range.

Tilebox Console

Tilebox Console

When you click a specific event time in the data point list view, a detailed view of that data point will appear.

Tilebox Console

Tilebox Console

Export as Code

After selecting a dataset, collection, and time range, you can export the current selection as a Python code snippet. This will copy a code snippet like the one below to 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

The workflows section of the console allows you to view jobs, create clusters and create recurring and near real-time tasks.

Tilebox Console

Tilebox Console

Account

API Keys

The API Keys page enables you to manage your API keys. You can create new API keys, revoke existing ones, and view currently active API keys.

Tilebox Console

Tilebox Console

Usage

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

Tilebox Console

Tilebox Console