Skip to content

Commit

Permalink
v1.3.4, fixed profiel connect order
Browse files Browse the repository at this point in the history
  • Loading branch information
glott committed Feb 16, 2025
1 parent b35d3ce commit 749e6e8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions vATISLoad.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -555,10 +555,6 @@
"\n",
"# Reverse alphabetical station order\n",
"stations = sorted(stations, reverse=True)\n",
"indices_D = [i for i, x in enumerate(stations) if x.endswith('_D')]\n",
"indices_A = [i for i, x in enumerate(stations) if x.endswith('_A')]\n",
"for index_D, index_A in zip(indices_D, indices_A):\n",
" stations[index_D], stations[index_A] = stations[index_A], stations[index_D]\n",
"\n",
"# Load ATIS information\n",
"i = 0\n",
Expand Down
4 changes: 0 additions & 4 deletions vATISLoad.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -530,10 +530,6 @@ if dt < 1.0:

# Reverse alphabetical station order
stations = sorted(stations, reverse=True)
indices_D = [i for i, x in enumerate(stations) if x.endswith('_D')]
indices_A = [i for i, x in enumerate(stations) if x.endswith('_A')]
for index_D, index_A in zip(indices_D, indices_A):
stations[index_D], stations[index_A] = stations[index_A], stations[index_D]

# Load ATIS information
i = 0
Expand Down

0 comments on commit 749e6e8

Please sign in to comment.