updated list of "facing east" markers by @luarvique

This commit is contained in:
Jakob Ketterl 2023-09-16 02:41:28 +02:00
parent f2b239bdb7
commit 689570a7dd

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);
};