-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DX_&_SECTION keyword not working as documented #252
Comments
Good question. In addition to multiplier handling there was also a complaint that mult screen is empty. So changing the logic would just fix the actual mult counting. Renaming the config would interfere with existing logcfg/rules (assuming this option is used). I would simply update the documentation and focus on getting it covered by the plugin approach (i.e. adding generic mult handling). But this is just my 2 cents. |
As DX_&_SECTION came up for Portugal Day contest in #346 I made a quick check of contest rules.
Contests with exclusive multipliers can be modeled with the single multiplier support of TLF. If there is a clash between sections and DXCCs, then sections can be prefixed to make them unqiue. This is done for example in case of HADX: all counties get a HA/ prefix to avoid the clash between HA county HB and Switzerland. Inclusive contests -- provided that they follow the N*(own mults)+DXCCs logic -- can be relatively easiely supported by adding worked DXCCs to the total number of multipliers in
(dots just show field width) One way of configuring it could be
Even if we have rules for it, the ARRL 10m contest is not fully supported. It has simular rules to ARRL DX, but multpliers are counter per mode (CW/SSB). In addition to this, "local" countries also include Mexico. So DX_&_SECTION won't work here. Update: there is a clash in Coup du REF due to dept 2A. |
Man page states that with DX_&_SECTION keyword
Multiplier is DXCC country or section from multiplier file
In last weeks there were at least two reports from DL3EAZ and F8CFE which states that the keyword does not work in that manner. A closer look to the code showed that it is tightly coupled to ARRL contests which often use a multiplier scheme where W or VE station can get multipliers for W/VE sections or other DXCC countries. So the keyword in its current form is useless for other contests like EUDX or
Coupe du REF
.The current implementation of DX_&_SECTIONS works as follows:
If Country is W or VE do not count as country multiplier, all other countries are mults
If Country is W or VE do count sections as multiplier, for all other countries ignore it.
So country and section multiplier are mutual exclusive . That is also the case for
Coupe du REF
.Some other contests (e.g. EUDX) count country AND multiplier for the EU countries.
I think a way to solve the problem can be the following:
Rename DX_&SECTION to ARRL_DX&SECTIONS keeping the behaviour and adding a new DX&_SECTION which simply counts DXCC countries and sections both as multipliers. If you have to exclude your own country from getting country points (see
Coupe du REF
) use COUNTRYLIST= and EXCLUDE_COUNTRYLIST.The new DX_&_SECTIONS together with EXCLUDE_COUNTRYLIST can also handle ARRLDX contests if it is guaranteed that no stations outside of W and VE uses sections in their reports.
Before starting to implement solution some feedback would be good.
The text was updated successfully, but these errors were encountered: