Google Earth
We have software which can generate Google Earth (tm) KML files from the positional information held within the databases, this includes airfield data, navaids, notams, controlled airspace and special use airspace such as danger and restricted areas.
Follow This Link for a Live Demo
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="googleearth.aspx.vb" Inherits="www.aviationwebdesign.co.uk.googleearth1" AspCompat="true" %>
Public Partial Class googleearth1
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim loGE As New AvBrowserBusObj.CGoogleEarth
Dim loNavaids As New AvBrowserBusObj.CNavaids
loNavaids.PopulateCAA()
loGE.InputCoOrdinates = loNavaids
Response.ContentType = "application/vnd.google-earth.kml+xml"
Response.Write(loGE.GetKML)
End Sub
End Class