generated from jobindjohn/obsidian-publish-mkdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
82 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
|
||
The Little Airport Turnaround Activity (LATA) plugin or side application generates object movement files that can be processed by the [Living Scenery Technology](https://forums.x-plane.org/index.php?/files/file/82876-living-scenery-technology/) (LST) plugin. | ||
The Little Airport Turnaround Activity (LATA) plugin or side application generates object movement files that can be processed by the [Living Scenery Technology](https://forums.x-plane.org/index.php?/files/file/82876-living-scenery-technology/) (LST) plugin. It is a Living Scenery Technology *generator*. | ||
|
||
All files that LATA generates are placed in a new custom scenery folder called LATA and do not interfere with other sceneries. LST will find and load them when started and generate appropriate objects and their movements. LATA manages all generated files, including their removal when no longer needed. | ||
All files that LATA generates are placed in a custom scenery folder called LATA and do not interfere with other sceneries. LST will find and load those files when started and generate appropriate objects and their movements. LATA manages all generated files, including their removal when no longer needed. | ||
|
||
LATA generates movement files based on user requests. | ||
|
||
[[Movements|Here]] are the movements of vehicles that can be generated by LATA. | ||
There are two methods to generate that activity. In X-Plane, [[User Interface|the LATA plugin interface]] allows for creation of one or more random turnarounds and vehicle moments, to quickly generate activity on the ground of the airport and around you. It is the simplest way to generate random activity. | ||
|
||
LATA also has a [[Command Line Interface and API|client application]] that allows for creation of precise, scheduled and coordinated movements. In this case, it is necessary to supply information such as [[Movements|movement type]], ramp positions to use, and timing. | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
#### Little Airport Turnaround Activity | ||
|
||
##### Generate 0-9 turnarounds | ||
- [ ] Close to me | ||
- [ ] Add aircraft | ||
- [ ] Include aircraft taxi | ||
(When turnaround has ended vehicles disappear.) | ||
|
||
|
||
##### Generate 0-19 random traffic routes | ||
- [ ] Passing by ramps next to me | ||
- [ ] Add one random tow | ||
(Recall that traffic routes are run over and over again.) | ||
|
||
|
||
[ Start ] [ Stop all LATA activity ] | ||
|
||
##### Advanced | ||
- [ ] Monitor FPS | ||
- [ ] | ||
|
||
##### Status (sample texts) | ||
6 turnarounds (with aircrafts and taxi) and 7 routes active. | ||
Problem generating traffic. See XPPython.log for more information. | ||
No taxiway routes, cannot generate taxi. | ||
No service roads. Cannot generate turnaround traffic. | ||
No or not enough parking or destinations at this airport. | ||
No or not enough ramp at this airport. | ||
Too many turnarounds requested. Spawning 4. | ||
Too much traffic requested. Spawning 5 vehicles. | ||
All traffic stopped. | ||
|
||
S: ICAO;Tx:76/132/23gates,45tied;Sr:56/112/12park,23dest;Ac:6cl/34ac/3gsepro;Ta:8/8 | ||
|
||
[ Dismiss ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
# Welcome | ||
|
||
Little Airport Turnaround Activity (LATA) is a X-Plane plugin that generates animation on the ground of an airport. | ||
Little Airport Turnaround Activity (LATA) is a X-Plane scenery plugin that generates animation on the ground of an airport. Any airport. | ||
|
||
The original goal is to generate turnaround activity around an aircraft, with the coordinated movement of ground support vehicles around the aircraft in timely fashion. | ||
|
||
However, the flexibility of the plugin allow for a lot more generation of activity around the airport. It can generate activity around your aircraft, or any other aircraft at the airport. It can even animate aircrafts like any other model. | ||
|
||
The plugin generates activity based on instructions it receives. It does not coordinates activities or even ground movements. It does not control ground traffic. Generated traffic may happily collide if instructed to do so. | ||
|
||
This plug in only generate activity on the *ground of an airport*, on the taxiways and service roads of that airport. It does not generate activity in the surroundings, roads, highways or even water. | ||
This plug in only generate activity on the *ground of an airport*, on the taxiways and service roads of that airport. It does not generate activity in the surroundings, roads, highways or even water. LATA will not work if the airport does not have service roads. | ||
|
||
[[How It Works|Here]] is a little explanation of how it works. | ||
|
||
|
||
|
||
> [!NOTE] Title | ||
> Are call out converted with Dracula | ||
Are call out converted with Dracula |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ theme: | |
|
||
# Extensions | ||
markdown_extensions: | ||
- nl2br | ||
- footnotes | ||
# - attr_list | ||
- pymdownx.arithmatex: | ||
|