jlmcgraw / processFaaData

Process free 28 day FAA NASR (National Airspace System Resources) data to create an sqlite database. Also creates the spatialite databases for the aviation map
GNU General Public License v3.0
26 stars 11 forks source link

Fixed paths for sua and controlled directories #6

Closed JanC closed 5 years ago

JanC commented 5 years ago

The Additional_Data folder changed to Additional Data in the zip file so the hardcoded paths sua_input_directory and controlled_airspace_input_directory do not exist any more.

Both paths vars are now created dynamically using find for backward compatibility and future path changes from faa

jlmcgraw commented 5 years ago

Sounds like a good idea to me, at least until they change the naming again. Is there a good way you can think of to make this any more future proof?

Either way, update this to use the newer command substitution format "$()" and I'll pull

JanC commented 5 years ago

Is there a good way you can think of to make this any more future proof?

Not really atm

Either way, update this to use the newer command substitution format "$()" and I'll pull

done