January 18, 200521 yr Could someone point me to a utility that will scan FS2004 scenery files and write the data to a text file?I need to grab the following information:ICAOLatLongElevationRunway NameRunway LengthRunway WidthRunway Surface TypeI've tried Super Flight Planner 3 but it jumbles the data together.Thanks,
January 25, 200521 yr Hi,See my response in the thread "How to find geographic location of VORs etc?". In that thread I describe my approach to extracting data from scenery files.Marty
January 26, 200521 yr Author Can you convert several BGL files at the same time? I tried this command:bglxml -tmf *.bgl saem.xmlIt didn't work.Thanks for your help.
January 26, 200521 yr Nope, you can't do wilcards with bglxml. That's where unix comes in. I dumped all bgl files into a directory and had my linux machine generate a .bat file to do the work. It looked something like this:#!/bin/bashfind . -name '*.bgl'|while read filedoecho "bglxml -t $file"done > run.batThen I ran run.bat on the windows machine.
Create an account or sign in to comment