Skip to content

Add Changelog #52

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/changelog/2025-03-custom-datasets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/changelog/2025-04-spatio-temporal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions assets/changelog/2025-05-tilebox-banner-go.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 67 additions & 2 deletions changelog.mdx
Original file line number Diff line number Diff line change
@@ -1,11 +1,76 @@
---
title: Product Updates
description: New updates and improvements
description: New features, updates and improvements
icon: rss
---

<Update label="May 2025">
## Go Client

<Frame>
![Tilebox Go Client](/assets/changelog/2025-05-tilebox-banner-go.svg)
</Frame>

Excited to announce the release of the Tilebox Go client!

**Features**
- Datasets client
- Statically typed dataset types
- CLI to generate dataset types
- Workflows client
- Go task runners

To get started, check out the [Go SDK documentation](/sdks/go/install).
</Update>

<Update label="April 2025">
## Spatio-Temporal datasets

<Frame>
![Spatio-Temporal Datasets](/assets/changelog/2025-04-spatio-temporal.png)
</Frame>

Spatio-temporal datasets are officially out, fully supported in all languages and available as a category to create in custom datasets!

The core problems that spatio-temporal datasets solve are

- finding relevant data quickly (e.g. all Sentinel 2 granules along the US coastline, last year),
- storing auxiliary geographically coded data (e.g. weather station data, ground truth data),
- cataloging higher level data and results

[Here's a short video](https://share.descript.com/view/khO3QJslhgU) on performance and core capabilities.

We're excited about this as cataloging has until now been an unsexy but hard problem, and it's great to finally have a solution out there

**More information**

- [Spatio Temporal datasets documentation](https://docs.tilebox.com/datasets/types/spatiotemporal)
- All open data now supports spatio-temporal queries
- [Create your own spatio-temporal datasets](/guides/datasets/create)
- [Ingesting spatio-temporal data](/datasets/ingest)

</Update>

<Update label="March 2025">
## Custom Datasets

Coming soon!
<Frame>
![Custom datasets](/assets/changelog/2025-03-custom-datasets.png)
</Frame>

Create your own custom datasets!

- statically typed
- with clients in Python and Go

Use it to organize anything from telemetry, raw payload metadata, auxiliary sensor data, configuration data, or
internal data catalogs.

**Quickstart**
1. Specify the data type in the Console
2. Create a collection
3. Use client.ingest() to ingest a `xarray.Dataset` or `pandas.DataFrame`
4. Query away!

For detailed instructions, check out the [Creating a dataset](/guides/datasets/create) how-to guide.
</Update>
11 changes: 10 additions & 1 deletion mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@
{
"name": "API Reference",
"url": "api-reference"
},
{
"name": "Changelog",
"url": "changelog"
}
],
"primaryTab": {
Expand Down Expand Up @@ -270,10 +274,15 @@
"api-reference/go/workflows/Jobs.Cancel",
"api-reference/go/workflows/Jobs.List",
"api-reference/go/workflows/Collect"

]
}
]
},
{
"group": "Changelog",
"pages": [
"changelog"
]
}
],
"feedback": {
Expand Down