%
response.Expires = -1
Dim conn, rs, tlimit, tstring, lat(200), lon(200), callsign(200), i, tripid(200), numberofflights, spd(200), xpdr(200), rego(200), tstamp(200), vsp(200), typ(200), alt(200), trk(200), hago(200), mago(200)
dim months(12)
dim oldest
months(0) = "Jan"
months(1) = "Feb"
months(2) = "Mar"
months(3) = "Apr"
months(4) = "May"
months(5) = "Jun"
months(6) = "Jul"
months(7) = "Aug"
months(8) = "Sep"
months(9) = "Oct"
months(10) = "Nov"
months(11) = "Dec"
set conn=Server.CreateObject("ADODB.Connection")
set rs=Server.CreateObject("ADODB.Recordset")
conn.Open(Application("DBConnectVesselLog"))
conn.CommandTimeout = 600
'check whether the form was submitted or it's an initial load
if request.QueryString("day1") = "" then
rs.Open "SELECT TOP(1) tstamp FROM tabAirTransmissionOld ORDER BY tstamp ASC", conn
if rs.eof then
oldest = "0"
else
oldest = rs("tstamp")
end if
rs.Close
%>
Power Search
Power Search lets you find any flights that were ever tracked in the openATC system. Did you fly recently and want to see your routing? This is where you can find out.Note that only flights older than 48 hours will be searchable through this interface. For all other flights please use the simple search box in the top right corner of the browser window.
Either enter part of the callsign or part of the registration, select the date on which the flight took place and click search. Please note that a maximum of 200 flights will be returned for any given search.
<%if rs("DataContent") = 0 then %>