Re: [wsjt-devel] ALL.TXT (again)

2019-07-01 Thread Greg Beam
Hi Dan, The example's I spoke of aren't running through a JS engine, they are being ran through Mongo itself to perform the queries. If you want to run native JS server side, you'd be better off install NodeJs or similar. There are a ton of PGP/MongoDB tutorials out there. The main difference

Re: [wsjt-devel] ALL.TXT (again)

2019-07-01 Thread Dan Malcolm
Because I want to search via my webserver, I have a separate PHP script that does the search. Probably not as fast as MongoDB. I do get good cohesive reports though. I get a report for example that will show me just one of my QSO's, and will store results in a text file. That makes it useful

Re: [wsjt-devel] ALL.TXT (again)

2019-07-01 Thread Black Michael via wsjt-devel
Please do post the code. Thanks Greg. de Mike W9MDB On Monday, July 1, 2019, 03:53:15 PM CDT, Greg Beam wrote: Hello All, Here's an example from today's log: Results: https://paste.ubuntu.com/p/382VVMth4S/ The query takes about (2) seconds or so using a $regex search on 7,390,224

Re: [wsjt-devel] ALL.TXT (again)

2019-07-01 Thread Greg Beam
Hello All, Here's an example from today's log: Results: https://paste.ubuntu.com/p/382VVMth4S/ The query takes about (2) seconds or so using a $regex search on 7,390,224 logged events matching two callsigns; this is without being indexed nor field splitting. It is one string per line imported

Re: [wsjt-devel] dT

2019-07-01 Thread K2DBK-WSJT
Anyone else have any ideas? Maybe someone familiar with the framework used? From: K2DBK-WSJT Sent: Saturday, June 29, 2019 12:11 PM To: 'WSJT software development' Subject: Re: [wsjt-devel] dT Hi Sergio, I’m not quite sure what you are suggesting. The issue is really just a cosmetic

Re: [wsjt-devel] ALL.TXT (again)

2019-07-01 Thread Greg Beam
Hello All, This is similar to how I parse the file also; read / split the line and check line[0], then do what's needed based on checking the first string. At present, my ALL.TXT is over 400MB. What I've been doing to prevent read lock issues is creating a daily diff file between a copy and t

[wsjt-devel] interesting splatters of a 2m FT8 signal

2019-07-01 Thread DG2YCB, Uwe
Hi, I just saw on 2m a FT8 signal which had strange splatters about 270 and 2*270 Hz below the main signal, the splatters narrower than the main transmission. There was only this station on the band. What may be the reason for these splatters? 73 de Uwe, DG2YCB __

Re: [wsjt-devel] ALL.TXT (again)

2019-07-01 Thread Claude Frantz
On 7/1/19 7:59 AM, Claude Frantz wrote: Just as an example of code extract in perl: if ($line =~ m/^(\d{4})-([A-Z][a-z]{2})-(\d{2})\b/ ) { $day = $3 ; $month_alpha = $2 ; $year = $1 ; } elsif ($line =~ m/^(\d\d)(\d\d)(\d\d)_\d{6}\b/ ) { $day = $3 ; $month_num = $2 ; $year