| |
CX2SA > SATDIG 31.01.14 21:05l 740 Lines 20670 Bytes #999 (0) @ WW
BID : AMSATBB938
Read: GUEST
Subj: AMSAT-BB-digest V9 38
Path: IZ3LSV<IK6ZDE<F1OYP<JH4XSY<JE7YGF<7M3TJZ<CX2SA
Sent: 140131/2003Z @:CX2SA.SAL.URY.SA #:3029 [Salto] FBB7.00e $:AMSATBB938
From: CX2SA@CX2SA.SAL.URY.SA
To : SATDIG@WW
Today's Topics:
1. CAPE-2 over Brazil (Roland Zurmely)
2. Re: perl script to manipulate keps (Andrew Rich)
3. FUNcube Fitter Messages available as a text file
(David A B Johnson)
4. Satellite logging software - eQSL (Peter Wilson)
5. Satellites - JE9PEL (Clint Bradford)
6. ISS power / antenna (Andrew Rich)
7. Re: ISS power / antenna (M5AKA)
8. D STAR satellite coming (wa4hfn@xxxxxxx.xxxx
9. Re: Satellite logging software - eQSL (David Beumer)
10. FUNcube-1 Dashboard - auto start data capture? (Ken Swaggart)
11. Re: FUNcube-1 Dashboard - auto start data capture?
(Andrew Glasbrenner)
12. Re: FUNcube-1 Dashboard - auto start data capture? (Ken Swaggart)
13. Some Big Game on Sunday? (Clint Bradford)
14. Re: FUNcube-1 Dashboard - auto start data capture? (Paul Stoetzer)
----------------------------------------------------------------------
Message: 1
Date: Thu, 30 Jan 2014 12:58:38 -0800 (PST)
From: Roland Zurmely <py4zbz@xxxxx.xxx>
To: AMSAT <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] CAPE-2 over Brazil
Message-ID:
<1391115518.57584.YahooMailNeo@xxxxxxxxx.xxxx.xxx.xxxxx.xxx>
Content-Type: text/plain; charset=us-ascii
Orbit #1094 20:32 UTC
Successful commands:
W5UL>W5UL-15>UI,C,F0:
*forcebeac#
W5UL-15>W5UL>UI,C,F0:
+W5UL,CAPE-2,a,OR,201301281950CST,5278mV,01009,a,21C,25C,ulcape.org#
W5UL>W5UL-15>UI,C,F0:
*dump#
W5UL-15>W5UL>UI,C,F0:
W5UL,5177,896,5175,9,5171,157,5171,OR,001,21,25,ulcape.org#
http://www.qsl.net/py4zbz/cape.htm#k
73 de Roland.
------------------------------
Message: 2
Date: Fri, 31 Jan 2014 06:58:52 +1000
From: Andrew Rich <vk4tec@xxxxxxxxxxxxx.xxx>
To: Gus <gus@xxxxx.xxx>
Cc: "amsat-bb@xxxxx.xxxx <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] Re: perl script to manipulate keps
Message-ID: <76A05F03-FE48-4989-BFB4-B1B5AA042C7A@xxxxxxxxxxxxx.xxx>
Content-Type: text/plain; charset=us-ascii
Very good
Well done
Sent from my iPhone
> On 31 Jan 2014, at 2:03 am, Gus <gus@xxxxx.xxx> wrote:
>
> This is what I use:
>
> ---------------8<------------------
> #!/usr/bin/perl -w
>
> use FileHandle;
> use LWP::Simple;
>
> @xxxxxxxxxxx = qw( amateur.txt cubesat.txt weather.txt );
> $keps_source = "http://www.celestrak.com/NORAD/elements";
> $keps_local = "$ENV{HOME}/keps";
>
> @xxxx = qw( VO-52 AO-7 AO-73);
>
>
> $verbose = 1; # set to 0 to eliminate chatter
>
> @xxxxxxxxxxx = ();
>
> foreach $file (@xxxxxxxxxxxx {
> @xxxx = fetch_keps( "$keps_source/$file" );
> next unless scalar(@xxxxxx
>
> save_file( "$keps_local/$file", @xxxx );
>
> foreach $sat (@xxxxx {
> for ($i=0; $i<=$#keps; $i++) {
> $keps[$i] =~ /\b$sat\b/ && do {
> ($name, $line1, $line2) = cleanup_elements( @xxxxxxx..xxxxx );
> $verbose && print "$name\n$line1\n$line2\n\n";
> }
> };
> }
>
> #save interesting elements
> save_file( "$keps_local/interesting.txt", @xxxxxxxxxxx );
> } # we're done
>
> #---------------------------------------------------------#
> # read keps directly, no need for wget or other externals #
> #---------------------------------------------------------#
> sub fetch_keps {
> my $url = shift;
> my $txt = get( $url );
>
> ! defined $txt && do {
> print STDERR "Can't retrieve \"$url\"\n";
> return undef;
> };
>
> $txt =~ /<title>Untitled Document<\/title>/m && do {
> print STDERR "No such file: \"$url\"\n";
> return undef;
> };
>
> $verbose && print "Got \"$url\" OK!\n";
> return split /\n/, $txt;
> }
>
> #--------------------------------------------------#
> # write array to file -- first element is filename #
> #--------------------------------------------------#
> sub save_file {
> my $where = shift;
> my $out = new FileHandle "> $where";
> if (! defined $out) {
> print STDERR "Can't open \"$where\" for output\n";
> return;
> }
>
> foreach (@xx {
> $out->print( "$_\n" );
> }
> $out->close();
> }
>
> #-------------------------------------------------------#
> # cleans up elements. currently collects elements for #
> # sats of interest, but could also fix checksums, look #
> # for duplicates, etc, etc #
> #-------------------------------------------------------#
> sub cleanup_elements {
> my ($name, $line1, $line2) = @xx
>
> # make corrections here
>
> push @xxxxxxxxxxxx ($name, $line1, $line2);
>
> return ($name, $line1, $line2);
> }
>
> --------------->8------------------
>
> Somewhat more verbose, but it doesn't use the external utilities so it is
more OS agnostic.
>
> I keep meaning to expand that final function....
>
>
>
>> On 01/30/2014 05:50 AM, Andrew Rich wrote:
>> Slight mod
>>
>> system("wget http://www.celestrak.com/NORAD/elements/amateur.txt -O
/maint/scripts/keps/amateur.txt");
>> system("wget http://www.celestrak.com/NORAD/elements/cubesat.txt -O
/maint/scripts/keps/cubesat.txt");
>> system("wget http://www.celestrak.com/NORAD/elements/weather.txt -O
/maint/scripts/keps/weather.txt");
>> ----- Original Message -----
>> From: Andrew Rich
>> To: amsat-bb@xxxxx.xxx
>> Sent: Thursday, January 30, 2014 7:35 PM
>> Subject: perl script to manipulate keps
>>
>>
>> Enjoy - just keep adding subs for each bird
>>
>> #!/usr/bin/perl
>> system("rm /maint/scripts/keps/*.txt");
>> system("wget http://www.celestrak.com/NORAD/elements/amateur.txt");
>> system("wget http://www.celestrak.com/NORAD/elements/cubesat.txt");
>> system("wget http://www.celestrak.com/NORAD/elements/weather.txt");
>> system("cat /maint/scripts/keps/*.txt >
/maint/scripts/keps/total_keps.txt");
>> open (outfile,"> /maint/scripts/keps/final_keps.txt");
>> open (keps,"/maint/scripts/keps/total_keps.txt");
>> while (<keps>)
>> {
>> if (m/VO-52/)
>> {
>> print outfile $_;
>> $next_line = <keps>;
>> print outfile $next_line;
>> $next_line = <keps>;
>> print outfile $next_line;
>> }
>> }
>> close (outfile);
>>
>> _______________________________________________
>> Sent via AMSAT-BB@xxxxx.xxx. Opinions expressed are those of the author.
>> Not an AMSAT-NA member? Join now to support the amateur satellite program!
>> Subscription settings: http://amsat.org/mailman/listinfo/amsat-bb
>
> --
> Gus 8P6SM
> The Easternmost Isle
> _______________________________________________
> Sent via AMSAT-BB@xxxxx.xxx. Opinions expressed are those of the author.
> Not an AMSAT-NA member? Join now to support the amateur satellite program!
> Subscription settings: http://amsat.org/mailman/listinfo/amsat-bb
------------------------------
Message: 3
Date: Thu, 30 Jan 2014 21:08:59 +0000
From: David A B Johnson <dave@xxxxx.xx.xx>
To: Amsat - BBs <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] FUNcube Fitter Messages available as a text file
Message-ID: <52EABF6B.4080501@xxxxx.xx.xx>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Hi,
A text file which contains ALL the Fitter Messages that have been
captured by groundstations can be downloaded using the link on the
Fitter Messages page on the FUNcube Warehouse at:
http://warehouse.funcube.org.uk/fitter.html
<http://warehouse.funcube.org.uk//fitter.html>
The process to generate this file is executed once per day at midnight UTC.
The live page will show that Fitter Messages captured during the past 7
days.
73
Dave G4DPZ, FUNcube Team Member
------------------------------
Message: 4
Date: Thu, 30 Jan 2014 22:34:07 -0000
From: "Peter Wilson" <protest@xxxxxxxxxxx.xxx>
To: <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] Satellite logging software - eQSL
Message-ID: <000001cf1e0b$63c126b0$2b437410$@xxxxxxxxxxx.xxx>
Content-Type: text/plain; charset="us-ascii"
Hi everyone,
Having been away from the hobby for quite a while I am trying to get to
grips with the computer based logging packages.
I have an eQSL account and have set up Ham Radio Deluxe to automatically
upload my contacts as they are made.
However, I cannot find a way of putting a satellite contact in HRD which
will then be accepted by eQSL. I have a number
of QSO's being rejected as they "disagree" with the recipients log.
I'm not that bothered about awards, but I would like to have a seamless way
of sending the log files without having to
make numerous copies from one logging program to another.
I would like to keep using HRD if possible.
Anyone use HRD and eQSL for satellites successfully ?
If so, how do you do it??????
Peter
G8KEK
------------------------------
Message: 5
Date: Thu, 30 Jan 2014 18:09:38 -0800
From: Clint Bradford <clintbradford@xxx.xxx>
To: AMSAT BB <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] Satellites - JE9PEL
Message-ID: <5C2C10D4-938D-4B9C-A2DF-EC6B01D2A76F@xxx.xxx>
Content-Type: text/plain; charset=us-ascii
Kudosfor Mineo JE9PEL's mention in the February, 2014 issue of QST magazine.
His history of ham satellites' frequencies page - and Excel(tm) spreadsheet
version -
were cited: " ... outstanding list ... extensive ... never seen anything
quite like it ... "
http://www.ne.jp/asahi/hamradio/je9pel/satslist.htm
Clint K6LCS
http://www.work-sat.com
------------------------------
Message: 6
Date: Fri, 31 Jan 2014 21:57:52 +1000
From: "Andrew Rich" <vk4tec@xxxxxxxxxxxxx.xxx>
To: "amsat-bb@xxxxx.xxxx <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] ISS power / antenna
Message-ID: <BFB526B77AD4471CBE7C684A6DFC17E5@xxxxxxxxxxxxxx>
Content-Type: text/plain; charset="iso-8859-1"
Hello
Trying to work out a link budget for ISS 145.825 MHz
Anyone know power or antenna on the bird ?
- Andrew -
------------------------------
Message: 7
Date: Fri, 31 Jan 2014 13:01:06 +0000 (GMT)
From: M5AKA <m5aka@xxxxx.xx.xx>
To: AMSAT BB <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] Re: ISS power / antenna
Message-ID:
<1391173266.43235.YahooMailNeo@xxxxxxxxx.xxxx.xxx.xxxxx.xxx>
Content-Type: text/plain; charset=utf-8
I believe both the Ericson handhelds and the Kenwood D-700 and D-710 rigs
all run 5 watts output.
Antennas I think are whips but not sure if 1/4 wave or 1/2 wave
Signal strengths of the two ISS ham radio stations:
http://amsat-uk.org/2013/07/12/signal-strengths-of-the-two-iss-ham-radio-stati
ons/
73 Trevor M5AKA
On Friday, 31 January 2014, 12:10, Andrew Rich <vk4tec@xxxxxxxxxxxxx.xxx>
wrote:
Hello
Trying to work out a link budget for ISS 145.825 MHz
Anyone know power or antenna on the bird ?
- Andrew -
_______________________________________________
Sent via AMSAT-BB@xxxxx.xxx. Opinions expressed are those of the author.
Not an AMSAT-NA member? Join now to support the amateur satellite program!
Subscription settings: http://amsat.org/mailman/listinfo/amsat-bb
------------------------------
Message: 8
Date: Fri, 31 Jan 2014 16:11:15 +0000 (UTC)
From: wa4hfn@xxxxxxx.xxx
To: AMSAT <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] D STAR satellite coming
Message-ID:
<782639625.1045279.1391184675064.JavaMail.root@xxxxxxx.xxxxxxxxxxx.xx.xxxx.xxx
xxxx.xxx>
Content-Type: text/plain; charset=utf-8
Check out
http://amsat-uk.org/2013/10/22/integration-of-worlds-first-d-star-cubesat/
A DStar bird is coming .
------------------------------
Message: 9
Date: Fri, 31 Jan 2014 09:15:14 -0700
From: "David Beumer" <dave@xxxxxxx.xxx>
To: "'Peter Wilson'" <protest@xxxxxxxxxxx.xxx>, "'AMSAT-BB'"
<AMSAT-BB@xxxxx.xxx>
Subject: [amsat-bb] Re: Satellite logging software - eQSL
Message-ID: <003b01cf1e9f$a02709a0$e0751ce0$@xxxxxxx.xxx>
Content-Type: text/plain; charset="us-ascii"
Peter
In HRD Logger you need to set the Satellite name and Propagation mode to
satellite and both LoTW and eQSL will recognize QSO as Satellite .
Dave
W0DHB
-----Original Message-----
From: amsat-bb-bounces@xxxxx.xxx [mailto:amsat-bb-bounces@xxxxx.xxxx On
Behalf Of Peter Wilson
Sent: Thursday, January 30, 2014 3:34 PM
To: amsat-bb@xxxxx.xxx
Subject: [amsat-bb] Satellite logging software - eQSL
Hi everyone,
Having been away from the hobby for quite a while I am trying to get to
grips with the computer based logging packages.
I have an eQSL account and have set up Ham Radio Deluxe to automatically
upload my contacts as they are made.
However, I cannot find a way of putting a satellite contact in HRD which
will then be accepted by eQSL. I have a number
of QSO's being rejected as they "disagree" with the recipients log.
I'm not that bothered about awards, but I would like to have a seamless way
of sending the log files without having to
make numerous copies from one logging program to another.
I would like to keep using HRD if possible.
Anyone use HRD and eQSL for satellites successfully ?
If so, how do you do it??????
Peter
G8KEK
_______________________________________________
Sent via AMSAT-BB@xxxxx.xxx. Opinions expressed are those of the author.
Not an AMSAT-NA member? Join now to support the amateur satellite program!
Subscription settings: http://amsat.org/mailman/listinfo/amsat-bb
------------------------------
Message: 10
Date: Fri, 31 Jan 2014 10:19:14 -0800
From: "Ken Swaggart" <k.swaggart@xxxxxxx.xxx>
To: <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] FUNcube-1 Dashboard - auto start data capture?
Message-ID: <F66D3AAFD33F46D4820D37A5325B7B72@xxxxxxx>
Content-Type: text/plain; format=flowed; charset="iso-8859-1";
reply-type=response
Is there anyway to auto-start the data capture? I'm trying to fully automate
the telemetry capture and can start the dashboard when the satellite rises
and kill the process when it sets, but can't auto start "Capture from
FUNcube Dongle". Could this be added to a future release?
Tnx,
Ken, W7KKE
------------------------------
Message: 11
Date: Fri, 31 Jan 2014 13:49:36 -0500 (GMT-05:00)
From: Andrew Glasbrenner <glasbrenner@xxxxxxxxxx.xxx>
To: Ken Swaggart <k.swaggart@xxxxxxx.xxx>, amsat-bb@xxxxx.xxx
Subject: [amsat-bb] Re: FUNcube-1 Dashboard - auto start data capture?
Message-ID:
<26073332.1391194177344.JavaMail.root@xxxxxxxxxxxxxxx.xxx.xx.xxxxxxxxx.xxx>
Content-Type: text/plain; charset=UTF-8
Hi Ken,
I don't have an answer, but I felt you might want to know that Dashboard
will run for weeks with no issues, or at least it has on my system. I've
seen the failed decode increment over 100,000, without issue.
I guess what I'm saying is I just let it run 24/7.
73, Drew KO4MA
-----Original Message-----
>From: Ken Swaggart <k.swaggart@xxxxxxx.xxx>
>Sent: Jan 31, 2014 1:19 PM
>To: amsat-bb@xxxxx.xxx
>Subject: [amsat-bb] FUNcube-1 Dashboard - auto start data capture?
>
>
>Is there anyway to auto-start the data capture? I'm trying to fully automate
>the telemetry capture and can start the dashboard when the satellite rises
>and kill the process when it sets, but can't auto start "Capture from
>FUNcube Dongle". Could this be added to a future release?
>
>Tnx,
>Ken, W7KKE
>
>
>_______________________________________________
>Sent via AMSAT-BB@xxxxx.xxx. Opinions expressed are those of the author.
>Not an AMSAT-NA member? Join now to support the amateur satellite program!
>Subscription settings: http://amsat.org/mailman/listinfo/amsat-bb
------------------------------
Message: 12
Date: Fri, 31 Jan 2014 10:53:51 -0800
From: "Ken Swaggart" <k.swaggart@xxxxxxx.xxx>
To: "Andrew Glasbrenner" <glasbrenner@xxxxxxxxxx.xxx>,
<amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] Re: FUNcube-1 Dashboard - auto start data capture?
Message-ID: <BB0AABA636B54B00B30CC531B5EAAC52@xxxxxxx>
Content-Type: text/plain; format=flowed; charset="UTF-8";
reply-type=original
Thanks Drew,
I'm collecting telemetry from several satellites and using the FunCube+
dongle for other tasks, so felt I should start and stop the dashboard to
free up the dongle.
73,
Ken, W7KKE
-----Original Message-----
From: Andrew Glasbrenner
Sent: Friday, January 31, 2014 10:49
To: Ken Swaggart ; amsat-bb@xxxxx.xxx
Subject: Re: [amsat-bb] FUNcube-1 Dashboard - auto start data capture?
Hi Ken,
I don't have an answer, but I felt you might want to know that Dashboard
will run for weeks with no issues, or at least it has on my system. I've
seen the failed decode increment over 100,000, without issue.
I guess what I'm saying is I just let it run 24/7.
73, Drew KO4MA
-----Original Message-----
>From: Ken Swaggart <k.swaggart@xxxxxxx.xxx>
>Sent: Jan 31, 2014 1:19 PM
>To: amsat-bb@xxxxx.xxx
>Subject: [amsat-bb] FUNcube-1 Dashboard - auto start data capture?
>
>
>Is there anyway to auto-start the data capture? I'm trying to fully
>automate
>the telemetry capture and can start the dashboard when the satellite rises
>and kill the process when it sets, but can't auto start "Capture from
>FUNcube Dongle". Could this be added to a future release?
>
>Tnx,
>Ken, W7KKE
>
>
>_______________________________________________
>Sent via AMSAT-BB@xxxxx.xxx. Opinions expressed are those of the author.
>Not an AMSAT-NA member? Join now to support the amateur satellite program!
>Subscription settings: http://amsat.org/mailman/listinfo/amsat-bb
------------------------------
Message: 13
Date: Fri, 31 Jan 2014 10:54:10 -0800
From: Clint Bradford <clintbradford@xxx.xxx>
To: AMSAT BB <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] Some Big Game on Sunday?
Message-ID: <FF6F76C7-0B2B-4B1F-9E7F-6C729FEFDCC3@xxx.xxx>
Content-Type: text/plain; charset=us-ascii
I have already seen the commercials of interest that will be broadcast
during some special sporting event that is occurring Sunday ... Who is going
to skip the "big game" and walk outside and work a satellite or two? Even
just to monitor one of our newer ones ... or to listen to the ISS' packet?
Clint K6LCS
http://www.work-sat.com
------------------------------
Message: 14
Date: Fri, 31 Jan 2014 14:00:02 -0500
From: Paul Stoetzer <n8hm@xxxx.xxx>
To: Ken Swaggart <k.swaggart@xxxxxxx.xxx>
Cc: "amsat-bb@xxxxx.xxxx <amsat-bb@xxxxx.xxx>
Subject: [amsat-bb] Re: FUNcube-1 Dashboard - auto start data capture?
Message-ID:
<CABzOSOqggjZbYEBP8MQKYVsgv=7nfddB5Pvxe8yFBumcHQL-Ow@xxxx.xxxxx.xxx>
Content-Type: text/plain; charset=ISO-8859-1
You could use a macro recorder to record and automatically set the
mouse movements and clicks necessary to start the capture. Windows
back in the days of 3.1 use to include one that was really cool, but
it doesn't anymore.
The best one I know if is Automator for Windows, but it's not free.
http://www.jitbit.com/macro-recorder/automator-for-windows/
Hopefully a future release of the Dashboard might be able to include
command line options to autostart capturing.
73,
Paul, N8HM
On Fri, Jan 31, 2014 at 1:53 PM, Ken Swaggart <k.swaggart@xxxxxxx.xxx> wrote:
> Thanks Drew,
> I'm collecting telemetry from several satellites and using the FunCube+
> dongle for other tasks, so felt I should start and stop the dashboard to
> free up the dongle.
>
> 73,
> Ken, W7KKE
>
> -----Original Message----- From: Andrew Glasbrenner
> Sent: Friday, January 31, 2014 10:49
> To: Ken Swaggart ; amsat-bb@xxxxx.xxx
> Subject: Re: [amsat-bb] FUNcube-1 Dashboard - auto start data capture?
>
>
> Hi Ken,
>
> I don't have an answer, but I felt you might want to know that Dashboard
> will run for weeks with no issues, or at least it has on my system. I've
> seen the failed decode increment over 100,000, without issue.
>
> I guess what I'm saying is I just let it run 24/7.
>
> 73, Drew KO4MA
>
>
> -----Original Message-----
>>
>> From: Ken Swaggart <k.swaggart@xxxxxxx.xxx>
>> Sent: Jan 31, 2014 1:19 PM
>> To: amsat-bb@xxxxx.xxx
>> Subject: [amsat-bb] FUNcube-1 Dashboard - auto start data capture?
>>
>>
>> Is there anyway to auto-start the data capture? I'm trying to fully
>> automate
>> the telemetry capture and can start the dashboard when the satellite rises
>> and kill the process when it sets, but can't auto start "Capture from
>> FUNcube Dongle". Could this be added to a future release?
>>
>> Tnx,
>> Ken, W7KKE
>>
>>
>> _______________________________________________
>> Sent via AMSAT-BB@xxxxx.xxx. Opinions expressed are those of the author.
>> Not an AMSAT-NA member? Join now to support the amateur satellite program!
>> Subscription settings: http://amsat.org/mailman/listinfo/amsat-bb
>
>
>
>
>
> _______________________________________________
> Sent via AMSAT-BB@xxxxx.xxx. Opinions expressed are those of the author.
> Not an AMSAT-NA member? Join now to support the amateur satellite program!
> Subscription settings: http://amsat.org/mailman/listinfo/amsat-bb
------------------------------
_______________________________________________
Sent via amsat-bb@xxxxx.xxx. Opinions expressed are those of the author.
Not an AMSAT member? Join now to support the amateur satellite program!
http://amsat.org/mailman/listinfo/amsat-bb
End of AMSAT-BB Digest, Vol 9, Issue 38
***************************************
Read previous mail | Read next mail
| |