Skip to content

Commit

Permalink
DCS-2.9.3.51704: airport data updates
Browse files Browse the repository at this point in the history
* Ran airport_import.py for the following terrains:
  - normandy
  - thechannel
  - caucasus
  - falklands
  - marianaislands
  - nevada
  - persiangulf
  - syria
  • Loading branch information
332fg-raven authored and rp- committed Mar 29, 2024
1 parent 7eeec23 commit 370ee97
Show file tree
Hide file tree
Showing 5 changed files with 2,388 additions and 484 deletions.
2 changes: 1 addition & 1 deletion dcs/terrain/caucasus/airports.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Anapa_Vityazevo(Airport):
atc_radio = AtcRadio(hf_hz=3750000, vhf_low_hz=38400000, vhf_high_hz=121000000, uhf_hz=250000000)

def __init__(self, terrain: Terrain) -> None:
super().__init__(mapping.Point(-5412.409668, 243128.820313, terrain), terrain)
super().__init__(mapping.Point(-5412.409668, 243128.820312, terrain), terrain)

self.runways.append(Runway(id=1, name='22-04', main=RunwayApproach(name='22', heading=220, beacons=[RunwayBeacon(id='airfield12_1', runway_name='04-22', runway_id=1, runway_side='22'), RunwayBeacon(id='airfield12_0', runway_name='04-22', runway_id=1, runway_side='22')]), opposite=RunwayApproach(name='04', heading=40, beacons=[RunwayBeacon(id='airfield12_2', runway_name='04-22', runway_id=1, runway_side='04'), RunwayBeacon(id='airfield12_3', runway_name='04-22', runway_id=1, runway_side='04')])))
self.parking_slots.append(ParkingSlot(
Expand Down
30 changes: 15 additions & 15 deletions dcs/terrain/falklands/airports.py
Original file line number Diff line number Diff line change
Expand Up @@ -887,9 +887,9 @@ def __init__(self, terrain: Terrain) -> None:
airplanes=True, slot_name='F02', length=21.0, width=15.0, height=8.0, shelter=False))


class Aerodromo_De_Tolhuin(Airport):
class Tolhuin(Airport):
id = 17
name = "Aerodromo De Tolhuin"
name = "Tolhuin"
tacan = None
unit_zones: List[mapping.Rectangle] = []
civilian = False
Expand Down Expand Up @@ -923,9 +923,9 @@ def __init__(self, terrain: Terrain) -> None:
airplanes=True, slot_name='F02', length=26.0, width=22.0, height=11.0, shelter=False))


class Porvenir_Airfield(Airport):
class Porvenir(Airport):
id = 18
name = "Porvenir Airfield"
name = "Porvenir"
tacan = None
unit_zones: List[mapping.Rectangle] = []
civilian = False
Expand Down Expand Up @@ -1067,9 +1067,9 @@ def __init__(self, terrain: Terrain) -> None:
airplanes=False, slot_name='H03', length=30.0, width=23.0, height=10.0, shelter=False))


class Caleta_Tortel_Airport(Airport):
class Caleta_Tortel(Airport):
id = 22
name = "Caleta Tortel Airport"
name = "Caleta Tortel"
tacan = None
unit_zones: List[mapping.Rectangle] = []
civilian = True
Expand Down Expand Up @@ -1200,9 +1200,9 @@ def __init__(self, terrain: Terrain) -> None:
airplanes=True, slot_name='04', length=21.0, width=15.0, height=8.0, shelter=False))


class Aeropuerto_de_Gobernador_Gregores(Airport):
class Gobernador_Gregores(Airport):
id = 26
name = "Aeropuerto de Gobernador Gregores"
name = "Gobernador Gregores"
tacan = None
unit_zones: List[mapping.Rectangle] = []
civilian = False
Expand Down Expand Up @@ -1233,9 +1233,9 @@ def __init__(self, terrain: Terrain) -> None:
airplanes=True, slot_name='02', length=26.0, width=22.0, height=11.0, shelter=False))


class Aerodromo_O_Higgins(Airport):
class O_Higgins(Airport):
id = 27
name = "Aerodromo O'Higgins"
name = "O'Higgins"
tacan = None
unit_zones: List[mapping.Rectangle] = []
civilian = False
Expand Down Expand Up @@ -1295,17 +1295,17 @@ def __init__(self, terrain: Terrain) -> None:
El_Calafate,
Puerto_Santa_Cruz,
Comandante_Luis_Piedrabuena,
Aerodromo_De_Tolhuin,
Porvenir_Airfield,
Tolhuin,
Porvenir,
Almirante_Schroeders,
Rio_Turbio,
Rio_Chico,
Caleta_Tortel_Airport,
Caleta_Tortel,
Franco_Bianco,
Goose_Green,
Hipico_Flying_Club,
Aeropuerto_de_Gobernador_Gregores,
Aerodromo_O_Higgins,
Gobernador_Gregores,
O_Higgins,
Gull_Point,
]

Loading

0 comments on commit 370ee97

Please sign in to comment.