DragonLog 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- DragonLog-0.4.1/DragonLog.egg-info/PKG-INFO +136 -0
- DragonLog-0.4.1/DragonLog.egg-info/SOURCES.txt +45 -0
- DragonLog-0.4.1/DragonLog.egg-info/dependency_links.txt +1 -0
- DragonLog-0.4.1/DragonLog.egg-info/entry_points.txt +2 -0
- DragonLog-0.4.1/DragonLog.egg-info/requires.txt +7 -0
- DragonLog-0.4.1/DragonLog.egg-info/top_level.txt +1 -0
- DragonLog-0.4.1/LICENCE.txt +2 -0
- DragonLog-0.4.1/MANIFEST.in +3 -0
- DragonLog-0.4.1/PKG-INFO +136 -0
- DragonLog-0.4.1/README.md +110 -0
- DragonLog-0.4.1/dragonlog/DragonLog.py +1106 -0
- DragonLog-0.4.1/dragonlog/DragonLog_MainWindow_ui.py +162 -0
- DragonLog-0.4.1/dragonlog/DragonLog_QSOForm.py +311 -0
- DragonLog-0.4.1/dragonlog/DragonLog_QSOForm_ui.py +265 -0
- DragonLog-0.4.1/dragonlog/DragonLog_RegEx.py +14 -0
- DragonLog-0.4.1/dragonlog/DragonLog_Settings.py +285 -0
- DragonLog-0.4.1/dragonlog/DragonLog_Settings_ui.py +345 -0
- DragonLog-0.4.1/dragonlog/__init__.py +0 -0
- DragonLog-0.4.1/dragonlog/__main__.py +3 -0
- DragonLog-0.4.1/dragonlog/__version__.py +3 -0
- DragonLog-0.4.1/dragonlog/data/README.md +110 -0
- DragonLog-0.4.1/dragonlog/data/adif/adx314.xsd +685 -0
- DragonLog-0.4.1/dragonlog/data/adif/adx314generic.xsd +644 -0
- DragonLog-0.4.1/dragonlog/data/bands.json +172 -0
- DragonLog-0.4.1/dragonlog/data/cb_channels.json +562 -0
- DragonLog-0.4.1/dragonlog/data/color_map.json +44 -0
- DragonLog-0.4.1/dragonlog/data/i18n/DragonLog_de.qm +0 -0
- DragonLog-0.4.1/dragonlog/data/modes.json +266 -0
- DragonLog-0.4.1/dragonlog/icons/Screenshot.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/db.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/edit.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/edit_add.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/edit_addmulti.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/edit_addmulti.xcf +0 -0
- DragonLog-0.4.1/dragonlog/icons/edit_remove.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/exit.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/fileexport.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/fileimport.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/gear.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/help.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/icons8-dragon-96.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/icons8-dragon-96.xcf +0 -0
- DragonLog-0.4.1/dragonlog/icons/info.png +0 -0
- DragonLog-0.4.1/dragonlog/icons/logo.ico +0 -0
- DragonLog-0.4.1/pyproject.toml +40 -0
- DragonLog-0.4.1/setup.cfg +4 -0
- DragonLog-0.4.1/setup_msi.py +63 -0
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: DragonLog
|
|
3
|
+
Version: 0.4.1
|
|
4
|
+
Summary: Log QSO for Ham radio
|
|
5
|
+
Author-email: Andreas Schawo <andreas@schawo.de>
|
|
6
|
+
Project-URL: Homepage, https://github.com/gitandy/DragonLog
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/gitandy/DragonLog/issues
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Intended Audience :: Other Audience
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Communications :: Ham Radio
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENCE.txt
|
|
20
|
+
Requires-Dist: PyQt6
|
|
21
|
+
Requires-Dist: maidenhead
|
|
22
|
+
Requires-Dist: xmlschema
|
|
23
|
+
Requires-Dist: PyADIF-File>=0.4.1
|
|
24
|
+
Provides-Extra: extra
|
|
25
|
+
Requires-Dist: openpyxl; extra == "extra"
|
|
26
|
+
|
|
27
|
+
DragonLog
|
|
28
|
+
=========
|
|
29
|
+
DragonLog is a logging program to log hamradio QSOs.
|
|
30
|
+
Beside logging for ham radio you can also log CB radio QSOs.
|
|
31
|
+
|
|
32
|
+

|
|
33
|
+
|
|
34
|
+
*Screenshot in german translation*
|
|
35
|
+
|
|
36
|
+
Installation
|
|
37
|
+
------------
|
|
38
|
+
The installation requires a python installation (>= 3.9).
|
|
39
|
+
|
|
40
|
+
# python3 -m pip install DragonLog
|
|
41
|
+
|
|
42
|
+
If you want to be able to export/import to/from Excel files install the extra packages
|
|
43
|
+
|
|
44
|
+
# python3 -m pip install DragonLog[extra]
|
|
45
|
+
|
|
46
|
+
Run as
|
|
47
|
+
|
|
48
|
+
# python3 -m dragonlog
|
|
49
|
+
|
|
50
|
+
Or if your python scripts folder is on PATH you can start DragonLog with
|
|
51
|
+
|
|
52
|
+
# DragonLog
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
For windows there is also an installable MSI and ZIP package available for convenience.
|
|
56
|
+
|
|
57
|
+
First start
|
|
58
|
+
-----------
|
|
59
|
+
Before you can start to log QSOs a database has to be selected.
|
|
60
|
+
It can be placed on a path where you wish to.
|
|
61
|
+
The database is created and initialised.
|
|
62
|
+
|
|
63
|
+
At the next start of the program the last database gets opened automatically.
|
|
64
|
+
|
|
65
|
+
You can switch between different databases as you like.
|
|
66
|
+
|
|
67
|
+
QSOs
|
|
68
|
+
----
|
|
69
|
+
You can log single QSOs by using the shortcut Ctrl+L or
|
|
70
|
+
use a log loop to enter multiple QSOs via Ctrl+Shift+L.
|
|
71
|
+
|
|
72
|
+
The displayed form can be handled the easiest if you use TAB key to jump from field to field.
|
|
73
|
+
|
|
74
|
+
If automatic time is selected, the time gets updated at saving the QSO.
|
|
75
|
+
|
|
76
|
+
Export
|
|
77
|
+
------
|
|
78
|
+
Following formats are supported for export
|
|
79
|
+
* Excel file
|
|
80
|
+
* CSV format (UTF-8 encoding)
|
|
81
|
+
* [ADIF 3](https://adif.org/) format (ADI/ADX)
|
|
82
|
+
|
|
83
|
+
### ADIF format export
|
|
84
|
+
ADX should be prefered over ADI as UTF-8 is supported.
|
|
85
|
+
For ADX where UTF-8 (*_INTL fields) is supported additionally the ASCII counterpart is exported.
|
|
86
|
+
|
|
87
|
+
For ADX ASCII only fields (all ADI fields) all german umlauts and ligatures are converted
|
|
88
|
+
automatically to suiting counterparts.
|
|
89
|
+
|
|
90
|
+
.adif is an alternative for .adi (as specified).
|
|
91
|
+
|
|
92
|
+
Import
|
|
93
|
+
------
|
|
94
|
+
|
|
95
|
+
Following formats are supported for export
|
|
96
|
+
* Excel file
|
|
97
|
+
* CSV format (UTF-8 encoding)
|
|
98
|
+
* [ADIF 3](https://adif.org/) format (ADI/ADX)
|
|
99
|
+
|
|
100
|
+
### Excel/CSV import
|
|
101
|
+
The import file is expected to have the same structure and column order as exported by DragonLog.
|
|
102
|
+
So best practice is to export QSOs with the current program version and adjust the import file.
|
|
103
|
+
|
|
104
|
+
Empty rows are skipped. A row is considered empty if the date/time is missing.
|
|
105
|
+
|
|
106
|
+
### ADIF format import
|
|
107
|
+
UTF-8 content (*_INTL fields) are prefered over ASCII counterparts when importing ADX files.
|
|
108
|
+
|
|
109
|
+
Hamlib integration
|
|
110
|
+
------------------
|
|
111
|
+
You can use hamlib to interact with your radio.
|
|
112
|
+
|
|
113
|
+
The QSO logging form automatically updates radio information:
|
|
114
|
+
* frequency (and band)
|
|
115
|
+
* mode
|
|
116
|
+
* power
|
|
117
|
+
|
|
118
|
+
Hamlib can be downloaded at https://github.com/Hamlib/Hamlib/releases.
|
|
119
|
+
DragonLog is tested against version 4.5.5.
|
|
120
|
+
|
|
121
|
+
After selecting your radio and interface settings you can press the start button to start the communication.
|
|
122
|
+
|
|
123
|
+
Currently, DragonLog can only configure radios with serial interface.
|
|
124
|
+
|
|
125
|
+
### On Windows
|
|
126
|
+
Unpack or install your hamlib release.
|
|
127
|
+
On the CAT settings tab you have to select your hamlib unpack/installation directory.
|
|
128
|
+
|
|
129
|
+
### On Linux
|
|
130
|
+
If no package is available for your distribution you have to compile the hamlib release first.
|
|
131
|
+
Download the release .tar.gz (not source), unpack, ./configure, make, make install.
|
|
132
|
+
The rigctld is assumed to be in /usr/local/bin and thus on your path.
|
|
133
|
+
|
|
134
|
+
Copyright
|
|
135
|
+
---------
|
|
136
|
+
DragonLog © 2023 by Andreas Schawo is licensed under [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
LICENCE.txt
|
|
2
|
+
MANIFEST.in
|
|
3
|
+
README.md
|
|
4
|
+
pyproject.toml
|
|
5
|
+
setup_msi.py
|
|
6
|
+
DragonLog.egg-info/PKG-INFO
|
|
7
|
+
DragonLog.egg-info/SOURCES.txt
|
|
8
|
+
DragonLog.egg-info/dependency_links.txt
|
|
9
|
+
DragonLog.egg-info/entry_points.txt
|
|
10
|
+
DragonLog.egg-info/requires.txt
|
|
11
|
+
DragonLog.egg-info/top_level.txt
|
|
12
|
+
dragonlog/DragonLog.py
|
|
13
|
+
dragonlog/DragonLog_MainWindow_ui.py
|
|
14
|
+
dragonlog/DragonLog_QSOForm.py
|
|
15
|
+
dragonlog/DragonLog_QSOForm_ui.py
|
|
16
|
+
dragonlog/DragonLog_RegEx.py
|
|
17
|
+
dragonlog/DragonLog_Settings.py
|
|
18
|
+
dragonlog/DragonLog_Settings_ui.py
|
|
19
|
+
dragonlog/__init__.py
|
|
20
|
+
dragonlog/__main__.py
|
|
21
|
+
dragonlog/__version__.py
|
|
22
|
+
dragonlog/data/README.md
|
|
23
|
+
dragonlog/data/bands.json
|
|
24
|
+
dragonlog/data/cb_channels.json
|
|
25
|
+
dragonlog/data/color_map.json
|
|
26
|
+
dragonlog/data/modes.json
|
|
27
|
+
dragonlog/data/adif/adx314.xsd
|
|
28
|
+
dragonlog/data/adif/adx314generic.xsd
|
|
29
|
+
dragonlog/data/i18n/DragonLog_de.qm
|
|
30
|
+
dragonlog/icons/Screenshot.png
|
|
31
|
+
dragonlog/icons/db.png
|
|
32
|
+
dragonlog/icons/edit.png
|
|
33
|
+
dragonlog/icons/edit_add.png
|
|
34
|
+
dragonlog/icons/edit_addmulti.png
|
|
35
|
+
dragonlog/icons/edit_addmulti.xcf
|
|
36
|
+
dragonlog/icons/edit_remove.png
|
|
37
|
+
dragonlog/icons/exit.png
|
|
38
|
+
dragonlog/icons/fileexport.png
|
|
39
|
+
dragonlog/icons/fileimport.png
|
|
40
|
+
dragonlog/icons/gear.png
|
|
41
|
+
dragonlog/icons/help.png
|
|
42
|
+
dragonlog/icons/icons8-dragon-96.png
|
|
43
|
+
dragonlog/icons/icons8-dragon-96.xcf
|
|
44
|
+
dragonlog/icons/info.png
|
|
45
|
+
dragonlog/icons/logo.ico
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dragonlog
|
DragonLog-0.4.1/PKG-INFO
ADDED
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: DragonLog
|
|
3
|
+
Version: 0.4.1
|
|
4
|
+
Summary: Log QSO for Ham radio
|
|
5
|
+
Author-email: Andreas Schawo <andreas@schawo.de>
|
|
6
|
+
Project-URL: Homepage, https://github.com/gitandy/DragonLog
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/gitandy/DragonLog/issues
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Intended Audience :: Other Audience
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Communications :: Ham Radio
|
|
17
|
+
Requires-Python: >=3.9
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENCE.txt
|
|
20
|
+
Requires-Dist: PyQt6
|
|
21
|
+
Requires-Dist: maidenhead
|
|
22
|
+
Requires-Dist: xmlschema
|
|
23
|
+
Requires-Dist: PyADIF-File>=0.4.1
|
|
24
|
+
Provides-Extra: extra
|
|
25
|
+
Requires-Dist: openpyxl; extra == "extra"
|
|
26
|
+
|
|
27
|
+
DragonLog
|
|
28
|
+
=========
|
|
29
|
+
DragonLog is a logging program to log hamradio QSOs.
|
|
30
|
+
Beside logging for ham radio you can also log CB radio QSOs.
|
|
31
|
+
|
|
32
|
+

|
|
33
|
+
|
|
34
|
+
*Screenshot in german translation*
|
|
35
|
+
|
|
36
|
+
Installation
|
|
37
|
+
------------
|
|
38
|
+
The installation requires a python installation (>= 3.9).
|
|
39
|
+
|
|
40
|
+
# python3 -m pip install DragonLog
|
|
41
|
+
|
|
42
|
+
If you want to be able to export/import to/from Excel files install the extra packages
|
|
43
|
+
|
|
44
|
+
# python3 -m pip install DragonLog[extra]
|
|
45
|
+
|
|
46
|
+
Run as
|
|
47
|
+
|
|
48
|
+
# python3 -m dragonlog
|
|
49
|
+
|
|
50
|
+
Or if your python scripts folder is on PATH you can start DragonLog with
|
|
51
|
+
|
|
52
|
+
# DragonLog
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
For windows there is also an installable MSI and ZIP package available for convenience.
|
|
56
|
+
|
|
57
|
+
First start
|
|
58
|
+
-----------
|
|
59
|
+
Before you can start to log QSOs a database has to be selected.
|
|
60
|
+
It can be placed on a path where you wish to.
|
|
61
|
+
The database is created and initialised.
|
|
62
|
+
|
|
63
|
+
At the next start of the program the last database gets opened automatically.
|
|
64
|
+
|
|
65
|
+
You can switch between different databases as you like.
|
|
66
|
+
|
|
67
|
+
QSOs
|
|
68
|
+
----
|
|
69
|
+
You can log single QSOs by using the shortcut Ctrl+L or
|
|
70
|
+
use a log loop to enter multiple QSOs via Ctrl+Shift+L.
|
|
71
|
+
|
|
72
|
+
The displayed form can be handled the easiest if you use TAB key to jump from field to field.
|
|
73
|
+
|
|
74
|
+
If automatic time is selected, the time gets updated at saving the QSO.
|
|
75
|
+
|
|
76
|
+
Export
|
|
77
|
+
------
|
|
78
|
+
Following formats are supported for export
|
|
79
|
+
* Excel file
|
|
80
|
+
* CSV format (UTF-8 encoding)
|
|
81
|
+
* [ADIF 3](https://adif.org/) format (ADI/ADX)
|
|
82
|
+
|
|
83
|
+
### ADIF format export
|
|
84
|
+
ADX should be prefered over ADI as UTF-8 is supported.
|
|
85
|
+
For ADX where UTF-8 (*_INTL fields) is supported additionally the ASCII counterpart is exported.
|
|
86
|
+
|
|
87
|
+
For ADX ASCII only fields (all ADI fields) all german umlauts and ligatures are converted
|
|
88
|
+
automatically to suiting counterparts.
|
|
89
|
+
|
|
90
|
+
.adif is an alternative for .adi (as specified).
|
|
91
|
+
|
|
92
|
+
Import
|
|
93
|
+
------
|
|
94
|
+
|
|
95
|
+
Following formats are supported for export
|
|
96
|
+
* Excel file
|
|
97
|
+
* CSV format (UTF-8 encoding)
|
|
98
|
+
* [ADIF 3](https://adif.org/) format (ADI/ADX)
|
|
99
|
+
|
|
100
|
+
### Excel/CSV import
|
|
101
|
+
The import file is expected to have the same structure and column order as exported by DragonLog.
|
|
102
|
+
So best practice is to export QSOs with the current program version and adjust the import file.
|
|
103
|
+
|
|
104
|
+
Empty rows are skipped. A row is considered empty if the date/time is missing.
|
|
105
|
+
|
|
106
|
+
### ADIF format import
|
|
107
|
+
UTF-8 content (*_INTL fields) are prefered over ASCII counterparts when importing ADX files.
|
|
108
|
+
|
|
109
|
+
Hamlib integration
|
|
110
|
+
------------------
|
|
111
|
+
You can use hamlib to interact with your radio.
|
|
112
|
+
|
|
113
|
+
The QSO logging form automatically updates radio information:
|
|
114
|
+
* frequency (and band)
|
|
115
|
+
* mode
|
|
116
|
+
* power
|
|
117
|
+
|
|
118
|
+
Hamlib can be downloaded at https://github.com/Hamlib/Hamlib/releases.
|
|
119
|
+
DragonLog is tested against version 4.5.5.
|
|
120
|
+
|
|
121
|
+
After selecting your radio and interface settings you can press the start button to start the communication.
|
|
122
|
+
|
|
123
|
+
Currently, DragonLog can only configure radios with serial interface.
|
|
124
|
+
|
|
125
|
+
### On Windows
|
|
126
|
+
Unpack or install your hamlib release.
|
|
127
|
+
On the CAT settings tab you have to select your hamlib unpack/installation directory.
|
|
128
|
+
|
|
129
|
+
### On Linux
|
|
130
|
+
If no package is available for your distribution you have to compile the hamlib release first.
|
|
131
|
+
Download the release .tar.gz (not source), unpack, ./configure, make, make install.
|
|
132
|
+
The rigctld is assumed to be in /usr/local/bin and thus on your path.
|
|
133
|
+
|
|
134
|
+
Copyright
|
|
135
|
+
---------
|
|
136
|
+
DragonLog © 2023 by Andreas Schawo is licensed under [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
DragonLog
|
|
2
|
+
=========
|
|
3
|
+
DragonLog is a logging program to log hamradio QSOs.
|
|
4
|
+
Beside logging for ham radio you can also log CB radio QSOs.
|
|
5
|
+
|
|
6
|
+

|
|
7
|
+
|
|
8
|
+
*Screenshot in german translation*
|
|
9
|
+
|
|
10
|
+
Installation
|
|
11
|
+
------------
|
|
12
|
+
The installation requires a python installation (>= 3.9).
|
|
13
|
+
|
|
14
|
+
# python3 -m pip install DragonLog
|
|
15
|
+
|
|
16
|
+
If you want to be able to export/import to/from Excel files install the extra packages
|
|
17
|
+
|
|
18
|
+
# python3 -m pip install DragonLog[extra]
|
|
19
|
+
|
|
20
|
+
Run as
|
|
21
|
+
|
|
22
|
+
# python3 -m dragonlog
|
|
23
|
+
|
|
24
|
+
Or if your python scripts folder is on PATH you can start DragonLog with
|
|
25
|
+
|
|
26
|
+
# DragonLog
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
For windows there is also an installable MSI and ZIP package available for convenience.
|
|
30
|
+
|
|
31
|
+
First start
|
|
32
|
+
-----------
|
|
33
|
+
Before you can start to log QSOs a database has to be selected.
|
|
34
|
+
It can be placed on a path where you wish to.
|
|
35
|
+
The database is created and initialised.
|
|
36
|
+
|
|
37
|
+
At the next start of the program the last database gets opened automatically.
|
|
38
|
+
|
|
39
|
+
You can switch between different databases as you like.
|
|
40
|
+
|
|
41
|
+
QSOs
|
|
42
|
+
----
|
|
43
|
+
You can log single QSOs by using the shortcut Ctrl+L or
|
|
44
|
+
use a log loop to enter multiple QSOs via Ctrl+Shift+L.
|
|
45
|
+
|
|
46
|
+
The displayed form can be handled the easiest if you use TAB key to jump from field to field.
|
|
47
|
+
|
|
48
|
+
If automatic time is selected, the time gets updated at saving the QSO.
|
|
49
|
+
|
|
50
|
+
Export
|
|
51
|
+
------
|
|
52
|
+
Following formats are supported for export
|
|
53
|
+
* Excel file
|
|
54
|
+
* CSV format (UTF-8 encoding)
|
|
55
|
+
* [ADIF 3](https://adif.org/) format (ADI/ADX)
|
|
56
|
+
|
|
57
|
+
### ADIF format export
|
|
58
|
+
ADX should be prefered over ADI as UTF-8 is supported.
|
|
59
|
+
For ADX where UTF-8 (*_INTL fields) is supported additionally the ASCII counterpart is exported.
|
|
60
|
+
|
|
61
|
+
For ADX ASCII only fields (all ADI fields) all german umlauts and ligatures are converted
|
|
62
|
+
automatically to suiting counterparts.
|
|
63
|
+
|
|
64
|
+
.adif is an alternative for .adi (as specified).
|
|
65
|
+
|
|
66
|
+
Import
|
|
67
|
+
------
|
|
68
|
+
|
|
69
|
+
Following formats are supported for export
|
|
70
|
+
* Excel file
|
|
71
|
+
* CSV format (UTF-8 encoding)
|
|
72
|
+
* [ADIF 3](https://adif.org/) format (ADI/ADX)
|
|
73
|
+
|
|
74
|
+
### Excel/CSV import
|
|
75
|
+
The import file is expected to have the same structure and column order as exported by DragonLog.
|
|
76
|
+
So best practice is to export QSOs with the current program version and adjust the import file.
|
|
77
|
+
|
|
78
|
+
Empty rows are skipped. A row is considered empty if the date/time is missing.
|
|
79
|
+
|
|
80
|
+
### ADIF format import
|
|
81
|
+
UTF-8 content (*_INTL fields) are prefered over ASCII counterparts when importing ADX files.
|
|
82
|
+
|
|
83
|
+
Hamlib integration
|
|
84
|
+
------------------
|
|
85
|
+
You can use hamlib to interact with your radio.
|
|
86
|
+
|
|
87
|
+
The QSO logging form automatically updates radio information:
|
|
88
|
+
* frequency (and band)
|
|
89
|
+
* mode
|
|
90
|
+
* power
|
|
91
|
+
|
|
92
|
+
Hamlib can be downloaded at https://github.com/Hamlib/Hamlib/releases.
|
|
93
|
+
DragonLog is tested against version 4.5.5.
|
|
94
|
+
|
|
95
|
+
After selecting your radio and interface settings you can press the start button to start the communication.
|
|
96
|
+
|
|
97
|
+
Currently, DragonLog can only configure radios with serial interface.
|
|
98
|
+
|
|
99
|
+
### On Windows
|
|
100
|
+
Unpack or install your hamlib release.
|
|
101
|
+
On the CAT settings tab you have to select your hamlib unpack/installation directory.
|
|
102
|
+
|
|
103
|
+
### On Linux
|
|
104
|
+
If no package is available for your distribution you have to compile the hamlib release first.
|
|
105
|
+
Download the release .tar.gz (not source), unpack, ./configure, make, make install.
|
|
106
|
+
The rigctld is assumed to be in /usr/local/bin and thus on your path.
|
|
107
|
+
|
|
108
|
+
Copyright
|
|
109
|
+
---------
|
|
110
|
+
DragonLog © 2023 by Andreas Schawo is licensed under [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)
|