Hello everyone,
Is there a program or script that could automate the creation of a custom keplerian element list that includes satelites that i´m only interested in, from data from either either spacetrack or celestrack? My idea is to create something similar to the list that AMSAT publishes but more specific to my needs, meaning that there are some sats in there that I don´t care about.
I tried the TLEretriever but no cigar there, at least for the purpose in sight.
73´s Paulo CT2IWW
You should be able to take the AMSAT keps and delete the lines for the birds you do not want, save the result with the same name. Then reload that into your program and go. Good luck
On 6/16/2011 4:14 PM, CT2IWW Paulo Teixeira wrote:
Hello everyone,
Is there a program or script that could automate the creation of a custom keplerian element list that includes satelites that i´m only interested in, from data from either either spacetrack or celestrack? My idea is to create something similar to the list that AMSAT publishes but more specific to my needs, meaning that there are some sats in there that I don´t care about.
I tried the TLEretriever but no cigar there, at least for the purpose in sight.
73´s Paulo CT2IWW _______________________________________________ Sent via AMSAT-BB@amsat.org. 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
I used to use a program called NASAWASH. You set up a "mysats" file that specifies which birds you are interested in, and then you can set up a batch file that will automatically parse whatever input file you specify (like nasa.all) and output the filtered results to the filename and location that you specified.
Looks like it's still available in the AMSAT software archive at http://www.amsat.org/amsat/ftp/software/PC/util/nasawash.zip
George, KA3HSW
----- Original Message ----- From: "CT2IWW Paulo Teixeira" ct2iww@gmail.com To: amsat-bb@amsat.org Sent: Thursday, June 16, 2011 3:14 PM Subject: [amsat-bb] Keps
Hello everyone,
Is there a program or script that could automate the creation of a custom keplerian element list that includes satelites that i´m only interested in, from data from either either spacetrack or celestrack? My idea is to create something similar to the list that AMSAT publishes but more specific to my needs, meaning that there are some sats in there that I don´t care about.
I tried the TLEretriever but no cigar there, at least for the purpose in sight.
73´s Paulo CT2IWW _______________________________________________
At 11:46 PM -0500 6/16/11, George Henry wrote:
I used to use a program called NASAWASH. You set up a "mysats" file that specifies which birds you are interested in, and then you can set up a batch file that will automatically parse whatever input file you specify (like nasa.all) and output the filtered results to the filename and location that you specified.
I'm the author of NASAWASH. It doesn't have that feature, though it would be a good starting point for a C programmer wishing to create such a program. If somebody added that feature already, I'm not aware of it (and the version on the AMSAT web/ftp site doesn't include it). Perhaps you're thinking of some other program you used in conjunction with NASAWASH?
If you have (or install yourself) a reasonably standard "grep" program (such as the one at http://gnuwin32.sourceforge.net/packages/grep.htm ) you can write a simple batch file script like this, assuming that you've already downloaded the elements from your favorite source to a file named inputfile:
nasawash inputfile nasabare.txt grep -A 2 AO-51 nasabare.txt >mynasa.txt grep -A 2 FO-29 nasabare.txt >>mynasa.txt grep -A 2 AO-07 nasabare.txt >>mynasa.txt grep -A 2 SO-67 nasabare.txt >>mynasa.txt
The "-A 2" tells grep to output the matching line and two lines following. The NASAWASH step is optional if the file you download contains nothing but the element sets.
73 -Paul kb5mu@amsat.org
In the same utilities directory is a program called SORTNENG which will extract specific satellites from a list of Keps. I use it in combination with NASAWASH in a batch file to send customized lists to the several tracking programs I use.
Alan WA4SCA
-----Original Message----- From: amsat-bb-bounces@amsat.org [mailto:amsat-bb-bounces@amsat.org] On Behalf Of George Henry Sent: Thursday, June 16, 2011 11:46 PM To: CT2IWW Paulo Teixeira; amsat-bb@amsat.org Subject: [amsat-bb] Re: Keps
I used to use a program called NASAWASH. You set up a "mysats" file that specifies which birds you are interested in, and then you can set up a batch
file that will automatically parse whatever input file you specify (like nasa.all) and output the filtered results to the filename and location that you specified.
Looks like it's still available in the AMSAT software archive at http://www.amsat.org/amsat/ftp/software/PC/util/nasawash.zip
George, KA3HSW
----- Original Message ----- From: "CT2IWW Paulo Teixeira" ct2iww@gmail.com To: amsat-bb@amsat.org Sent: Thursday, June 16, 2011 3:14 PM Subject: [amsat-bb] Keps
Hello everyone,
Is there a program or script that could automate the creation of a custom keplerian element list that includes satelites that i´m only interested in, from data from either either spacetrack or celestrack? My idea is to create something similar to the list that AMSAT publishes but more specific to my needs, meaning that there are some sats in there that I don´t care about.
I tried the TLEretriever but no cigar there, at least for the purpose in sight.
73´s Paulo CT2IWW _______________________________________________
_______________________________________________ Sent via AMSAT-BB@amsat.org. 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
THAT'S the one I was thinking of! It's been a long time since I've needed it...
George, KA3HSW
----- Original Message ----- From: "Alan P. Biddle" APBIDDLE@UNITED.NET To: "'George Henry'" ka3hsw@att.net; "'CT2IWW Paulo Teixeira'" ct2iww@gmail.com; amsat-bb@amsat.org Sent: Friday, June 17, 2011 2:43 AM Subject: RE: [amsat-bb] Re: Keps
In the same utilities directory is a program called SORTNENG which will extract specific satellites from a list of Keps. I use it in combination with NASAWASH in a batch file to send customized lists to the several tracking programs I use.
Alan WA4SCA
-----Original Message----- From: amsat-bb-bounces@amsat.org [mailto:amsat-bb-bounces@amsat.org] On Behalf Of George Henry Sent: Thursday, June 16, 2011 11:46 PM To: CT2IWW Paulo Teixeira; amsat-bb@amsat.org Subject: [amsat-bb] Re: Keps
I used to use a program called NASAWASH. You set up a "mysats" file that specifies which birds you are interested in, and then you can set up a batch
file that will automatically parse whatever input file you specify (like nasa.all) and output the filtered results to the filename and location that you specified.
Looks like it's still available in the AMSAT software archive at http://www.amsat.org/amsat/ftp/software/PC/util/nasawash.zip
George, KA3HSW
----- Original Message ----- From: "CT2IWW Paulo Teixeira" ct2iww@gmail.com To: amsat-bb@amsat.org Sent: Thursday, June 16, 2011 3:14 PM Subject: [amsat-bb] Keps
Hello everyone,
Is there a program or script that could automate the creation of a custom keplerian element list that includes satelites that i´m only interested in, from data from either either spacetrack or celestrack? My idea is to create something similar to the list that AMSAT publishes but more specific to my needs, meaning that there are some sats in there that I don´t care about.
I tried the TLEretriever but no cigar there, at least for the purpose in sight.
73´s Paulo CT2IWW _______________________________________________
_______________________________________________ Sent via AMSAT-BB@amsat.org. 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
On Thu, June 16, 2011 22:14, CT2IWW Paulo Teixeira wrote:
Hello everyone,
Hi Paulo,
Is there a program or script that could automate the creation of a custom keplerian element list that includes satelites that i´m only interested in, from data from either either spacetrack or celestrack?
Take a look at HalloKepler via the following link:
http://www.hallosat.de/german/hallokepler/HalloKepler.htm
My idea is to create something similar to the list that AMSAT publishes but more specific to my needs, meaning that there are some sats in there that I don´t care about.
I tried the TLEretriever but no cigar there, at least for the purpose in sight.
73´s Paulo CT2IWW
73 Jan - PE0SAT
participants (6)
-
Alan P. Biddle
-
CT2IWW Paulo Teixeira
-
George Henry
-
Jim Wright
-
Paul Williamson
-
PE0SAT