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
Try
loNavaids.PopulateCAA()
Catch ex As Exception
End Try
loGE.InputCoOrdinates = loNavaids
Try
Response.Clear()
Response.ContentType = "application/vnd.google-earth.kml+xml"
Response.Write(loGE.GetKML)
Response.Flush()
Catch ex As Exception
Response.Clear()
Response.ContentType = "text/plain"
Response.Write("Error creating KML, found " & loNavaids.Count & " entries.")
Response.Write(ex.Message)
End Try
End Sub
End Class