Skip to content

Commit

Permalink
fixed airspace class list
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Golfari committed May 31, 2024
1 parent 2fd79b9 commit 7d58c5d
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions airscore/core/airspaceUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,17 @@
Ft_in_meters = 0.3048000
hPa_in_feet = 27.3053
colours = {
'P': '#d42c31',
'D': '#d42c31',
'R': '#d42c31',
'GP': '#d42c31',
'C': '#d42c31',
'Z': '#d42c31',
'CTR': '#d42c31',
'Q': '#d42c31',
'R': '#be25f6', # restricted
'Q': '#be25f6', # danger
'P': '#d42c31', # prohibited
'A': '#d42c31', # class A
'B': '#d42c31', # class B
'C': '#d42c31', # class C
'D': '#d42c31', # class D
'GP': '#d42c31', # glider prohibited
'Z': '#be25f6',
'CTR': '#d42c31', # CTR
'W': '#be25f6' # wave window
}


Expand Down

0 comments on commit 7d58c5d

Please sign in to comment.