Documentation
¶
Overview ¶
Package terrains contains data for DCS World terrain maps.
Index ¶
Constants ¶
const ( Caucasus = "Caucasus" Nevada = "Nevada" PersianGulf = "PersianGulf" Normandy = "Normandy" TheChannel = "TheChannel" Syria = "Syria" MarianaIslands = "MarianaIslands" SouthAtlantic = "SouthAtlantic" Sinai = "Sinai" Kola = "Kola" Afghanistan = "Afghanistan" Iraq = "Iraq" ColdWarGermany = "GermanyCW" )
Terrain name constants for DCS World maps.
Variables ¶
var All = []Terrain{ {Name: Caucasus, CentralMeridian: 33, FalseEasting: -99517, FalseNorthing: -4998115}, {Name: Nevada, CentralMeridian: -117, FalseEasting: -193996.81, FalseNorthing: -4410028.064}, {Name: PersianGulf, CentralMeridian: 57, FalseEasting: 75756, FalseNorthing: -2894933}, {Name: Normandy, CentralMeridian: -3, FalseEasting: -195526, FalseNorthing: -5484813}, {Name: TheChannel, CentralMeridian: 3, FalseEasting: 99376, FalseNorthing: -5636889}, {Name: Syria, CentralMeridian: 39, FalseEasting: 282801, FalseNorthing: -3879866}, {Name: MarianaIslands, CentralMeridian: 147, FalseEasting: 238418, FalseNorthing: -1491840}, {Name: SouthAtlantic, CentralMeridian: -57, FalseEasting: 147640, FalseNorthing: 5815417}, {Name: Sinai, CentralMeridian: 33, FalseEasting: 169222, FalseNorthing: -3325313}, {Name: Kola, CentralMeridian: 21, FalseEasting: -62702, FalseNorthing: -7543625}, {Name: Afghanistan, CentralMeridian: 63, FalseEasting: -300150, FalseNorthing: -3759657}, {Name: Iraq, CentralMeridian: 45, FalseEasting: 72290, FalseNorthing: -3680057}, {Name: ColdWarGermany, CentralMeridian: 21, FalseEasting: 35427.62, FalseNorthing: -6061633.13}, }
All contains all known DCS terrains with their Transverse Mercator projection parameters. Parameters are sourced from pydcs (https://github.com/pydcs/dcs) and dcs-web-editor-mono (https://github.com/DCS-Web-Editor/dcs-web-editor-mono).
Functions ¶
This section is empty.
Types ¶
type Terrain ¶
type Terrain struct {
// Name is the terrain identifier.
Name string
// CentralMeridian is the longitude of the projection's central meridian in degrees.
CentralMeridian float64
// FalseEasting is added to all X coordinates in meters.
FalseEasting float64
// FalseNorthing is added to all Y coordinates in meters.
FalseNorthing float64
}
Terrain represents a DCS World terrain/map with its Transverse Mercator projection parameters.
func Closest ¶
Closest returns the terrain whose center is closest to the given point. This is used to determine which Transverse Mercator projection to use when the terrain is not explicitly known (e.g., when Tacview doesn't export MapId).
func (Terrain) Center ¶
Center returns the approximate geographic center of the terrain. This is derived from the central meridian and false northing to provide a representative point for the terrain. Useful for terrain selection.
func (Terrain) Projection ¶
func (t Terrain) Projection() *projections.TransverseMercator
Projection returns a Transverse Mercator projection configured for this terrain.