Skip to content

Commit 82a5782

Browse files
Upgrade card groups to columns (#66)
1 parent 3a3e09b commit 82a5782

File tree

20 files changed

+60
-60
lines changed

20 files changed

+60
-60
lines changed

datasets/concepts/collections.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ if err != nil {
188188

189189
## Next steps
190190

191-
<CardGroup cols={2}>
191+
<Columns cols={2}>
192192
<Card title="Query Data" icon="server" href="/datasets/query" horizontal>
193193
Learn how to query data from a collection.
194194
</Card>
195-
</CardGroup>
195+
</Columns>

datasets/concepts/datasets.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ icon: database
1010

1111
## Related Guides
1212

13-
<CardGroup cols={2}>
13+
<Columns cols={2}>
1414
<Card title="Creating a dataset" icon="database" href="/guides/datasets/create" horizontal>
1515
Learn how to create a Timeseries dataset using the Tilebox Console.
1616
</Card>
1717
<Card title="Ingesting data" icon="up-from-bracket" href="/guides/datasets/ingest" horizontal>
1818
Learn how to ingest an existing CSV dataset into a Timeseries dataset collection.
1919
</Card>
20-
</CardGroup>
20+
</Columns>
2121

2222
## Dataset types
2323

@@ -28,7 +28,7 @@ or additionally also spatially filtered queries.
2828
To find out which fields are required for each dataset type check out the documentation for the available dataset types
2929
below.
3030

31-
<CardGroup cols={2}>
31+
<Columns cols={2}>
3232
<Card title="Timeseries Data" icon="diamonds-4" href="/datasets/types/timeseries" horizontal>
3333
Each data point is linked to a specific point in time. Common for satellite telemetry, or other time-based data.
3434
Supports efficient time-based queries.
@@ -37,7 +37,7 @@ below.
3737
Each data point is linked to a specific point in time and a location on the Earth's surface. Common for satellite
3838
imagery. Supports efficient time-based and spatially filtered queries.
3939
</Card>
40-
</CardGroup>
40+
</Columns>
4141

4242
## Dataset specific fields
4343

datasets/introduction.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ explore any of the wide range of [available public open data datasets](/datasets
1212

1313
Learn more about datasets by exploring the following sections:
1414

15-
<CardGroup cols={2}>
15+
<Columns cols={2}>
1616
<Card title="Datasets" icon="database" href="/datasets/concepts/datasets" horizontal>
1717
Learn what dataset types are available on Tilebox and how to create, list and access them.
1818
</Card>
@@ -25,7 +25,7 @@ Learn more about datasets by exploring the following sections:
2525
<Card title="Ingesting Data" icon="up-from-bracket" href="/datasets/ingest" horizontal>
2626
Learn how to ingest data into a collection.
2727
</Card>
28-
</CardGroup>
28+
</Columns>
2929

3030
<Note>
3131
For a quick reference to API methods or specific parameter meanings, [check out the complete datasets API Reference](/api-reference/python/tilebox.datasets/Client).
@@ -169,8 +169,8 @@ func main() {
169169

170170
## Next steps
171171

172-
<CardGroup cols={2}>
172+
<Columns cols={2}>
173173
<Card title="Accessing datasets" icon="database" href="/datasets/concepts/datasets" horizontal />
174174
<Card title="Async support" icon="rotate" href="/sdks/python/async" horizontal />
175175
<Card title="Working with Xarray" icon="chart-bar" href="/sdks/python/xarray" horizontal />
176-
</CardGroup>
176+
</Columns>

guides/datasets/create.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ This page guides you through the process of creating a dataset in Tilebox using
88

99
## Related documentation
1010

11-
<CardGroup cols={2}>
11+
<Columns cols={2}>
1212
<Card title="Datasets" icon="database" href="/datasets/concepts/datasets" horizontal>
1313
Learn about Tilebox datasets and how to use them.
1414
</Card>
1515
<Card title="Timeseries Datasets" icon="diamonds-4" href="/datasets/types/timeseries" horizontal>
1616
Learn about Timeseries datasets, which link each data point to a specific point in time.
1717
</Card>
18-
</CardGroup>
18+
</Columns>
1919

2020
## Creating a dataset in the Console
2121

guides/datasets/ingest.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ description: Learn how to ingest an existing dataset into Tilebox
44
icon: up-from-bracket
55
---
66

7-
<CardGroup cols={1}>
7+
<Columns cols={1}>
88
<Card title="Open as Notebook" icon="book" href="https://colab.research.google.com/drive/1QS-srlWPMJg4csc0ycn36yCX9U6mvIpW" horizontal>
99
This guide is also available as a Google Colab notebook. Click here for an interactive version.
1010
</Card>
11-
</CardGroup>
11+
</Columns>
1212

1313
This page guides you through the process of ingesting data into a Tilebox dataset. Starting from an existing
1414
dataset available as file in the [GeoParquet](https://geoparquet.org/) format, you'll go through the process of
@@ -20,14 +20,14 @@ ingesting that data into Tilebox as a [Timeseries](/datasets/types/timeseries) d
2020

2121
## Related documentation
2222

23-
<CardGroup cols={2}>
23+
<Columns cols={2}>
2424
<Card title="Datasets" icon="database" href="/datasets/concepts/datasets" horizontal>
2525
Learn about Tilebox datasets and how to use them.
2626
</Card>
2727
<Card title="Ingest" icon="up-from-bracket" href="/datasets/ingest" horizontal>
2828
Learn how to ingest data into a Tilebox dataset.
2929
</Card>
30-
</CardGroup>
30+
</Columns>
3131

3232
## Downloading the example dataset
3333

@@ -234,7 +234,7 @@ on one of the data points.
234234
Congrats. You've successfully ingested data into Tilebox. You can now explore the data in the console and use it for
235235
further processing and analysis.
236236

237-
<CardGroup cols={2}>
237+
<Columns cols={2}>
238238
<Card title="Query Data" icon="server" href="/datasets/query" horizontal>
239239
Learn all about [querying your newly created dataset](https://docs.tilebox.com/datasets/query)
240240
</Card>
@@ -244,4 +244,4 @@ further processing and analysis.
244244
<Card title="Open Data" icon="star" href="/datasets/open-data" horizontal>
245245
Check out a growing number of publicly available open data datasets on Tilebox
246246
</Card>
247-
</CardGroup>
247+
</Columns>

guides/workflows/multi-language.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ description: Learn how to create workflows that use tasks written in different l
44
icon: diagram-project
55
---
66

7-
<CardGroup cols={1}>
7+
<Columns cols={1}>
88
<Card title="Open in GitHub" icon="github" href="https://github.com/tilebox/examples/tree/main/workflows-multilang" horizontal>
99
The code for this guide is available on GitHub.
1010
</Card>
11-
</CardGroup>
11+
</Columns>
1212

1313
## Tilebox languages and SDKs
1414

@@ -205,11 +205,11 @@ Image captured for [40.75, -73.98] with 30m resolution and bands [489, 560.6, 66
205205

206206
## Next Steps
207207

208-
<CardGroup cols={1}>
208+
<Columns cols={1}>
209209
<Card title="Open in GitHub" icon="github" href="https://github.com/tilebox/examples/tree/main/workflows-multilang" horizontal>
210210
The code for this guide is available on GitHub.
211211
</Card>
212-
</CardGroup>
212+
</Columns>
213213

214214
As a learning exercise, you can try to change the [News API Workflow](/workflows/concepts/tasks#dependencies-example) to replace the `FetchNews` task with a Go task and keep all the other tasks in Python.
215215
You'll learn how to submit a subtask in another language than what the current task is executed in.

introduction.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ mode: wide
99

1010
import { HeroCard } from '/snippets/components.mdx';
1111

12-
Tilebox is a space data native distributed computing tool. It provides a framework that simplifies access, processing, and distribution of space data across different environments enabling efficient multi-language, multi-cluster workflows. Tilebox integrates seamlessly with your existing infrastructure, ensuring that you maintain complete control over your data and algorithms.
12+
Tilebox is a lightweight space data management and orchestration software - on ground and in orbit. It provides a framework that simplifies access, processing, and distribution of space data across different environments enabling efficient multi-language, multi-cluster workflows. Tilebox integrates seamlessly with your existing infrastructure, ensuring that you maintain complete control over your data and algorithms.
1313

1414
## Modules
1515

1616
Tilebox consists of two primary modules:
1717

18-
<CardGroup cols={3}>
18+
<Columns cols={3}>
1919
<HeroCard
2020
title="Datasets"
2121
description="A data access module with upstream integrations to space service providers, enabling instant data access for scientists through high-performance APIs and easy-to-use client SDKs."
@@ -30,13 +30,13 @@ Tilebox consists of two primary modules:
3030
>
3131
<img src="/assets/tilebox-workflows-hero.svg" alt="Workflows" />
3232
</HeroCard>
33-
</CardGroup>
33+
</Columns>
3434

3535
## Getting Started
3636

3737
To get started, check out some of the following resources:
3838

39-
<CardGroup cols={3}>
39+
<Columns cols={3}>
4040
<Card
4141
title="Tilebox Console"
4242
icon="terminal"
@@ -55,13 +55,13 @@ To get started, check out some of the following resources:
5555
href="/quickstart"
5656
horizontal
5757
/>
58-
</CardGroup>
58+
</Columns>
5959

6060
## Guides
6161

6262
You can also start by looking through these guides:
6363

64-
<CardGroup cols={2}>
64+
<Columns cols={2}>
6565
<Card
6666
title="Timeseries Datasets"
6767
icon="database"
@@ -89,4 +89,4 @@ You can also start by looking through these guides:
8989
href="/workflows/concepts/task-runners">
9090
Find out how to deploy Task Runners to run workflows in a parallel, distributed manner.
9191
</Card>
92-
</CardGroup>
92+
</Columns>

quickstart.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@ If you prefer to work locally, follow these steps to get started.
101101
<Step title="Explore Further">
102102
Review the following guides to learn more about the modules that make up Tilebox:
103103

104-
<CardGroup cols={2}>
104+
<Columns cols={2}>
105105
<Card title="Creating a dataset" icon="database" href="/guides/datasets/create" horizontal>
106106
Learn how to create a Timeseries dataset using the Tilebox Console.
107107
</Card>
108108
<Card title="Ingesting data" icon="up-from-bracket" href="/guides/datasets/ingest" horizontal>
109109
Learn how to ingest an existing CSV dataset into a Timeseries dataset collection.
110110
</Card>
111-
</CardGroup>
111+
</Columns>
112112
</Step>
113113

114114
</Steps>
@@ -304,14 +304,14 @@ If you prefer to work locally, follow these steps to get started.
304304
<Step title="Explore Further">
305305
Review the following guides to learn more about the modules that make up Tilebox:
306306

307-
<CardGroup cols={2}>
307+
<Columns cols={2}>
308308
<Card title="Creating a dataset" icon="database" href="/guides/datasets/create" horizontal>
309309
Learn how to create a Timeseries dataset using the Tilebox Console.
310310
</Card>
311311
<Card title="Ingesting data" icon="up-from-bracket" href="/guides/datasets/ingest" horizontal>
312312
Learn how to ingest an existing CSV dataset into a Timeseries dataset collection.
313313
</Card>
314-
</CardGroup>
314+
</Columns>
315315
</Step>
316316

317317
</Steps>

sdks/go/examples.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ More examples can be found throughout the docs.
1111

1212
## Workflows examples
1313

14-
<CardGroup cols={2}>
14+
<Columns cols={2}>
1515
<Card title="Hello World" icon="hand-wave" href="https://github.com/tilebox/tilebox-go/tree/main/examples/workflows/helloworld" horizontal>
1616
How to use Tilebox Workflows to submit and execute a simple task.
1717
</Card>
@@ -24,15 +24,15 @@ More examples can be found throughout the docs.
2424
<Card title="OpenTelemetry Observability" icon="eye" href="https://github.com/tilebox/tilebox-go/blob/main/examples/workflows/opentelemetry" horizontal>
2525
How to set up tracing and logging for workflows using OpenTelemetry.
2626
</Card>
27-
</CardGroup>
27+
</Columns>
2828

2929
## Datasets examples
3030

31-
<CardGroup cols={2}>
31+
<Columns cols={2}>
3232
<Card title="Query" icon="server" href="https://github.com/tilebox/tilebox-go/blob/main/examples/datasets/query/main.go" horizontal>
3333
How to query datapoints from a Tilebox dataset.
3434
</Card>
3535
<Card title="Ingest and delete" icon="up-from-bracket" href="https://github.com/tilebox/tilebox-go/blob/main/examples/datasets/ingest/main.go" horizontal>
3636
How to create a collection, ingest datapoints, and then delete them.
3737
</Card>
38-
</CardGroup>
38+
</Columns>

sdks/go/install.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ icon: download
88

99
Tilebox offers a Go SDK for accessing Tilebox services. It additionally includes a command-line tool (tilebox-generate) that can be installed separately.
1010

11-
<CardGroup cols={2}>
11+
<Columns cols={2}>
1212
<Card title="tilebox-go" icon="golang" href="https://github.com/tilebox/tilebox-go" horizontal>
1313
Datasets and workflows client for Tilebox
1414
</Card>
1515
<Card title="tilebox-generate" icon="terminal" href="https://github.com/tilebox/tilebox-generate" horizontal>
1616
Command-line tool to generate Tilebox datasets types for Go
1717
</Card>
18-
</CardGroup>
18+
</Columns>
1919

2020
## Installation
2121

0 commit comments

Comments
 (0)