# ST\_GeometryType

Returns the type of the geometry as a string

## Signature

> ST\_GeometryType(geometry)

## Usage Examples

These examples are based on the [Streaming Quick Start](https://docs.pinot.apache.org/release-1.0.0/basics/getting-started/quick-start#streaming).

```sql
select location, ST_GeometryType(location) AS type
from meetupRsvp 
LIMIT 1
```

| location                           | type  |
| ---------------------------------- | ----- |
| 80c00dae147ae147ae404435c28f5c28f6 | Point |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.pinot.apache.org/release-1.0.0/configuration-reference/functions/stgeometrytype.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
