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

# Start Your First Notebook

> [**Wherobots Cloud**](https://cloud.wherobots.com/) allows you to quickly start pre-configured JupyterLab instances for spatial computing, eliminating the need for manual infrastructure setup and software configuration.

export const Button = ({href, children}) => {
  return <div className="not-prose group mt-3">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-xl font-medium hover:bg-[#7c4dff] dark:hover:bg-[#7c4dff] transition-colors duration-200">
        <span>
          {children}
        </span>
      </button>
    </a>
  </div>;
};

<Frame>
  <img src="https://mintcdn.com/wherobots/GrWfTlqud5HZFYRl/images/get-started/get-started-images/load-data.png?fit=max&auto=format&n=GrWfTlqud5HZFYRl&q=85&s=4cdcfd487aaa3217893c8331a87ba2b3" alt="Notebook" width="2074" height="628" data-path="images/get-started/get-started-images/load-data.png" />
</Frame>

<Accordion title="How does Wherobots Cloud simplify geospatial analytics?" icon="circle-question" iconType="solid">
  Wherobots Cloud offers: No installation, scalable processing, enhanced collaboration, pre-built geospatial tools, cost-effectiveness, and easy S3 data integration.
</Accordion>

## What will you learn?

This notebook offers a hands-on guide to geospatial analysis using Apache Sedona within Wherobots.

You'll learn how to:

1. Load vector (NYC buildings) and raster (Central Park elevation) data from S3.
2. Perform SQL-based analyses, like calculating building elevations using zonal statistics.
3. Visualize your findings with SedonaKepler.

## Before you start

You will need a **Wherobots Community Edition Organization** to follow this tutorial. Community Edition Organizations are free.

| Register new Organization or   Login to Wherobots Cloud                                 |                                                            |
| --------------------------------------------------------------------------------------- | ---------------------------------------------------------- |
| <Button href="https://cloud.wherobots.com/auth/register?redirect=%2F">Register</Button> | <Button href="https://cloud.wherobots.com/">Login</Button> |

For more information on setting up your Community Organization, see [Create a Community Edition Organization](/get-started/wherobots-cloud/create-account/#create-a-community-edition-organization).

## Run the Introducing Wherobots Notebook

Let's open the Introducing Wherobots Notebook – your initial hands-on guide to Wherobots.

### Start the runtime

<Steps>
  <Step>
    Log in to [Wherobots Cloud](https://cloud.wherobots.com/).
  </Step>

  <Step>
    Click **Getting Started**

    <Frame>
      <img src="https://mintcdn.com/wherobots/GrWfTlqud5HZFYRl/images/get-started/get-started-images/sample-notebooks.png?fit=max&auto=format&n=GrWfTlqud5HZFYRl&q=85&s=43edc521d3ec6ebfa442401c41a0a9de" alt="Start Notebook" width="1421" height="557" data-path="images/get-started/get-started-images/sample-notebooks.png" />
    </Frame>

    A new window will open. Once your runtime has loaded, your Jupyter Instance will appear in this window.
  </Step>
</Steps>

### Run the example notebook

<Steps>
  <Step>
    A new Jupyter Notebook tab will open, displaying **Part\_1\_Loading\_Data.ipynb**.

    <Accordion title="Don't see the Day 1 Notebook?" icon="circle-question" iconType="solid">
      If the notebook doesn't open automatically, use the file browser to find and open **/examples/Getting\_Started/Part\_1\_Loading\_Data.ipynb**.
    </Accordion>
  </Step>

  <Step>
    Click <Icon icon="play" iconType="solid" /> (**Play**) to run each cell indiviudally.

    <Frame>
      <img src="https://mintcdn.com/wherobots/GrWfTlqud5HZFYRl/images/get-started/get-started-images/getting-started.png?fit=max&auto=format&n=GrWfTlqud5HZFYRl&q=85&s=c6ee5754156ba13ec15fad644582f87b" alt="Run the selected cells" width="1888" height="1010" data-path="images/get-started/get-started-images/getting-started.png" />
    </Frame>
  </Step>
</Steps>
