updated list of "facing east" markers by @luarvique

This commit is contained in:
Jakob Ketterl 2023-09-16 02:41:28 +02:00
parent 1f3c011057
commit 6df80829d0

View file

@ -6,10 +6,10 @@ AprsMarker.prototype.isFacingEast = function(symbol) {
var candidates = ''
if (symbol.table === '/') {
// primary table
candidates = '(*<=>CFPUXYabefghjkpsuv[';
candidates = '(*<=>CFPUXYZabefgjkpsuv[';
} else {
// alternate table
candidates = 'hkluv';
candidates = '(T`efhjktuvw';
}
return candidates.includes(symbol.symbol);
};