-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
109 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = '4.0rc2' | ||
__version__ = '4.0' | ||
__author__ = 'Outernet Inc <[email protected]>' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
from collections import namedtuple | ||
|
||
from bottle_utils.i18n import lazy_gettext as _ | ||
|
||
|
||
__all__ = ('LBAND', 'KUBAND', 'L_PRESETS', 'KU_PREETS', 'PRESETS') | ||
|
||
|
||
Preset = namedtuple('Preset', ('label', 'index', 'values')) | ||
|
||
LBAND = 'l' | ||
KUBAND = 'ku' | ||
|
||
L_PRESETS = [ | ||
# Translators, name of the L-band tuner preset covering most of the world | ||
Preset(_('Global'), 1, { | ||
'frequency': '1545.525', | ||
'uncertainty': '4000', | ||
'symbolrate': '8400', | ||
'sample_rate': '1', | ||
'rf_filter': '0.2', | ||
'descrambler': True, | ||
# Translators, used as coverage area of a transponder | ||
'coverage': _('Europe, Africa, Asia'), | ||
}), | ||
# Translators, name of the L-band tuner preset covering the Americas | ||
Preset(_('Americas'), 2, { | ||
'frequency': '1539.8725', | ||
'uncertainty': '4000', | ||
'symbolrate': '4200', | ||
'sample_rate': '1', | ||
'rf_filter': '0.2', | ||
'descrambler': True, | ||
# Translators, used as coverage area of a transponder | ||
'coverage': _('North and South America'), | ||
}), | ||
] | ||
|
||
KU_PRESETS = [ | ||
Preset('Galaxy 19 (97.0W)', 1, { | ||
'frequency': '11929', | ||
'symbolrate': '22000', | ||
'polarization': 'v', | ||
'delivery': 'DVB-S', | ||
'modulation': 'QPSK', | ||
# Translators, used as coverage area of a transponder | ||
'coverage': _('North America'), | ||
}), | ||
Preset('Hotbird 13 (13.0E)', 2, { | ||
'frequency': '11471', | ||
'symbolrate': '27500', | ||
'polarization': 'v', | ||
'delivery': 'DVB-S', | ||
'modulation': 'QPSK', | ||
# Translators, used as coverage area of a transponder | ||
'coverage': _('Europe, North Africa'), | ||
}), | ||
Preset('Intelsat 20 (68.5E)', 3, { | ||
'frequency': '12522', | ||
'symbolrate': '27500', | ||
'polarization': 'v', | ||
'delivery': 'DVB-S', | ||
'modulation': 'QPSK', | ||
# Translators, used as coverage area of a transponder | ||
'coverage': _('North and West Europe, Subsaharan Africa'), | ||
}), | ||
Preset('AsiaSat 5 C-band (100.5E)', 4, { | ||
'frequency': '3960', | ||
'symbolrate': '30000', | ||
'polarization': 'h', | ||
'delivery': 'DVB-S', | ||
'modulation': 'QPSK', | ||
# Translators, used as coverage area of a transponder | ||
'coverage': _('Middle East, Asia, Australia'), | ||
}), | ||
Preset('Eutelsat (113.0W)', 5, { | ||
'frequency': '12089', | ||
'symbolrate': '11719', | ||
'polarization': 'h', | ||
'delivery': 'DVB-S', | ||
'modulation': 'QPSK', | ||
# Translators, used as coverage area of a transponder | ||
'coverage': _('North, Middle, and South America'), | ||
}), | ||
Preset('ABS-2 (74.9E)', 6, { | ||
'frequency': '11734', | ||
'symbolrate': '44000', | ||
'polarization': 'h', | ||
'delivery': 'DVB-S', | ||
'modulation': 'QPSK', | ||
# Translators, used as coverage area of a transponder | ||
'coverage': _('India'), | ||
}), | ||
] | ||
|
||
PRESETS = { | ||
LBAND: L_PRESETS, | ||
KUBAND: KU_PRESETS, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters