Skip to content

Tilebox Datasets

A high-performance platform for structuring and querying satellite metadata, with curated open data catalogs and support for custom dataset collections.

Tilebox Datasets ingests and structures metadata for efficient querying, reducing data transfer and storage costs.

Create your own Custom Datasets and easily set up a private, custom, strongly typed and highly available catalogue, or explore any of the wide range of available public open data datasets available on Tilebox.

Learn more about datasets by exploring the following sections:

Get familiar with some key terms when working with time series datasets.

Data points

Data points are the individual entities that form a dataset. Each data point has a set of required fields determined by the dataset type, and can have custom user-defined fields.

Datasets

Datasets act as containers for data points. All data points in a dataset share the same type and fields. Tilebox supports different types of datasets, currently those are Timeseries and Spatio-temporal datasets.

Collections

Collections group data points within a dataset. They help represent logical groupings of data points that are often queried together.

Prerequisites

  • You have installed the python tilebox-datasets package or go library.
  • You have created a Tilebox API key.

After meeting these prerequisites, you can create a client instance to interact with Tilebox Datasets.

from tilebox.datasets import Client
client = Client(token="YOUR_TILEBOX_API_KEY")

You can also set the TILEBOX_API_KEY environment variable to your API key. You can then instantiate the client without passing the token argument. Python will automatically use this environment variable for authentication.

from tilebox.datasets import Client
# requires a TILEBOX_API_KEY environment variable
client = Client()

After creating a client instance, you can start exploring available datasets. A straightforward way to do this in an interactive environment is to list all datasets and use the autocomplete feature in your Jupyter notebook.

datasets = client.datasets()
datasets. # trigger autocomplete here to view available datasets

AuthenticationError occurs when the client fails to authenticate with the Tilebox API. This may happen if the provided API key is invalid or expired. A client instantiated with an invalid API key won’t raise an error immediately, but an error will occur when making a request to the API.

client = Client(token="invalid-key") # runs without error
datasets = client.datasets() # raises AuthenticationError