Skip to content

Instantly share code, notes, and snippets.

@BManx2000
BManx2000 / generate_lookup_table.lua
Last active March 29, 2021 13:25 — forked from anonymous/generate_lookup_table.lua
DCS World mission file coordinate converter
-- This is a script you can put in a mission
-- Limits that encompass the entire green area in the mission editor
local minY = -600000
local maxY = 1500000
local minX = -700000
local maxX = 400000
-- Data is sampled every 50km
local step = 50000