# ST\_GeogFromWKB

Returns a geography type object from WKB representation.

## Signature

> ST\_GeogFromWKB(wkb)

## Usage Examples

```sql
select STPOINT(-122, 37) AS point,
       ST_GeogFromWKB(
         ST_AsBinary(STPOINT(-122, 37))
       ) AS value
from ignoreMe 
```

| point                              | value                              |
| ---------------------------------- | ---------------------------------- |
| 00c05e8000000000004042800000000000 | 80c05e8000000000004042800000000000 |

```sql
select STPOINT(-122, 37, 1) AS point,
       ST_GeogFromWKB(
         ST_AsBinary(STPOINT(-122, 37, 1))
       ) AS value
from ignoreMe 
```

| point                              | value                              |
| ---------------------------------- | ---------------------------------- |
| 80c05e8000000000004042800000000000 | 80c05e8000000000004042800000000000 |

{% hint style="info" %}
You can create geometry objects in the WKB format using the [ST\_AsBinary](https://docs.pinot.apache.org/release-0.12.1/configuration-reference/functions/stasbinary) function.
{% endhint %}


---

# 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-0.12.1/configuration-reference/functions/stgeogfromwkb.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.
