20 lines
554 B
Python
20 lines
554 B
Python
volmetStations = [
|
|
([3485, 6604, 10051, 13270 ], "United States/Canada"),
|
|
([6754, 15034 ], "Canada"),
|
|
([3413, 5505, 8957, 13264 ], "Western Europe"),
|
|
([5450, 11253 ], "Central Europe"),
|
|
([4742, 11247 ], "Eastern Europe"),
|
|
([2863, 6679, 8828, 13282 ], "Oceania"),
|
|
([2965, 6676, 11387 ], "South Asia/Southeast Asia"),
|
|
([3458, 5673, 8849, 13285 ], "East Asia"),
|
|
]
|
|
tag = "VOLMET"
|
|
bw = 2700
|
|
mod = "USB"
|
|
|
|
for freqs, area in volmetStations:
|
|
name = "VOLMET " + area
|
|
for freq in freqs:
|
|
print(int(freq * 1000), ';', name, ';', mod, ';', bw, ';', tag)
|
|
|