User Tools

Site Tools


arma3:terrain:real-world-data-tutorial

This is an old revision of the document!


ArmA 3 Real World Data Terrain Tutorial

2020-07-01 Update

How to create ArmA 3 terrain using real world data tutorial.

This tutorial assumes you have already experience making arma3 terrains, if you do not then please read PMC Ultimate Terrain Tutorial first.

This tutorial uses web browser, global mapper, QGIS, terra incognita and Imagemagick to get terrain source files into terrain builder.

Important Note: Global Mapper is commercial software which costs like $500, you cannot make ArmA 3 terrain of decent size with the TRIAL version. If you do not have full / commercial version of global mapper I suggest you read Ross's QGIS real world data tutorial instead, QGIS is a free open source software.

Choose Terrain Location

Use google/maps or ArcGIS to find terrain location somewhere on the globe.

These browser based maps are so much quicker / lightweight to use than global mapper.

In our tutorial example we chose Austria.

Create Global Mapper Project

Open global mapper. We use v18.2 in this tutorial but mostly the commands are the same even with v15 or even v13.

Setup Map View

Choose online sources → worldwide data → world street map, but dont click connect just yet.

Global mapper is damned sluggish when you browse the maps, thats why we used google/maps to browse our location first so we know excatly where we want to go. So you can to tweak some detail levels, this is not necessary but especially for beginner its so much nicer to browse with quicker global mapper.

In display options box, use the detail level slider to bring it down / left about 0.25 or even lower if you want. Then click connect.

Zoom To Target

Now you see the whole world map. Use Zoom icon (ALT-Z) which should be selected, then drag a very small box around the austria we checked out in google/maps.

You might have to zoom few times if you dont get it right the first time, its easy to zoom at wrong spot etc.

You can drag the map around with having the hand icon pan (ALT-G) selected and then just LMB hold and drag map around, mouse wheel zooms but be careful as the loading of new data is so damn sluggish (even on lower details).

Switch to UTM Projection

Now that you are close enough, its not that important how well aligned the map is it just has to be roughly in the area, we switch into UTM projection.

Select Tools → configure → projection.

Select from the projection dropdown UTM.

You notice that in austria global mapper offers UTM zone 33, this is fine (yes terrain builder uses UTM 31N but we'll deal with that later).

Click apply to start converting the current project into UTM projection.

This will take a long time, global mapper doesnt show any progress bar and feels unresponsive, pe patient and wait.

When its done, click OK to close projection dialog.

Now your project is on UTM projection.

Create Grid

Global mapper user created feature grid is the one that will be your terrain area. Click create grid icon on top menu bar (no hotkey, hoh).

Now click somewhere on the map view and it brings up the grid setup dialog.

Type in width / height values for your terrain size, type in 40960 which is 40km size for terrain.

Then click OK to finish the grid.

Moving Grid

Now that the grid has been selected, you can move it with (CTRL-SHIFT-M), RMB → move area feature or with main menu bar move selected features icon.

Here I have moved the grid to location of my liking, also zoomed the map in a bit and panned it around bit more center.

As the terrain location and grid is finalized, its time to save the project. I use filename “Tut_Austria_40km” when saving.

Terra Incognita

Terra incognita is used to download the satellite imagery. You could also download straight from global mapper but it will crash very often, almost every time while downloading large satellites so its not really a good idea.

Open terra incognita and select map source → openstreetmap.

Now on global mapper untick world street map layer (we dont need it right now), then click the globe button.

Select openstreetmap.org global street maps, make sure select area to download → current screen bounds is selected, then click connect button. Note; you can again choose detail level but as we already are in pretty close zoom it wont be necessary.

Have digitizer tool selected.

Then click somewhere outside the grid to unselect it.

Use terra incognita to zoom close enough to the global mapper area. It is very difficult as there is not automated way to align these two, you just have to use mk.1 eyeball to align them.

In terra incognita use selection → rectangle selection, now you are in the box drawing mode.

Drag a box and then resize it by dragging the edges so it will be about 45 x 45 kilometers. Do not click on empty dark map location because that clears the selection. You can LMB drag the selection around.

Then use selection → rectangle selection again to disable the dragging.

Now use selection → copy to clipboard. This will copy the lat/lon coordinates into clipboard, save these coordinates to some text file. Here is mine (but dont use these to cheat haha):

47.626772N 13.061371E, 47.626772N 13.666992E, 47.213807N 13.666992E, 47.213807N 13.061371E

You can also align the map location to these coords by using go to → paste latitude longitude, the map will be centered to lower left corner of the coordinates.

Select map source → esri arcgis → esri arcgis, this is the arcgis world imagery data.

Now use zoom levels → level 17. You can also center the map location as said above, but it doesnt matter, its just nice to see the red selection rectangle there heh.

Now you are ready to download, create directory like Tut_Austria_40km_arcgis_17_level and use file → save map → oziexplorer map. Browse to the dir you just created and save under Tut_Austria_40km_arcgis_17_level filename.

Terra incognita asks “very large area selected! continue?” click OK to start the download.

Download has started, just let terra incognita be, dont use it to make sure it wont crash etc.

Heightmap

Back in global mapper make sure digitizer tool is selected and double click on the grid to bring up modify feature info dialog.

Delete the “A1” string in the name field, the click OK to close.

Now you can untick openstreetmap map view too.

Use online sources and choose STRM worldwide elevation data (1-arc-second resolution, SRTM plus v3), make sure current screen bounds is selected.

Click connect to load it up, this takes few moments so be patient and wait.

Use file → export → export elevation grid format

From select export format dialog choose dropdown of Arc ASCII Grid.

In arc ascii grid export options dialog type in sample spacing x and y: 10 meters, which will be 40km terrain with 10 meter cell size for us.

Select export bounds tab, then tick crop to selected area features(s) option.

Click OK to start exporting. Browse to the tut_austria_40km directory, then give filename “heightmap” (it auto assigns .asc extension). Wait until it has downloaded the SRTM heightmap for you.

Header 200,000 / 0

Terrain builder uses 200,000 / 0 coordinates so we must fix heightmap.asc header to fit for these coords.

Open heightmap.asc in proper text editor, then you see the header like this:

ncols         4096
nrows         4096
xllcorner     356294.301
yllcorner     5233219.645
cellsize      10
nodata_value  -9999.0

Copy paste these xllcorner and yllcorner values to some text file, we need them lateron when we transform some shapefiles.

Edit the header to read 200000 and 0, like this:

ncols         4096
nrows         4096
xllcorner     200000
yllcorner     0
cellsize      10
nodata_value  -9999.0

Get calculator out and type in 200000, then subtract the xllcorer value from it, you'll end up with -156294.301 value. The yllcorner is easy because all we need to do is to add minus on front of it. Lets save these values for later use.

I keep these values saved on single line, like this:

-156294.301 -5233219.645

OpenStreetMap Shapefiles

OpenStreetMap (OSM) shapefiles is used for roads and vegetation object placement.

Goto geofabrik.de and browse to europe, then download the astria [.shp.zip] link zip file.

Unpack the zip file into “Austria” directory.

In global mapper untick SRTM layer so it wont slow us down. Make sure grid is selected.

Click open icon, browse to the OSM austria dir and open these files:

gis.osm_landuse_a_free_1.shp
gis.osm_natural_a_free_1.shp
gis.osm_places_free_1.shp
gis.osm_roads_free_1.shp

Make sure NOT to select “places_a_free”, you have to choose it without the _a_ because it designates area, we dont want areas for places.

Next click the crop to selected areas.

Now choose only types of features to crop; areas, from dropdown select create new layer for feature option.

Click OK to crop, give it name “cropped_areas” and click OK and OK (or just hint enter twice).

Now repeat the same thing; crop to selected areas, but this time select only lines tickbox (areas and points are unticked).

Same thing but give it name “cropped_roads” instead.

One last time, this time tick points and give it name “cropped_points”.

Now in control center SHIFT-LMB select all the “gis.osm_” starting layers, hit DEL key to delete. Note that global mapper is bit bitchy with this one, when you select the layers, do not move mouse cursor away from the control center before you hit DEL key because then it somehow tries to do something else than delete the layers, heh its odd.

We deleted these layers because we dont want them to the in the project to avoid dupes and all they do is to slow down global mapper.

Roads

If your cropped_roads layer is larger than 9000 (or even 5000), then you need to reduce the amount of roads features.

Untick all other layers except cropped_roads.

Select search → search by attributes, name and description. Now you got search vector data dialog.

Use road shapefiles remove bad roads guide to remove those extra roads.

When done it looks much cleaner.

Export Shapefiles

Now export roads by file → export → vector/lidar format → shapefile, click OK.

You should only have export lines option availbale.

click select file button, make sure you are in tut_austria_40km directory and give it file name “cropped_roads.shp”.

Untick cropped_roads layer and tick cropped_areas, export them the same way, except this time click export areas select file button (only available). Give them “cropped_areas.shp” file name.

Last untick cropped_areas layer and tick cropped_points layer, export them the same way again, choose points of course. This time give “cropped_points.shp” file name.

File → unload all, to close the project. Do not save or mind when global mapper asks to save changed files (the shapefile layers), just say no to unload the project, we dont need those cropped_* layers anymore.

QGIS Transform

Open QGIS and create new project.

Click add raster layer icon.

Browse to your heightmap.asc file and open it.

Make sure EPSG:32631 is selected.

You can RMB click on the heightmap layer and choose set layer CRS.

You need to make sure WGS 84 / UTM ZONE 31N is selected. This is what I meant earlier that we dont need to worry about UTM zone in global mapper. Here we do worry about it heh.

Click add vector layer icon.

Browse and open cropped_areas.shp, cropped_roads.shp and cropped_points.shp files.

Now SHIFT-LMB select all the new cropped_* layers, then RMB → set layer CRS, choose UTM 31N and click OK.

Now in processing toolbox search and select v.transform plugin.

The cropped_areas should be selected. Now paste in the heightmap.asc header coordinates you calculated earlier.

Put the first xllcorner number into X shift and yllcorner number to Y shift like the image above indicates. Then click Run button and wait few moments when QGIS is processing.

You now should see the area shapes on top of the heightmap, perfectly aligned.

Now in layers panel RMB click transformed layer and choose save as. Browse to tut_austria_40km dir and save under transformed_areas.shp file name.

Now on layers panel CTRL-LMB select cropped_areas, transformed_areas and transformed layers, then RMB → remove, click OK to remove 3 legend entries.

Again open v.transform plugin.

Now cropped_points layer should be selected, if its not then select it.

Type in the heightmap.asc calculated header coordinates as before and click run button, then wait.

When done, you should see a lot of points on top of the heightmap.

Now in layers panel RMB click transformed layer and choose save as. This time choose CSV file export and give it transformed_places.csv file name

Now again CTRL-LMB select from layers panel the cropped_points, transformed_places and transformed layers. Hit RMB → remove and OK.

And one last time open v.transform plugin and transform cropped_roads, the only remaining layer. Save them as ESRI shapefile under transformed_roads.shp file name.

Exit QGIS, were done with it.

Global Mapper Shapefiles

Areas

In global mapper open transformed_areas.shp shapefile.

Use file → export → export vector/lidar format → shapefile. From shapefile export options choose split export based on: FCLASS dropdown option.

Then click select file, give file name “obj”, just obj, click OK (twice) to export.

When done, file → unload all.

Create bat file into the tut_austria_40km directory where global mapper just saved bunch of obj_*.* files. Copy paste the following into the bat file.

_run_delete_useless_area_shapefiles_and_create_TerrainProcessor_dir.bat

@echo off
echo roads.shp WILL BE DELETED! No idea why. Move it away! CTRL-C for cancel.
pause
if exist obj_allotments.* del obj_allotments.*
if exist obj_beach.* del obj_beach.*
if exist obj_cave_entrance.* del obj_cave_entrance.*
if exist obj_cemetery.* del obj_cemetery.*
if exist obj_cliff.* del obj_cliff.*
if exist obj_glacier.* del obj_glacier.*
if exist obj_heath.* del obj_heath.*
if exist obj_nature_reserve.* del obj_nature_reserve.*
if exist obj_park.* del obj_park.*
if exist obj_peak.* del obj_peak.*
if exist obj_recreation_ground.* del obj_recreation_ground.*
if exist obj_retail.* del obj_retail.*
if exist obj_scrub.* del obj_scrub.*
if exist obj_spring.* del obj_spring.*
if exist obj_vineyard.* del obj_vineyard.*
 
md TerrainProcessor
move obj_*.* TerrainProcessor

Then just execute _run_delete_useless_area_shapefiles_and_create_TerrainProcessor_dir.bat file, it will take care of the obj_ shapefiles and creates TerrainProcessor directory for you.

Roads

In global mapper open transformed_roads.shp shapefile. Use road shapefiles ID and ORDER guide to fix the shapefile for arma3 use.

When done, file → unload all.

Place Names

Next is a bit tricky part… if you do not have Qt installed. We need to use PMC OSM Places CSV to HPP converter tool which we at the moment of writing this tutorial dont have binary EXE available for download, so you would have to compile that yourself in Qt. Sorry for that. download OSM_Places_CSV2HPP_v0.1.2.7z.

Start the tool and click QGIS button, browse to transformed_places.csv file and click open. In few seconds the arma3 config class names{} compatible text appears in the text box.

(image from older version of the tool)

Copy paste that text, then create new file pmc_names.hpp where you paste the text.

Create Terrain Builder Project

Most likely at this time terra incognita is still downloading (if you were fast enough to follow this tutorial hehe), so lets create terrain builder project.

For this project we use TUT namespace and tag.

I have copy pasteable template directories which I copy paste and then run through powergrep replace in files. That will generate the fully working WRP and config addons for any terrain, only thing I need to do is to provide the class name for it.

Here is the

tut_austria_40km/config.cpp

class CfgPatches
{
	class tut_austria_40km_wrp
	{
		units[] = {};
		weapons[] = {};
		requiredVersion = 1;
		requiredAddons[] =
		{
			"A3_Map_Stratis"
		};
	};
};
 
class CfgWorlds
{
	class Stratis;
	class tut_austria_40km: Stratis
	{
		// required by pboProject
		worldName = "\tut\tut_austria_40km\tut_austria_40km.wrp";
 
		// required by arma3 to get forest mapview (M) working
		minTreesInForestSquare = 2;
		minRocksInRockSquare = 2;
	};
};

tut_austria_40km_cfg/config.cpp

class CfgPatches
{
	class tut_austria_40km_cfg
	{
		units[] =
		{
			"tut_austria_40km"
		};
		weapons[] = {};
		requiredVersion = 1;
		requiredAddons[] =
		{
			"tut_austria_40km_wrp",
			"tut_Terrain_Data",
			"A3_Map_Stratis"
		};
	};
};
 
class CfgWorldList
{
	class tut_austria_40km{};
};
 
class CfgWorlds
{
	class Stratis;
	class tut_austria_40km: Stratis
	{
		cutscenes[] = {};
		description = "TUT Austria 40km";
		worldName = "\tut\tut_austria_40km\tut_austria_40km.wrp";
		author = "PMC https://www.pmctactical.org";
		pictureMap = "tut\tut_austria_40km_data\picturemap_ca.paa";
		pictureShot = "tut\tut_austria_40km_data\ui_terrain_ca.paa";
 
		newRoadsShape = "\tut\tut_austria_40km_data\roads\roads.shp";
		mapSize = 40960;
		centerPosition[] =
		{
			20480, 20480
		};
		ilsDirection[] =
		{
			0, 0.08, 1
		};
		ilsPosition[] =
		{
			0, 0
		};
		ilsTaxiIn[] = {};
		ilsTaxiOff[] = {};
		drawTaxiway = false;
		class SecondaryAirports{};
		class ReplaceObjects{};
 
		class Sounds
		{
			sounds[] = {};
		};
 
		class Animation
		{
			vehicles[] = {};
		};
 
		class Grid
		{
			offsetX = 0;
			offsetY = 40960; // Grid * Cell
 
			class Zoom1
			{
				zoomMax = 0.015;
				format = "XY";
				formatX = "0000";
				formatY = "0000";
				stepX = 10;
				stepY = -10;
			};
 
			class Zoom2
			{
				zoomMax = 0.2;
				format = "XY";
				formatX = "000";
				formatY = "000";
				stepX = 100;
				stepY = -100;
			};
 
			class Zoom3
			{
				zoomMax = 0.8;
				format = "XY";
				formatX = "00";
				formatY = "00";
				stepX = 1000;
				stepY = -1000;
			};
 
			class Zoom4
			{
				zoomMax = 1;
				format = "XY";
				formatX = "0";
				formatY = "0";
				stepX = 10000;
				stepY = -10000;
			};
		};
 
		class Names
		{
			#include "pmc_names.hpp"
		};
 
		// new satellite vs detail texture blending setup
		/// maximal darkening coef for blending of satellite map and detail map on terrain (default = 0.0f, no darkening = 1.0f}
		terrainBlendMaxDarkenCoef = 1.0f;
 
		/// maximal brightening coef for blending of satellite map and detail map on terrain (default = 1.0f, no brightening = 0.0f)
		terrainBlendMaxBrightenCoef = 0.0f;
 
		// disable the stupid bis loading texts
		loadingTexts[] =
		{
			"PMC Editing Wiki helps you develop terrains like this.",
			"PMC Tactical https://www.pmctactical.org",
			"This terrain is 40km in size with 1 meter / pixel satellite resolution.",
			"This terrain heightmap elevations are realistic made from SRTM data.",
			"This terrain satellite texture is from ArcGIS world imagery."
		};
	};
};

Open terrain builder and follow PMC ultimate terrain tutorial how to create terrain, no need to repeat already learned lessons here.

Move TerrainProcessor directory into \tut\tut_austria_40km\source\ directory.

Move heightmap.asc into \tut\tut_austria_40km\source\ directory.

Move roads.* into \tut\tut_austria_40km\data\Roads\ directory.

Move pmc_names.hpp into \tut\tut_austria_40km_cfg directory.

In terrain builder import heightmap.asc, rebuild terrain and delete the heightmap.asc layer. Do not delete the heightmap.asc FILE itself.

Import satellite mask. In our case its just 1024 x 1024 placeholder, single color yellow RGB. Adjust its properties to fit 40960 x 40960 satellite specs.

Global Mapper Satellite Texture

Create Map Catalog

Global mapper map catalog is system to load many files like images, but only show few of them at one time, saving memory and performance. This is excellent for loading large numbers of oziexplorer .map files, aka satellite imagery (texture) tiles.

Start global mapper and load tut_austria_40km.gmw project.

File → create map catalog. Give it name, I do “GM_Map_Catalog_tut_austria_40km_arcgis_17_level” which is mouthful but leaves no questions when seeing it lateron.

Click add directory button, then browse to the terra incognita tut_austria_40km_arcgis_17_level directory. On enter file masks to open dialog, type *.map and hit OK. Now wait until the catalog is created, this will take a few minutes again.

When its done creating the catalog click OK in modify map catalog dialog.

File → export → export raster/image format → PNG.

Then on PNG export options dialog you choose file type 24bit RGB, sample spacing x/y 1 meters and untick the bottom three default tickboxes.

Select tiling tab, tick specify number of rows and columns and type 4 on both.

Select export bounds tab, tick crop to selected area features.

Click OKm give file name “sat”, just sat. Click save to ttart exporting satellite texture tiles in PNG image format.

This will take very long time depending on your satellite size and computer speed etc.

Darken Satellite PNG Images

Darken and merge satellite tiles explains how to process the sat_*.png images.

L3DT Background Image

_run_imagemagick_l3dt_8192_texture_map.bat is used to create L3DT texture map, a basically small image of satellite texture which is used as background when editing heightmap in L3DT.

_run_imagemagick_l3dt_8192_texture_map.bat

@echo off
set MAGICK_TEMPORARY_PATH=c:\imagemagick_temp
 
echo Creating L3DT_texture_map.jpg
echo resizing A1 ...
magick convert Dsat_A1.bmp -resize 2048x2048 temp_A1.bmp
echo resizing A2 ...
magick convert Dsat_A2.bmp -resize 2048x2048 temp_A2.bmp
echo resizing A3 ...
magick convert Dsat_A3.bmp -resize 2048x2048 temp_A3.bmp
echo resizing A4 ...
magick convert Dsat_A4.bmp -resize 2048x2048 temp_A4.bmp
 
echo resizing B1 ...
magick convert Dsat_B1.bmp -resize 2048x2048 temp_B1.bmp
echo resizing B2 ...
magick convert Dsat_B2.bmp -resize 2048x2048 temp_B2.bmp
echo resizing B3 ...
magick convert Dsat_B3.bmp -resize 2048x2048 temp_B3.bmp
echo resizing B4 ...
magick convert Dsat_B4.bmp -resize 2048x2048 temp_B4.bmp
 
echo resizing C1 ...
magick convert Dsat_C1.bmp -resize 2048x2048 temp_C1.bmp
echo resizing C2 ...
magick convert Dsat_C2.bmp -resize 2048x2048 temp_C2.bmp
echo resizing C3 ...
magick convert Dsat_C3.bmp -resize 2048x2048 temp_C3.bmp
echo resizing C4 ...
magick convert Dsat_C4.bmp -resize 2048x2048 temp_C4.bmp
 
echo resizing D1 ...
magick convert Dsat_D1.bmp -resize 2048x2048 temp_D1.bmp
echo resizing D2 ...
magick convert Dsat_D2.bmp -resize 2048x2048 temp_D2.bmp
echo resizing D3 ...
magick convert Dsat_D3.bmp -resize 2048x2048 temp_D3.bmp
echo resizing D4 ...
magick convert Dsat_D4.bmp -resize 2048x2048 temp_D4.bmp
 
echo combine temp_Ax ...
magick convert +append temp_A1.bmp temp_A2.bmp temp_A3.bmp temp_A4.bmp temp_Ax.bmp
echo combine temp_Bx ...
magick convert +append temp_B1.bmp temp_B2.bmp temp_B3.bmp temp_B4.bmp temp_Bx.bmp
echo combine temp_Cx ...
magick convert +append temp_C1.bmp temp_C2.bmp temp_C3.bmp temp_C4.bmp temp_Cx.bmp
echo combine temp_Dx ...
magick convert +append temp_D1.bmp temp_D2.bmp temp_D3.bmp temp_D4.bmp temp_Dx.bmp
 
echo combine L3DT_texture_map.bmp ...
magick convert -append temp_Ax.bmp temp_Bx.bmp temp_Cx.bmp temp_Dx.bmp L3DT_texture_map.bmp
echo creating L3DT_texture_map ...
magick convert -strip -interlace Plane -quality 85% L3DT_texture_map.bmp L3DT_texture_map.png
echo deleting temp files ...
if exist temp_*.bmp del temp_*.bmp
if exist L3DT_texture_map.bmp del L3DT_texture_map.bmp
 
echo All done!
pause
exit

Move picturemap_ca to Data

Next we move picturemap_ca.tga into \tut\tut_austria_40km\data\ directory. This image will be shown when selecting terrain in-game.

We also rename PMC-Satellite.jpg to PMC-Austria-Satellite.jpg at the same time. This image actually has no use in arma3, its just for our purpose if we ever want to check out the satellite texture overview.

Terrain Processor Shapefiles

Then we generate some objects according to OSM shapefiles.

Previously we already moved the TerrainProcessor directory into \tut\tut_austria_40km\source\ directory, so now we download and copy PMC terrain processor TPP files from github.

Now you need to edit the TPP's a bit, they include mask linear task which only lists “roads.shp” without a path, if you run the project it will crash terrain processor as it cannot find the shapefile. So we have to manually edit the path there.

I'm hardcore and edit this stuff with text editor, people with zero programming or even html skills might get lost here though.

To ease up the path writing, I do one roads.shp path from terrain processor, I opened Area_Random_CUP_Chernarus_Buildings_Commercial.tpp project, browsed into \tut\tut_austria_40km\data\roads\roads.shp and saved the project. Now I can copy paste the correct path into all the other TPP's with text editor.

Then run the TPP files one by one through terrain processor, leave Area_Random_CUP_Chernarus_Vegetation_Forest.tpp to last as it needs some tweaking.

Run it once with the options it came with, see how many objects terrain processor created. In my case it was 107,000 objects which is nice round number 100k.

Arma3 terrains have limit of roughly 6-6.5 million objects give or take, so lets calculate 6 / 0.107 == 56. This means we can add hectare density to 56 before running much over 6 million generated objects.

50 hectare density for forests is okay-ish I guess. Lets try that first.

I have the TPP open in text editor and change the hectare density line to 50 like this:

<Parameter Name="Hectare density" Type="0" Value="50"/>

And then run terrain processor again, be patient as terrain processor takes long time to complete. It now generates 5,4 million objects which is very nice number.

Terrain Builder Object Import

Template Libraries

First we need to download the PMC terrain builder templatelibs from github.

Create \tut\tut_austria_40km\source\terrainbuilder\TemplateLibs\ directory, then copy the TML files there.

Now load template libraries from terrain builder.

Object Import

Before you import millions of objects we need to prepare terrain builder. Disable ALL views.

When views are disabled start the import objects process, select all LBT files from TerrainProcessor directory. Then wait, very patiently as it takes forever to import millions of objects, over an hour on some cases.

Terrain Builder Import Satellite Texture

In terrain builder we import satellite texture, select all of the Dsat_*.bmp images, then wait patiently as it imports.

Once import is complete you see the satellite tiles in lower left corner.

Now use import satelite in smaller tiles examples page to get the coordinates.

Our tiles are 10240 x 10240 in size, we have 4 x 4 of them in 1 meter / pixel setup.

Not sure what more I can say about that tile setup, you can copy paste the values from the above link and then its all aligned up nicely.

Delete Global Mapper Source Files

Now you dont need the global mapper source files anymore, so delete *.bat, *.bmp, *.png (except L3DT_texture_map.png) and cropped_*.* and transformed_*.* from global mapper project dir.

You can delete the satellite texture source images because they are not imported in terrain builder, they are not read “live” from the disk as in these .bmp source images.

Generating Satellite Texture/Mask

Use terrain builder to generate satellite texture / mask layers files.

Export WRP.

Moveobject WRP for data_layers\ paths.

Convert Layers PNG Fast

Use our Convert Layers PNG Fast batch file.

Separate Data Layers

Use our separate data layer guide to split the addons up.

Move Data Dir Files

Go to \tut\tut_austria_40km\data\ directory and move all the TGA/PAA image files and Roads\ directory into \tut\tut_austria_40km_data\ directory.

pboProject Batch

I run pboProject from command line, so it needs a batch file.

Created mod.cpp file

Created empty tut_austria_40km and tut_austria_40km\addons\ dirs.

All Done!

Nothing left to do but run pboProject! Yeah! :)

Terrain Making History

Back in Operation Flashpoint (OFP) era 2003 when PMC created WrpTool the first real terrain editor which still served us to arma(1) era (with some crazy guys still used it in arma2), we had no real world data terrain capabilities.

Textures were just tiles which were repeated through out the terrain making it very repeating if not plain boring.

When Armed Assault (arma) was released we got the satellite texture and satellite mask technology we know today, then terrain texture quality went through the roof and overall visuals with mask + clutter were great.

However there was no way to do real world terrains, not in any easy way anyways, you had to do everything manually. This was still the case in arma2 as visitor3 did not bring anything new to the tool set. Roads were still single pieces etc.

But with arma3 and terrain builder we now have polygon shapes, poly lines and really good tech to create real world data terrains from the web with external tools (GM, QGIS, TI).

Since 2003 WrpTool era, terrain builder is the first sign of hope :-)

Now that we have the ability to download real world data from the web, it really revolutionize the whole terrain making community. There is no need to do fictional terrains anymore unless you specifically want to be creative that way (nothing wrong with fictional terrains, if made properly). Previously we could not do real world stuff so everyone was forced to do fictional fantasy terrains.

2003 - 2007 OFP, fictional
2007 - 2009 ArmA, fictional
2009 - 2013 ArmA 2, fictional (maybe few close to real world terrains with hard work started to appear)
2013 - 2020 ArmA 3, fictional + accurate real world data :)

Just a small side note, until these PMC Editing Wiki tutorials, there was no comprehensive step by step tutorial sets how to make real world data terrains, few guys had global mapper / qgis tutorials but none were complete tutorials from having nothing to getting terrain in-game.

Credits

Written by Snake Man, PMC.

Credits:

  • [PTR] brenden0309
  • Digital Centurion
  • Hydrra
  • Ice
  • JakerRod
  • M1lkm8n
  • pooface
  • Richie

And everyone I forgot who helped in arma discord, your help made these pages possible, you should be proud of yourselves!

arma3/terrain/real-world-data-tutorial.1593553466.txt.gz · Last modified: 2020-06-30 21:44 by snakeman