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.
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.
If you click a specific event time within the data point list view, you'll see a detailed view of that data point.
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,
)
The workflows tab allows you to create recurrent and near real time tasks.
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.
The usage tab allows you to view your current usage of the Tilebox API.