Elevation data from all The Witcher 3 levels
Since GitHub's file size limit is too small for detailed terrain data, the images are hosted on MEGA (.png).
Terrain | Size (m) | Elevation Range (m) | Res (px) | Download |
---|---|---|---|---|
White Orchard | 2000^2 | -37, 45 | 4096^2 | 19MB |
Novigrad + Velen | 8625^2 | -65, 295 | 23552^2 | 389MB |
Skellige | 7472^2 | -77, 308 | 16384^2 | 170MB |
Kaer Morhen | 8000^2 | -118, 1682 | 16384^2 | 152MB |
Toussaint | 8000^2 | -15, 1785 | 16384^2 | 132MB |
Vizima Palace | 3600^2 | -50, 50 | 4608^2 | 1MB |
Isle Of Mist | 1868^2 | -80, 308 | 4096^2 | 12MB |
The Spiral | 8000^2 | -100, 600 | 24576^2 | 386MB |
White Orchard Winter | 2000^2 | -37, 45 | 4096^2 | 19MB |
White Orchard Winter is a slightly altered version used in the Empress Ending, The Spiral is where "Through Time and Space" takes place. In the game, all the terrains are centered, so the corners sit at {-0.5 * size}.
Feel free to share your creations in the Showcase Discussion, I'm always curious to see what you came up with.
Here is a quick guide on how to obtain the files on your own (Windows):
-
Install the nightly build of WolvenKit 7 (https://github.com/WolvenKit/WolvenKit-7).
-
Create a new mod in WolvenKit and open the asset browser
-
Disable the "limit results" checkbox and search for "w2ter.1.buffer", mark all and add them to the mod
-
After WolvenKit has finished exporting the files, close it, open your mod folder and browse to files/Mod/Bundle/levels/[level]/terrain_tiles
-
Since the way the files are named does not fully represent their order, we need to rename the files first. Since there is quite a lot of them, install EF Multi File Renamer (efsoftware.com/mr/e.htm, trial version).
-
Download efmr_ruleset.mrt from the repository, hit "Import Rule" in EF Multi File Renamer and select it.
-
IN EFMR, navigate to the folder with the terrain files, make sure the rules are activated and hit Rename.
-
Install ImageMagick (imagemagick.org)
-
Open the Console and also change the directionary to that folder.
-
Find out the terrains Tile Resolution using WolvenKit. The number is found in the terrains W2W file under "CClipMap #1", and will either be 256, 512 or 1024.
-
We will now convert the raw image data to a readable format like PNG. To do this, enter this command in the console, set the resolution value and hit enter: FOR /R %a IN (*.buffer) DO magick convert -size [tileRes]x[tileRes] -depth 16 -define quantum:format=unsigned gray:"%~a" "%~dpna.png"
-
After all the images have been converted, open the folder and scoll all the way down, and check for the highest value in the folder (3, 15, 31 etc.).
-
Open the console again and enter this command: magick montage -mode concatenate -tile [VALUE+1]x tile_*.png joined.png
-
After the individual images have been merged (this can take a bit of time depending on your computer and what image it is), you should see joined.png in your folder. Open it up and check if everything looks right, if yes, you can delete all the other files in the folder.
-
Now, the last thing you need to do is to flip the image. You can do so with magick convert -flip joined.png flipped.png, or just with any image editor like GIMP (Image => Transform => Flip Vertically)
If you have any questions or problems, head to the Discussions page and ask away. :D
-
Meta information (e. g. size, tile resolution or elevation range) can be found in each worlds W2W file.
-
If you wonder what data is stored in the other w2ter.N.buffer files, check out this GDC Presentation: https://archive.org/details/GDC2014Gollent
To sum it up:
-
The individual tiles are dynamicly streamed depending on player location.
-
w2ter.2.buffer (control map) contains internal information on how the terrain is textured (texture indices, UV scale, slope threshold)
-
Buffers 3-6 are mipmaps of height and control map, followed by the color (tint) map
-
-
If you're looking to obtain data beyond just height, some of the python scripts in this repo might prove useful
I uploaded these height maps for other The Witcher fans to use them in their own fan projects since obtaining them manually can take quite a bit of time.
While I heavily doubt that CDPR will have something against this, a legal permission to do so does not exist. You should limit the use of data extracted from the game in general to personal fan projects and refrain from using it in any commercial way without having explicit permission by CDPR.
In the case that CDPR should have something against the height data being up for download here, please contact me and I will take the files down.