> ## 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.

# RS_RasterToWorldCoordY

Returns the upper left Y coordinate of the given row and column of the given raster geometric units of the geo-referenced raster. If any out of bounds values are given, the Y coordinate of the assumed point considering existing raster pixel size and skew values will be returned.

<img src="https://mintcdn.com/wherobots/AayJA2u8CknIeTgt/images/sql-functions/RS_RasterToWorldCoordY/RS_RasterToWorldCoordY.svg?fit=max&auto=format&n=AayJA2u8CknIeTgt&q=85&s=20b06c402d041880eb101b1d06385bcd" alt="RS_RasterToWorldCoordY" width="620" height="360" data-path="images/sql-functions/RS_RasterToWorldCoordY/RS_RasterToWorldCoordY.svg" />

## Signatures

```sql theme={"system"}
RS_RasterToWorldCoordY(raster: Raster, colX: Integer, rowY: Integer)
```

## Parameters

<ParamField body="raster" type="Raster" required>
  The input raster.
</ParamField>

<ParamField body="colX" type="Integer" required>
  The col x value.
</ParamField>

<ParamField body="rowY" type="Integer" required>
  The row y value.
</ParamField>

## Return type

<ResponseField type="Double">
  A numeric value.
</ResponseField>

## Example

```sql theme={"system"}
SELECT RS_RasterToWorldCoordY(ST_MakeEmptyRaster(1, 5, 10, -123, 54, 5, -10, 0, 0, 4326), 1, 1) from rasters
```

```
54
```
