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.
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.
When you click a specific event time in the data point list view, a detailed view of that data point will appear.
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,
)
The workflows section of the console allows you to view jobs, create clusters and create recurring and near real-time tasks.
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.
The Usage page allows you to view your current usage of the Tilebox API.