> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Tilebox

> Tilebox is a developer-friendly tool for space data management and workflow orchestration, purpose-built for ground segment and orbital applications alike.

export const HeroCard = ({children, title, description, href}) => {
  return <a className="border-b pb-8 cursor-pointer border-gray-500 dark:border-gray-800 hover:!border-primary dark:hover:!border-primary-light" href={href}>
      {children}
      <h1 className="mt-4 font-semibold text-gray-900 dark:text-white mb-2 text-lg">{title}</h1>
      <p className="mt-1 text-gray-600 dark:text-gray-400 text-sm leading-6">{description}</p>
    </a>;
};

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.

## Modules

Tilebox consists of two primary modules:

<Columns cols={3}>
  <HeroCard title="Datasets" 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." href="/datasets/introduction">
    <img src="https://mintcdn.com/tilebox/1gnXQkA0KGk_HxFE/assets/tilebox-datasets-hero.svg?fit=max&auto=format&n=1gnXQkA0KGk_HxFE&q=85&s=8bf07442340adbcd377c23cf51fa18c5" alt="Datasets" width="1080" height="400" data-path="assets/tilebox-datasets-hero.svg" />
  </HeroCard>

  <HeroCard title="Workflows" description="A parallel processing engine that offers intuitive creation of dynamic tasks as code, supporting effortless parallel execution across various compute environments, including on-premise and auto-scaling public cloud clusters." href="/workflows/introduction">
    <img src="https://mintcdn.com/tilebox/1gnXQkA0KGk_HxFE/assets/tilebox-workflows-hero.svg?fit=max&auto=format&n=1gnXQkA0KGk_HxFE&q=85&s=2317a9a7f9f14adb140a3df42990f77a" alt="Workflows" width="1080" height="400" data-path="assets/tilebox-workflows-hero.svg" />
  </HeroCard>
</Columns>

## Getting Started

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

<Columns cols={3}>
  <Card title="Tilebox Console" icon="terminal" href="/console" horizontal />

  <Card title="Create an API Key" icon="key" href="/authentication" horizontal />

  <Card title="Quickstart" icon="rocket" href="/quickstart" horizontal />
</Columns>

## Guides

You can also start by looking through these guides:

<Columns cols={2}>
  <Card title="Timeseries Datasets" icon="database" href="/datasets/introduction">
    Learn about time-series datasets and their structure.
  </Card>

  <Card title="Querying Data" icon="server" href="/datasets/query/querying-data">
    Discover how to query and load data from a dataset.
  </Card>

  <Card title="Create Tasks" icon="laptop-code" href="/workflows/concepts/tasks">
    Gain a deeper understanding of how to create tasks using the Tilebox Workflow Orchestrator.
  </Card>

  <Card title="Setting up Task Runners" icon="circle-nodes" href="/workflows/concepts/task-runners">
    Find out how to deploy Task Runners to run workflows in a parallel, distributed manner.
  </Card>
</Columns>
