Explore datasets
One of the first things that you may want to do within EOTDL is to explore the available datasets. You can do this at all accesibilit layers.
User interface
The easier and more intuitive way to explore the available datasets is through the user interface.
You can filter by different criteria and click on a dataset card to see more information about it, explore it in a notebook or evan label the data.
CLI
You can retrieve the list of all the datasets using the following CLI command:
eotdl datasets list
You can filter the datasets by name using the following CLI command:
eotdl datasets list --name "dataset name"
This command will return all datasets that match the given name.
Library
You can retrieve the list of all the datasets using the following Python code:
from eotdl.datasets import retrieve_datasets
retrieve_datasets()
And similarly, retrieve all the datasets that match a particular name
retrieve_datasets("dataset-name")
API
You can retrieve the list of all datasets using the following API call:
curl -X 'GET' \
'https://api.eotdl.com/datasets' \
-H 'accept: application/json'
You can also retrieve the information of one particular dataset using the following API call:
curl -X 'GET' \
'https://api.eotdl.com/datasets?name=dataset-name' \
-H 'accept: application/json'