> For the complete documentation index, see [llms.txt](https://runemate.gitbook.io/runemate-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://runemate.gitbook.io/runemate-documentation/api/game-world.md).

# Game World

{% hint style="info" %}
Explv provides [an excellent tool](https://explv.github.io/) for browsing the world map.
{% endhint %}

### World Structure

The world is structured as follows:

<table><thead><tr><th width="133.33333333333331">Structure</th><th width="105">Size</th><th width="509">Description</th></tr></thead><tbody><tr><td>Region</td><td>64x64</td><td>A portion of the game map.</td></tr><tr><td>Chunk</td><td>8x8</td><td>A portion of a <strong>Region.</strong></td></tr><tr><td>Scene</td><td>104x104</td><td>The portion of the map that is currently loaded.</td></tr><tr><td>Coordinate</td><td>1x1</td><td>A position on the map.</td></tr></tbody></table>

<figure><img src="/files/B0LcufD8WCs52exQQsQu" alt=""><figcaption></figcaption></figure>

In the image above, the blue grid represents **Region** borders, and the shaded light blue square represents the loaded **Scene**. Scenes span multiple regions, but do not necessarily fully enclose all of those regions. The large white numbers are region IDs, which can be resolved using any coordinate contained within that region:

```
y / 64 | ((x / 64) << 8)
```

For example, using the Lumbridge teleport spot (3221, 3219):

```
(3219 / 64) | (3221 / 64) << 8
= 12850
```

<figure><img src="/files/uwuPCAgnk8zMOayhGDKi" alt=""><figcaption></figcaption></figure>
