Table catalog_tbl = args.catalog_db.getTables().get(SEATSConstants.TABLENAME_AIRPORT);
assert(catalog_tbl != null);
File f = new File(data_dir.getAbsolutePath() + File.separator + "table." + catalog_tbl.getName().toLowerCase() + ".csv");
if (f.exists() == false) f = new File(f.getAbsolutePath() + ".gz");
TableDataIterable iterable = new TableDataIterable(catalog_tbl, f, true, true);
Map<Long, Pair<Double, Double>> locations = new HashMap<Long, Pair<Double,Double>>();
for (Object row[] : iterable) {
Long code = (Long)row[0];
Double longitude = (Double)row[6];
Double latitude = (Double)row[7];