# TO_GEOPOINT

Converts an input value to a `geo_point` value. A string will only be successfully converted if it adheres to the WKT Point format.

## Syntax

`TO_GEOPOINT(field)`

### Parameters

#### `field`

The input value to be converted. This can be a single- or multi-valued column or an expression.

## Examples

Convert a WKT Point string to a `geo_point` value:

```esql
ROW wkt = "POINT(42.97109630194 14.7552534413725)"
| EVAL pt = TO_GEOPOINT(wkt)
```

## Limitations

- The input string must strictly follow the WKT Point format for successful conversion.