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

# ST_GetReverseGeocodingLayers

Returns an Array of layers that can be passed to `ST_ReverseGeocode`. You can change the geocodes table or
view used by setting `spark.sedona.reverse.geocode.table` in the spark config.

<Note>
  the geometry must use EPSG:4326. If the SRID is set to a value other than 4326, the function will throw an exception. If the SRID is not set, the function will assume the geometry is in EPSG:4326.
</Note>

## Signatures

```sql theme={"system"}
ST_GetReverseGeocodingLayers()
```

## Example

```sql theme={"system"}
SELECT ST_GetReverseGeocodingLayers()
```

```
[place, address, divisions-locality, divisions-country, divisions-dependency, divisions-localadmin, divisions-macrohood, divisions-county, divisions-microhood, divisions-neighborhood, divisions-region]
```
