A aviation & planes forum. AviationBanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » AviationBanter forum » rec.aviation newsgroups » Instrument Flight Rules
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

finding approach chart URLs



 
 
Thread Tools Display Modes
  #1  
Old May 9th 07, 07:32 PM posted to rec.aviation.ifr
Dave Butler
external usenet poster
 
Posts: 147
Default finding approach chart URLs

I know I can find them at various web sites, please don't bother to
respond to tell me about them.

Here's what I'd like: given an airport identifier, say "KLHZ", I'd like
an programmatic, algorithmic way or a table lookup to find all the NACO
approach chart URLs, like:

http://204.108.4.16/d-tpp/0704/09131IL5.PDF
http://204.108.4.16/d-tpp/0704/09131R5.PDF
http://204.108.4.16/d-tpp/0704/09131R23.PDF
http://204.108.4.16/d-tpp/0704/09131VDA.PDF
http://204.108.4.16/d-tpp/0704/SE2ALT.PDF

I can see that the file names have some logic to them, like IL for ILS,
R for RNAV, etc, and the runway numbers are part of the name. If I knew
beforehand that LHZ had an ILS approach to runway 5, I might even be
able to generate the name for that chart, but I'd like to be able to
start from just the airport identifier and generate the list of approach
chart URLs.

I'm missing the information that relates a given airport to its list of
approach charts.

Anyone?

Thanks.

Dave
  #2  
Old May 9th 07, 08:23 PM posted to rec.aviation.ifr
Paul Tomblin
external usenet poster
 
Posts: 690
Default finding approach chart URLs

In a previous article, Dave Butler said:
http://204.108.4.16/d-tpp/0704/09131IL5.PDF
http://204.108.4.16/d-tpp/0704/09131R5.PDF
http://204.108.4.16/d-tpp/0704/09131R23.PDF
http://204.108.4.16/d-tpp/0704/09131VDA.PDF
http://204.108.4.16/d-tpp/0704/SE2ALT.PDF

I can see that the file names have some logic to them, like IL for ILS,
R for RNAV, etc, and the runway numbers are part of the name. If I knew
beforehand that LHZ had an ILS approach to runway 5, I might even be
able to generate the name for that chart, but I'd like to be able to
start from just the airport identifier and generate the list of approach
chart URLs.

I'm missing the information that relates a given airport to its list of
approach charts.


I ordered this data on a CD from Sporties once, and discovered that there
was an XML index file called digTPP_hier_All_Watt.xml. I bet if you poked
around some of those sites, you'd find it.

As a matter of fact, here is is on Kyler Laird's site:
http://aviationtoolbox.org/raw_data/...r_All_Watt.xml


--
Paul Tomblin http://blog.xcski.com/
Microsoft: bringing the world to your desktop -- and your desktop to
the world.
-- Peter Gutmann
  #3  
Old May 9th 07, 08:32 PM posted to rec.aviation.ifr
Dave Butler
external usenet poster
 
Posts: 147
Default finding approach chart URLs

Thank you, Paul! ...and it looks like it is either part of or derived
from the FAA ATA100 files. I'll poke around there.

Dave

Paul Tomblin wrote:
In a previous article, Dave Butler said:
http://204.108.4.16/d-tpp/0704/09131IL5.PDF
http://204.108.4.16/d-tpp/0704/09131R5.PDF
http://204.108.4.16/d-tpp/0704/09131R23.PDF
http://204.108.4.16/d-tpp/0704/09131VDA.PDF
http://204.108.4.16/d-tpp/0704/SE2ALT.PDF

I can see that the file names have some logic to them, like IL for ILS,
R for RNAV, etc, and the runway numbers are part of the name. If I knew
beforehand that LHZ had an ILS approach to runway 5, I might even be
able to generate the name for that chart, but I'd like to be able to
start from just the airport identifier and generate the list of approach
chart URLs.

I'm missing the information that relates a given airport to its list of
approach charts.


I ordered this data on a CD from Sporties once, and discovered that there
was an XML index file called digTPP_hier_All_Watt.xml. I bet if you poked
around some of those sites, you'd find it.

As a matter of fact, here is is on Kyler Laird's site:
http://aviationtoolbox.org/raw_data/...r_All_Watt.xml


  #4  
Old May 10th 07, 01:20 AM posted to rec.aviation.ifr
Frank Stutzman[_2_]
external usenet poster
 
Posts: 74
Default finding approach chart URLs

Dave Butler wrote:

Here's what I'd like: given an airport identifier, say "KLHZ", I'd like
an programmatic, algorithmic way or a table lookup to find all the NACO
approach chart URLs, like:


Well, if you work in an open source world (linux, freebsd, maybe cgywin),
I may have something for you. See:

http://www.stutzman.com/frank/flying/software/taco and
http://www.stutzman.com/frank/flying/software/salsa

Taco is tool that given, say an airport identifier, batch downloads all
the IAPs from the NACO web side. Salsa does something simular,but does
it for the airport facilities directories.

These are perl based, command line tools that make use of pipes to some
tools commonly found on Linux/freeBSD systems like wget. As such, I
suspect they would be hard to port to other operating systems. Don't
know as I tend to avoid other operating systems if I have chance.

I wrote these things some months ago. Neither of them are particularly
polished, and there are a lot of tweeks that could be done to them.
My attention has wavered and I havn't done anything with them for a
while.

There is no external documentation for these things, but if you do
'taco --help' or 'salsa --help' there should be enough there to get
you going.

--
Frank Stutzman
Bonanza N494B "Hula Girl"
Hood River, OR (soon to be Boise, ID)

  #5  
Old May 10th 07, 02:17 PM posted to rec.aviation.ifr
Dave Butler
external usenet poster
 
Posts: 147
Default finding approach chart URLs

Thanks, Frank. Solaris at work, cygwin at home. I'll give these a try. Dave

Frank Stutzman wrote:
Dave Butler wrote:

Here's what I'd like: given an airport identifier, say "KLHZ", I'd like
an programmatic, algorithmic way or a table lookup to find all the NACO
approach chart URLs, like:


Well, if you work in an open source world (linux, freebsd, maybe cgywin),
I may have something for you. See:

http://www.stutzman.com/frank/flying/software/taco and
http://www.stutzman.com/frank/flying/software/salsa

Taco is tool that given, say an airport identifier, batch downloads all
the IAPs from the NACO web side. Salsa does something simular,but does
it for the airport facilities directories.

These are perl based, command line tools that make use of pipes to some
tools commonly found on Linux/freeBSD systems like wget. As such, I
suspect they would be hard to port to other operating systems. Don't
know as I tend to avoid other operating systems if I have chance.

I wrote these things some months ago. Neither of them are particularly
polished, and there are a lot of tweeks that could be done to them.
My attention has wavered and I havn't done anything with them for a
while.

There is no external documentation for these things, but if you do
'taco --help' or 'salsa --help' there should be enough there to get
you going.

  #6  
Old May 11th 07, 01:08 AM posted to rec.aviation.ifr
kevmor
external usenet poster
 
Posts: 58
Default finding approach chart URLs

Thanks Frank, I've been looking for something like this.

On May 9, 5:20 pm, Frank Stutzman wrote:
Well, if you work in an open source world (linux, freebsd, maybe cgywin),
I may have something for you. See:

http://www.stutzman.com/frank/flying...software/salsa

Taco is tool that given, say an airport identifier, batch downloads all
the IAPs from the NACO web side. Salsa does something simular,but does
it for the airport facilities directories.


  #7  
Old May 11th 07, 02:46 AM posted to rec.aviation.ifr
Frank Stutzman[_2_]
external usenet poster
 
Posts: 74
Default finding approach chart URLs

kevmor wrote:
Thanks Frank, I've been looking for something like this.


Your welcome.

If folks actually find these tools useful I might get motivated to
fix/update/extend these things. Probably would be tough in the near
future as I'm moving the household in mid-June. By late August,
though, I may have some time on my hands and could get back into
hacking and whacking this stuff.

--
Frank Stutzman
Bonanza N494B "Hula Girl"
Hood River, OR (soon to be Boise, ID)

  #8  
Old May 11th 07, 03:16 PM posted to rec.aviation.ifr
Greg Siemon
external usenet poster
 
Posts: 29
Default finding approach chart URLs

Try ATP softwa
http://cmensys.com/

"Dave Butler" wrote in message
...
I know I can find them at various web sites, please don't bother to respond
to tell me about them.

Here's what I'd like: given an airport identifier, say "KLHZ", I'd like an
programmatic, algorithmic way or a table lookup to find all the NACO
approach chart URLs, like:

http://204.108.4.16/d-tpp/0704/09131IL5.PDF
http://204.108.4.16/d-tpp/0704/09131R5.PDF
http://204.108.4.16/d-tpp/0704/09131R23.PDF
http://204.108.4.16/d-tpp/0704/09131VDA.PDF
http://204.108.4.16/d-tpp/0704/SE2ALT.PDF

I can see that the file names have some logic to them, like IL for ILS, R
for RNAV, etc, and the runway numbers are part of the name. If I knew
beforehand that LHZ had an ILS approach to runway 5, I might even be able
to generate the name for that chart, but I'd like to be able to start from
just the airport identifier and generate the list of approach chart URLs.

I'm missing the information that relates a given airport to its list of
approach charts.

Anyone?

Thanks.

Dave



  #9  
Old May 12th 07, 09:26 PM posted to rec.aviation.ifr
Robert M. Gary
external usenet poster
 
Posts: 2,767
Default finding approach chart URLs

On May 9, 11:32 am, Dave Butler wrote:
I know I can find them at various web sites, please don't bother to
respond to tell me about them.

Here's what I'd like: given an airport identifier, say "KLHZ", I'd like
an programmatic, algorithmic way or a table lookup to find all the NACO
approach chart URLs, like:

http://204.108.4.16/d-tpp/0704/09131...704/SE2ALT.PDF

I can see that the file names have some logic to them, like IL for ILS,
R for RNAV, etc, and the runway numbers are part of the name. If I knew
beforehand that LHZ had an ILS approach to runway 5, I might even be
able to generate the name for that chart, but I'd like to be able to
start from just the airport identifier and generate the list of approach
chart URLs.

I'm missing the information that relates a given airport to its list of
approach charts.

Anyone?

Thanks.

Dave


Sounds like you want to make it look like your web site is offering
charts but then get them from someone else?

-robert

  #10  
Old May 14th 07, 12:45 PM posted to rec.aviation.ifr
John T
external usenet poster
 
Posts: 194
Default finding approach chart URLs

"Robert M. Gary" wrote in message
ups.com

Sounds like you want to make it look like your web site is offering
charts but then get them from someone else?


I thought it just as likely he's trying to write his own chart retrieval app
to make his flight planning a bit easier. I looked into something similar a
while back, but found it would take a few years of Sporty's DVD subscription
fees to break even. So I've spent my time working other apps, instead.

--
John T
http://sage1solutions.com/blogs/TknoFlyer
Reduce spam. Use Sender Policy Framework: http://openspf.org
____________________


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
peculiar approach chart Dave Butler Instrument Flight Rules 11 May 27th 06 11:42 PM
How to post note that includes URLs? Don General Aviation 1 December 12th 03 07:07 AM
Completing the Non-precision approach as a Visual Approach John Clonts Instrument Flight Rules 45 November 20th 03 05:20 AM
Finding old buddies patrick savoie Military Aviation 2 August 29th 03 06:44 PM
Finding a plane is most of the fun? Bob Noel Owning 7 July 31st 03 03:33 AM


All times are GMT +1. The time now is 05:18 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 AviationBanter.
The comments are property of their posters.