Falcon 4.0




Importing a DTC File into Tacview
Converting from Falcon 4.0 to Tacview coordinates.
Last updated




Last updated
longitude = west + x * (east - west ) / (width * 819.995);
latitude = south + y * (north - south) / (height * 819.995);
// Where:
// x,y are falcon coordinates
// north, south, east, and west are the terrain boundaries (in degrees)
// width and height are the terrain size in samples (4096 in most case)
// This gives us the following for the Korean theater declared in
// C:\Program Files (x86)\Tacview\Data\Xml\Data-Falcon4Theaters.xml
longitude = 123 + x * (132.26 - 123) / (4096 * 819.995) = 123 + x * 0.00000275701
latitude = 33.79 + y * ( 43 - 33.79) / (4096 * 819.995) = 33.79 + y * 0.00000274213