diff --git a/datasets/ingest.mdx b/datasets/ingest.mdx
index c956d5d..84712f2 100644
--- a/datasets/ingest.mdx
+++ b/datasets/ingest.mdx
@@ -1,7 +1,7 @@
---
title: Ingesting Data
sidebarTitle: Ingest
-description: Learn how to delete data points from Tilebox datasets.
+description: Learn how to ingest data into a Tilebox dataset.
icon: up-from-bracket
---
@@ -24,8 +24,10 @@ Check out the examples below for common scenarios of ingesting data into a colle
## Dataset schema
Tilebox Datasets are strongly-typed. This means you can only ingest data that matches the schema of a dataset. The schema is defined during dataset creation time.
+
The examples on this page assume that you have access to a [Timeseries dataset](/datasets/types/timeseries) that has the following schema:
+
Check out the [Creating a dataset](/guides/datasets/create) guide for an example of how to create such a dataset.
@@ -45,6 +47,7 @@ The examples on this page assume that you have access to a [Timeseries dataset](
A full overview of available data types can be found in the [here](/datasets/concepts/datasets#field-types).
+
Once we've defined the schema and created a dataset, we can access it and create a collection to ingest data into.
diff --git a/guides/datasets/create.mdx b/guides/datasets/create.mdx
index 705f728..f3ab991 100644
--- a/guides/datasets/create.mdx
+++ b/guides/datasets/create.mdx
@@ -4,13 +4,24 @@ description: Learn how to create a dataset
icon: database
---
-This page guides you through the process of creating a dataset in Tilebox.
+This page guides you through the process of creating a dataset in Tilebox using the [Tilebox Console](/console).
-## Step-by-step guide
+## Related documentation
+
+
+
+ Learn about Tilebox datasets and how to use them.
+
+
+ Learn about Timeseries datasets, which link each data point to a specific point in time.
+
+
+
+## Creating a dataset in the Console
-
- Create a dataset in Tilebox by going to [My datasets](https://console.tilebox.com/datasets/my-datasets) and clicking the "Create dataset" button.
+
+ Create a dataset in Tilebox by going to [My datasets](https://console.tilebox.com/datasets/my-datasets) and clicking the `Create dataset` button.
Choose a [dataset kind](/datasets/concepts/datasets#dataset-types) from the dropdown menu. Required fields for the selected dataset kind are automatically added.
@@ -46,8 +57,8 @@ This page guides you through the process of creating a dataset in Tilebox.
-
- Once you're done completing the fields, click "Create" to create the dataset. You are redirected to your newly created dataset.
+
+ Once you're done completing the fields, click "Create" to create and save the dataset. You are redirected to your newly created dataset.
diff --git a/guides/datasets/ingest.mdx b/guides/datasets/ingest.mdx
index 7dc4c03..a2fa4bc 100644
--- a/guides/datasets/ingest.mdx
+++ b/guides/datasets/ingest.mdx
@@ -1,18 +1,29 @@
---
title: Ingesting data
-description: Learn how to ingest data into a Tilebox dataset
-icon: up-from-bracket
+description: Learn how to ingest an existing dataset into Tilebox
+icon: folder-arrow-up
---
import { CodeOutputHeader } from '/snippets/components.mdx';
+
+
+ This guide is also available as a Google Colab notebook. Click here for an interactive version.
+
+
+
This page guides you through the process of ingesting data into a Tilebox dataset. Starting from an existing
dataset available as file in the [GeoParquet](https://geoparquet.org/) format, we'll walk you through the process of
ingestion that data into Tilebox as a [Timeseries](/datasets/types/timeseries) dataset.
-
-
- This example is also available as a Google Colab notebook. Click here to navigate to an interactive example.
+## Related documentation
+
+
+
+ Learn about Tilebox datasets and how to use them.
+
+
+ Learn how to ingest data into a Tilebox dataset.