|
| 1 | +## DXCC Beaming positioning |
| 2 | +This is a utility to assist ham radio operators in quickly assessing where they are located relative to the main lobe of a remote station, |
| 3 | +judging from their current QSOs. |
| 4 | + |
| 5 | +## When to use it |
| 6 | +Let's say you are listening to QSO between two stations and one of those is a DX station you are interested in. |
| 7 | +It would be very helpful to quickly check what is your position realtive to where the DX station is pointing their antennas, |
| 8 | +thus maximising your chances to contact them. If you have already listened to the details of their setup (like antenna, power) during the QSO |
| 9 | +you can quickly decide whether it makes sense to call them now or wait until they turn their antennas to your direction. |
| 10 | + |
| 11 | +## How it works |
| 12 | +You run the program with your own DXCC prefix (which is resolved to your country coordinates) and let it running. |
| 13 | +When you hear the 2 stations you type in their prefixes and you get a calculation of how closer/farther you are relative to the |
| 14 | +other station and how many degress to the right/left. |
| 15 | + |
| 16 | +For example, if you are located in England and you are listening a station from Canada having a QSO with a station from Italy |
| 17 | +you just have to enter their prefixes in the order "DX TARGET" , where DX is the station of interest (in this case the Canadian station) |
| 18 | +and TARGET is the station of reference (in this case the Italian station). |
| 19 | +in this case we enter "VE I" and we get this result: |
| 20 | + |
| 21 | +``` |
| 22 | +Canada -> Italy |
| 23 | +target vs my loc : Beaming diff -4.72 distance diff -1456.94 Km |
| 24 | +DX -> target : Beaming 55.82 distance 6940.97 Km |
| 25 | +DX -> my loc : Beaming 51.10 distance 5484.04 Km |
| 26 | +``` |
| 27 | + |
| 28 | +which shows that the DX station (the Canadian station) "sees us" 4.72 to the left and 1456.94 Km closer than the other station. |
| 29 | +Practically we are in the same direction but much closer. |
| 30 | + |
| 31 | +As another example, while still located in England, a station from Sweden is having a QSO with a station from Greece and we are interested |
| 32 | +in the station from Sweden. We enter "sm sv" and we get |
| 33 | + |
| 34 | +``` |
| 35 | +Sweden -> Greece |
| 36 | +target vs my loc : Beaming diff +68.01 distance diff -1088.88 Km |
| 37 | +DX -> target : Beaming 165.00 distance 2432.35 Km |
| 38 | +DX -> my loc : Beaming 233.00 distance 1343.47 Km |
| 39 | +``` |
| 40 | + |
| 41 | +This shows that although we are 1088.88 Km closer than the Greek station we are 68.01 degress to their right, which is quite off the main direction. |
| 42 | +If the station is using a highly directive antenna, we probably are off into their null. |
| 43 | + |
| 44 | +## How to run it |
| 45 | + |
| 46 | +Download the pre-build `jar` from the releases, make sure you have Java 1.8 or later installed and run it on a terminal like this: |
| 47 | +``` |
| 48 | +java -jar dxccbeampos-1.0.jar MY_PREFIX |
| 49 | +``` |
| 50 | + |
| 51 | +replacing MY_PREFIX with your callsign prefix |
| 52 | +e.g running it for an English prefix, that would be |
| 53 | + |
| 54 | +``` |
| 55 | +java -jar dxccbeampos-1.0.jar G |
| 56 | +``` |
| 57 | + |
| 58 | +or |
| 59 | + |
| 60 | +``` |
| 61 | +java -jar dxccbeampos-1.0.jar 2E |
| 62 | +``` |
| 63 | + |
0 commit comments