charts.php
2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
session_start();
require_once 'classes/realops.php';
$get = new Get();
$stats = new Stats();
date_default_timezone_set('Australia/Sydney');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'sections/header.php'; ?>
</head>
<body>
<div class="wrapper">
<?php include 'sections/navbar.php' ?>
<div class="container" id="realops-container">
<div class="row">
<article class="col-sm-12 panel panel-default" id="realops-body">
<h1>Scenery and Charts</h1>
<h3>Aerodrome charts</h3>
<p>Charts for airports in Australia may be found at <a href="http://www.airservicesaustralia.com/aip/current/dap/AeroProcChartsTOC.htm">the Airservices Australia website</a>.</p>
<h3>Scenery</h3>
<p><strong>Flight Simulator 2004</strong>:</p>
<ul>
<li><a href="http://aussiex.org/forum/index.php?/files/file/3569-yssy-sydney-airport-update-25/">Sydney Airport Update 2.5</a> by Robert Fluke - this is an update to the Sydney Airport scenery found in the famous Vista Australis scenery package.</li>
<li><a href="http://aussiex.org/forum/index.php?/files/file/505-ybbn-brisbane-international-airport-lite/">Brisbane Airport Lite</a> by Vista Australis</li>
<li><a href="http://aussiex.org/forum/index.php?/files/file/502-voz-18-complete/">Vista Australis 1.8</a> landclass and airports package</li>
<li><a href="http://aussiex.org/forum/index.php?/files/file/2650-fs9-andy-weirs-mesh-complete/">90m Australian mesh</a> by Andy Weir</li>
</ul>
<p><strong>Flight Simulator X</strong>:</p>
<ul>
<li><a href="https://www.dropbox.com/s/itxiz7g9b2b6yfy/Sydney%20YSSY%20%5BVersion%201.1%5D.zip">AFCAD + photoreal base</a> with AFCAD by Ben Ohene and photoreal base by Zach Biesse-Fitton</li>
<li><a href="http://fullterrain.com/product_australia.html">FTX AU</a> by Orbx [PAYWARE] - landclass</li>
<li><a href="http://fullterrain.com/product_ybbn.html">FTX AU YBBN</a> by Orbx [PAYWARE]</li>
<li><a href="http://fullterrain.com/product_ymml2.html">FTX AU YMML</a> by Orbx [PAYWARE]</li>
<li><a href="https://docs.google.com/file/d/0By8a-7jAShVrN28xX2k2UHVOTW8/edit">Holger Mesh</a> by Holger Sandmann and distributed by Orbx [FREEWARE] - 76m Australian mesh</li>
</ul>
<p><strong>X-Plane 10</strong>:</p>
<ul>
<li><a href="http://isdg.com.au/scenery-packages/yssy-sydney-international/">Sydney Photo Scenery version 1.3</a> by Chris Kawchuk and ISDG</li>
</ul>
</article>
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.wrapper -->
<?php include 'sections/footer.php'; ?>