Town 13 is a Large Map with dimensions of 10x10 km<sup>2</sup>. It is divided into 36 tiles, most with dimensions of 2x2 km<sup>2</sup> (some edge tiles are smaller). There are numerous contrasting regions to the city including urban, residential and rural areas, along with a large highway system surrounding the city with a ringroad. The architectural styles reflect those of many medium to large cities across North America.
Town 13 has been designed as an adjunct to Town 12, such that they can serve as a __train-test pair__. The towns share many common features, but also many differences in the styles of buildings, road textures, pavement textures and also vegetation. Using one of the pair to produce training data and then using the other for testing is ideal for exposing overfitting issues that might be arising while developing an AD stack.
The navigator interactive map can be used to browse the town and derive coordinates to use in the CARLA simulator.
__Using the navigator__:
*`left mouse button` - click and hold, drag left, right, up or down to move the map
*`scroll mouse wheel` - scroll down to zoom out, scroll up to zoom in on the location under the mouse pointer
*`double click` - double click on a point on the map to record the coordinates, you will find the coordinates in the text and the code block just below the map
After double clicking on a point of interest, the navigator will display the corresponding CARLA coordinates and update them in the following code block. Copy and paste the code into a notebook or Python terminal to translate the spectator to the desired location. You will need first to [connect the client and set up the world object](tuto_first_steps.md#launching-carla-and-connecting-the-client):
Town 13's downtown area is a large span of high-rise skyscrapers arranged into blocks on a consistent grid of roads, resembling downtown areas in many large American and European cities.
The community buildings are a set of 2-4 storey apartment buildings in a colorful bohemian style with businesses on the ground floors, located next to the downtown area of the city.
The high density residential areas of Town 13 have many 2-10 storey apartment buildings with commercial properties like cafes and retail stores at street level. Many of the residential blocks have balconies with sun shades similar to those in sunny southern European countries.
The low density residential regions of Town 13 reflect the suburbs of many European cities, with one and two story homes surrounded by fenced gardens and garages.
Town 13 also has rural regions with characteristic farmland buildings like wooden barns and farmhouses, windmills, grain silos, corn fields, hay bails and rural fencing. These areas have unmarked country dirt roads and single lane interurban roads for inter-city traffic.
![rural](../img/catalogue/maps/town13/rural.webp)
#### Water:
There are several bodies of water in town 13 including a large lake with a central island and several ponds in rural areas.
![water](../img/catalogue/maps/town13/water.webp)
<style>
@keyframes fadeMe {
from {
color: #77aaff;
}
to {
color: #000000;
}
}
</style>
<script>
window.addEventListener('load', function () {
var text_coord_x = document.getElementById("carlacoord_x")
var text_coord_y = document.getElementById("carlacoord_y")