state,county in county field

6 posts / 0 new
Last post
kk4ggl
state,county in county field

I was looking around in cqrlog and I noticed that when I input a call state,county will show in the county field ... for me FL,St. Johns. Shouldn't that just be the county, for me ... St. Johns?

oh1kh
state,county in county field

It seems to be that in fNewQSO.pas source at line 6604 the county contents are made as "state"+","+"county"
Could there be equally named countys in different states? Perhaps that's why state and comma is added in front of county name.

For me, who has not payed QRZ user account, your call shows county only as "FL,"

--
Saku
OH1KH

kk4ggl
state,county in county field

I have now enabled view county field. It looks like every US entry shows the same way in the county field... state,county.
If this doesn't effect adif uploads from cqrlog to anything else, then I won't worry about it.

Rick, KK4GGL

oh1kh
state,county in county field

Unfortunately county is logged with state (I do not know why it is originally done so?)

MariaDB [cqrlog003]> select state, county from cqrlog_main where county like '%,%' limit 5;

+-------+----------------+
| state | county |
+-------+----------------+
| CT | CT,HARTFORD |
| WI | WI,MANITOWOC |
| MN | MN,SAINT LOUIS |
| IL | IL,COOK |
| PA | PA,LANCASTER |
+-------+----------------+
5 rows in set (0.001 sec)

And so it will export as is, checked.
I do a pull request to remove this as I do not see any mind in this.

Thanks for reporting. Nobody has noticed that before.

--
Saku
OH1KH

nn9k
nn9k's picture
state,county in county field

There are many cases of the same county name in different states.
Check the ADIF specs for state and county, I believe it is State, county. In my case -- IL,Henry

Peter, NN9K

Peter, NN9K

oh1kh
Hi Peter!

Hi Peter!

Thanks for comment. I guessed that in msg #2.
https://github.com/ok2cqr/cqrlog/pull/503
https://github.com/ok2cqr/cqrlog/pull/506

--
Saku
OH1KH