stars.txt

Discussion forum for Celestia developers; topics may only be started by members of the developers group, but anyone can post replies.
hank
Developer
Posts: 645
Joined: 03.02.2002
With us: 22 years 9 months
Location: Seattle, WA USA

Post #161by hank » 20.10.2007, 18:58

t00fri wrote:
hank wrote:
Cham wrote:There are still lots of problems with the binaries (mostly duplicates), that I've indicated elsewhere... Can't the binaries be corrected and updated on CVS ?
How would this be done? Who would do it?
When asking that question, you were not even aware who had done all that work about the binary orbits ;-)

Nonsense. I was well aware of who had done all the work on the binary orbits. That wasn't the question. The question was who would do the remaining work necessary to fix the problems noted by Cham.

- Hank

Avatar
Cham M
Posts: 4324
Joined: 14.01.2004
Age: 60
With us: 20 years 10 months
Location: Montreal

Post #162by Cham » 20.10.2007, 18:59

Fridger, I may have found a simple and elegant solution :

Just add the suffix "AB" to all barycenters which only has an HIP name, like this :

Code: Select all

 Barycenter "HIP 2237 AB"


That way, we could select the barycenter using the command line, and it's also working great with a script.

That suffix also shows clearly to the user it's about a barycenter.
"Well! I've often seen a cat without a grin", thought Alice; "but a grin without a cat! It's the most curious thing I ever saw in all my life!"

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #163by t00fri » 20.10.2007, 19:08

Cham wrote:Well then, the problem is to avoid the ones you have indicated in a previous message, and that I've indicated too :

In a given binary, how can we select the barycenter itself from the command line, if it has the same HIP name as one of the components, as stored in Celestia's internal number ? This is also causing some selection problems with scripts.
Right now I think the fact that for binaries without proper name one cannot dial the barycenter is simply a bug. If I find time or if Chris L. finds some time, this should be an easy matter to clear up.

If the barycenter can't have an HIP number in front of its name (in the STC file), is it a good solution to simply remove the HIP number in front of the star names, since Celestia can identify the stars from their declared names anyay ?


Well the multitude of possibilities to writing a name is a real problem here. A (HIP) number is a much cleaner way of identification. With PERL I can simply chop off anything but the numerals and then I know what the object is, INDEPENDENT of syntactical issues! You see, my PERL scripts already do quite sophisticated things:

First of all, I read in the entire stars.txt file of Celestia and merge it with the actual correction file, revised.stc. After some consistency tests, I use the RA, DEC and distance values from the main Celestia star database for the coordinates of the binary's barycenter, in order not to encounter some slightly different values in the display! This is just one of various actions. Without using the HIP numbers this would be virtually impossible...

From my extended tests it seems the overall situation is not all that bad. But we do need to do some adaptations in the code to become conform with the "standards". I don't think the effort would be very high. But it's clearly more than just writing posts with proverbs... ;-)

Bye Fridger
Image

Avatar
Cham M
Posts: 4324
Joined: 14.01.2004
Age: 60
With us: 20 years 10 months
Location: Montreal

Post #164by Cham » 20.10.2007, 19:12

Fridger,

please read my previous message (if you haven't already, since we're cross-posting). What do you think to just add "AB" to the barycenter's name (with an HIP name only) ? This is solving all issues.
"Well! I've often seen a cat without a grin", thought Alice; "but a grin without a cat! It's the most curious thing I ever saw in all my life!"

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #165by t00fri » 20.10.2007, 19:18

Cham wrote:Fridger, I may have found a simple and elegant solution :

Just add the suffix "AB" to all barycenters which only has an HIP name, like this :

Code: Select all

 Barycenter "HIP 2237 AB"


That way, we could select the barycenter using the command line, and it's also working great with a script.

That suffix also shows clearly to the user it's about a barycenter.

Indeed, Cham, that seems to work!!

However one has to also write

OrbitBarycenter "HIP 2237 AB"

So here is a concrete test case in visualbins.stc:

Code: Select all

 Barycenter "HIP 2237 AB"
 {
 RA         7.088207
 Dec      -20.334776
 Distance 105.181230
 }

 
 2237 "HIP 2237 A" # component A
 {
 OrbitBarycenter "HIP 2237 AB"
 SpectralType "G3V"
 AppMag  7.27
 
        EllipticalOrbit {
                Period               5.650
                SemiMajorAxis        2.205 # mass ratio 1.29 : 1.32
                Eccentricity         0.660
                Inclination         62.698
                AscendingNode      197.148
                ArgOfPericenter    235.834
                MeanAnomaly         15.929
        }
 }

 "HIP 2237 B" # component B
 {
 OrbitBarycenter "HIP 2237 AB"
 SpectralType "?"
 AppMag 7.35
 
        EllipticalOrbit {
                Period               5.650
                SemiMajorAxis        2.162 # mass ratio 1.29 : 1.32
                Eccentricity         0.660
                Inclination         62.698
                AscendingNode      197.148
                ArgOfPericenter     55.834
                MeanAnomaly         15.929
        }
 }


Do you agree?

Bye Fridger
Image

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #166by t00fri » 20.10.2007, 19:23

hank wrote:Nonsense. I was well aware of who had done all the work on the binary orbits. That wasn't the question. The question was who would do the remaining work necessary to fix the problems noted by Cham.

- Hank


Yes, and to any insider it was obvious that only me could to that stuff properly...

Bye Fridger
Image

Avatar
Cham M
Posts: 4324
Joined: 14.01.2004
Age: 60
With us: 20 years 10 months
Location: Montreal

Post #167by Cham » 20.10.2007, 19:37

t00fri wrote:Do you agree?

Bye Fridger


Yes, of course I agree ! :wink:

This is also what I've done in my pulsar binaries addon.
"Well! I've often seen a cat without a grin", thought Alice; "but a grin without a cat! It's the most curious thing I ever saw in all my life!"

hank
Developer
Posts: 645
Joined: 03.02.2002
With us: 22 years 9 months
Location: Seattle, WA USA

Post #168by hank » 20.10.2007, 19:42

t00fri wrote:
hank wrote:Nonsense. I was well aware of who had done all the work on the binary orbits. That wasn't the question. The question was who would do the remaining work necessary to fix the problems noted by Cham.

- Hank
Yes, and to any insider it was obvious that only me could to that stuff properly...

Perhaps it was obvious to you. But for others that might depend on the definition of "properly". And others could not assume that you would be willing to do it, even if you were the only one who could do it "properly".

- Hank

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #169by t00fri » 20.10.2007, 19:43

Martin,
do you want me to quickly generate and post the correspondingly modified visualbins.stc and spectbins.stc files for further testing?

Bye Fridger
Image

Avatar
Cham M
Posts: 4324
Joined: 14.01.2004
Age: 60
With us: 20 years 10 months
Location: Montreal

Post #170by Cham » 20.10.2007, 19:49

t00fri wrote:Martin,
do you want me to quickly generate and post the correspondingly modified visualbins.stc and spectbins.stc files for further testing?


Yes, please.

And I'm sure we're getting to the final version now, most probably ready for CVS and mass consumption ! :D
"Well! I've often seen a cat without a grin", thought Alice; "but a grin without a cat! It's the most curious thing I ever saw in all my life!"

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #171by t00fri » 20.10.2007, 19:50

hank wrote:
t00fri wrote:
hank wrote:Nonsense. I was well aware of who had done all the work on the binary orbits. That wasn't the question. The question was who would do the remaining work necessary to fix the problems noted by Cham.

- Hank
Yes, and to any insider it was obvious that only me could to that stuff properly...
Perhaps it was obvious to you. But for others that might depend on the definition of "properly". And others could not assume that you would be willing to do it, even if you were the only one who could do it "properly".

- Hank


This is getting increasingly bizarre. Did you really think that after 6 years of continuous engagement for Celestia I just "sneak out" of development like that?? ;-) This really sounds a bit naive.

Ask anyone around here who knows the scene...

Actually we havn't seen all that much of you during the past year until very recently? What has changed?

Bye Fridger
Last edited by t00fri on 21.10.2007, 10:09, edited 1 time in total.
Image

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #172by t00fri » 20.10.2007, 20:01

Hi all,

please have a look at my next iteration of visualbins.stc & spectbins.stc:

Here are again the download URL's:

the modified PERL scripts

http://www.celestiaproject.net/~t00fri/images/ ... ins.pl.zip
http://www.celestiaproject.net/~t00fri/images/spectbins.pl.zip

and generated .stc files for download and testing:

http://www.celestiaproject.net/~t00fri/images/visualbins.stc
http://www.celestiaproject.net/~t00fri/images/spectbins.stc

The changes were minute, following Cham's suggestion:

Code: Select all

$alt{$hipnmb,'AB'} = $cross ne ""?"$cross"  :"HIP $hipnmb AB";


This should allow to dial the barycenter in cases where the binaries only have a HIP number (and not a proper name)

Bye Fridger
Image

Avatar
Cham M
Posts: 4324
Joined: 14.01.2004
Age: 60
With us: 20 years 10 months
Location: Montreal

Post #173by Cham » 20.10.2007, 20:20

Thanks a lot Fridger.

I've tested the new version. Everything appears to be fine now. I think it's ready to be commited on CVS.

And here's my modified script to mark all these binaries. In blue : visual binaries (excluding Grant's binaries). In orange : the spectroscopic binaries, in green : other binaries (from Grant). This script includes ElChristou's suggestion to give a feedback to the user.

Code: Select all

# Title: Marks the barycenter of 239 star binaries.

{
# mark the barycenters of 22 spectroscopic binaries :
mark { object "ALF And" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "ETA And" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "BET Ari" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "BET Tri" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "DEL Tri" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "SIG 248" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "12 Per" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "GAM Per" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "ALF Aur" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "BET Aur" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "HR 3750" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "93 Leo" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "ZET UMa" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "SIG 2367" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "PHI Cyg" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "TET Aql" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "Gl 815AB" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "DEL Equ" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "ALF Equ" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "XI Cep A" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "Gl 862.1" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }
mark { object "ADS 16591" size 7 color [ 0.8 0.5 0.2 ] symbol "plus" }

# mark the barycenters of 161 visual binaries :
mark { object "HIP 2237 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "13 Cet" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 7372 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 7580 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "EPS Cet" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "46 Tau" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "51 Tau" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 22550 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 33451 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 36238 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 38052 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "10 UMa" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "81 Cnc" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 47479 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ETA Vir" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "BET CrB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 82817 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 84140 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 87655 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 87895 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "CHI Dra" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 98416 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "KAP Peg" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 107522 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "DEL Ind" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "94 Aqr" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "85 Peg" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 518 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 2941 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 5842 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "48 Cas" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 11452 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ZET Cnc" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 42430 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 45617 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "PSI Vel" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 56290 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "GAM Vir" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "78 UMa" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ALF Com" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 65026 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 67422 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ALF Cen" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "XI Boo" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ETA CrB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "MU1 Boo" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "MU2 Boo" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 76382 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 80725 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 84709 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 85667 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "26 Dra" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "70 Oph" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 93017 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ZET Sgr" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 95995 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 97222 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "TAU Cyg" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "13 Peg" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 110893 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 113445 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 1674 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 2552 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "UPS Phe" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 6486 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 6564 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 7918 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 10403 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "21 Ari" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 10542 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 12717 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ALF For" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 14913 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 15799 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 16602 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 16628 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 17954 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 19758 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "55 Tau" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 20347 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "70 Tau" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 20686 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 20916 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ALF Dor" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 21698 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 22505 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 23166 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 23395 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 23452 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 25119 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 26926 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 28442 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "Ross 614" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 30953 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 31509 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 33142 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 34860 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "9 Pup" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 38474 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 40239 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 41261 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 41426 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 41820 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 42455 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 43671 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 45571 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 46706 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 51885 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "55 Leo" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 54155 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "CHI Hya" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "PI. Cen" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "IOT Leo" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 57994 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "89 Cen" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 59780 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 59816 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 60994 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "GAM Cen" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 66438 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 66640 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 70327 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 70973 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 71914 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "17 Lib" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 72479 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 74893 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 76466 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "IOT Ser" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "GAM CrB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "IOT Nor" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "XI Sco" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "c Her" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ETA Oph" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 84123 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 85582 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 85846 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 86221 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 87204 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "99 Her" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 88932 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "73 Oph" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 91394 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 91395 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 92122 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 93574 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 94252 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 94739 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 96907 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 99376 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "ALF Del" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 102782 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 104019 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 104788 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "37 Peg" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 111314 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 111528 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 112915 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "83 Aqr" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 116436 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 116849 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }
mark { object "HIP 117570 AB" size 7 color [ 0.2 0.4 0.9 ] symbol "plus" }

# mark the barycenters of 56 other binaries :
mark { object "TAU Boo" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "UPS And" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "83 Leo" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "94 Cet" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "16 Cyg" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "PSR 1620-26" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Rigel Kentaurus" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Sirius" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Luyten 726-8" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Luyten 789-6" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Luyten 789-6 A" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Procyon" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "61 Cyg" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Struve 2398" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Groombridge 34" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "EPS Ind" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "EPS Ind B" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Kruger 60" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Wolf 424" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "GJ 1245" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "GJ 1245 A" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Lalande 21258" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Keid" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Keid BC" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "GJ 1116" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Luyten 722-22" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Stein 2051" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Luyten 668-21" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Ross 652" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "33 Lib" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "33 Lib BC" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Achird" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "36 Oph" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "36 Oph AB" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Gliese 783" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Ross 986" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Struve 1321" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "GJ 2130" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Gliese 896" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Gliese 896 A" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Gliese 896 B" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Gliese 661" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Wolf 630" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Wolf 630 AB" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Wolf 630 B" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Ross 775" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Gliese 667" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Gliese 667 AB" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "268 Cet" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "268 Cet A" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Giclas 203-47" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "MU Cas" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Alula Australis" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Alula Australis A" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "Alula Australis B" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }
mark { object "ALF UMa" size 7 color [ 0.2 0.9 0.4 ] symbol "plus" }

print {text "Blue crosses = visual binaries.\nOrange crosses = spectroscopic binaries.\nGreen crosses = other binaries." row -5 column 1 duration 10.0}
}
Last edited by Cham on 20.10.2007, 20:58, edited 3 times in total.
"Well! I've often seen a cat without a grin", thought Alice; "but a grin without a cat! It's the most curious thing I ever saw in all my life!"

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #174by t00fri » 20.10.2007, 20:26

Martin,

many thanks, the script looks nice. However there is one binary that is FAR out of the MilkyWay?! Typo? Or real?

Bye Fridger
Image

Avatar
Cham M
Posts: 4324
Joined: 14.01.2004
Age: 60
With us: 20 years 10 months
Location: Montreal

Post #175by Cham » 20.10.2007, 20:33

t00fri wrote:Martin,

many thanks, the script looks nice. However there is one binary that is FAR out of the MilkyWay?! Typo? Or real?


Far out ? You mean above the galactic plane ?

There's a pulsar (with a white dwarf, if I remember) located in M4 (globular cluster). This is "PSR 1620-26:PSR B1620-26:PSR J1623-2631". There's also an exoplanet around it.

This binary comes from Grant's "extrasolar.stc". In the script, it's an element of the "56 other binaries", near the end of the script.

Maybe I should give'em another color ?
"Well! I've often seen a cat without a grin", thought Alice; "but a grin without a cat! It's the most curious thing I ever saw in all my life!"

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #176by t00fri » 20.10.2007, 20:41

Yes, that was it. Sorry I only know "my own babies" ;-)

So I'll just wait to hear Chris L.'s opinion and then I will commit it to CVS.

Thanks for your creativity!

Bye Fridger
Image

hank
Developer
Posts: 645
Joined: 03.02.2002
With us: 22 years 9 months
Location: Seattle, WA USA

Post #177by hank » 20.10.2007, 20:52

t00fri wrote:Did you really think that after 6 years of continuous engagement for Celestia I just "float out" of development like that?? ;-) This really sounds a bit naive.

Ask anyone around here who knows the scene...
Fridger, the problem is that you have a tendency to use your contribution to Celestia as a blunt instrument when you're upset with someone.

[examples edited out]

So regrettably, there's some reason for concern about your continued participation in Celestia.

t00fri wrote:Actually we havn't seen all that much of you during the past year until very recently? What has changed?

My outburst was prompted by the review of Seeker3D in S&T that didn't even mention Celestia, contrasted with the continuing delay in releasing 1.5.0 and the consequent dissipation and fragmentation of the Celestia community.

- Hank
Last edited by hank on 21.10.2007, 12:30, edited 1 time in total.

Avatar
Cham M
Posts: 4324
Joined: 14.01.2004
Age: 60
With us: 20 years 10 months
Location: Montreal

Post #178by Cham » 20.10.2007, 20:55

t00fri wrote:Thanks for your creativity!


It was a pleasure ! :D

I've updated my previous script to change the color of the "other binaries".
"Well! I've often seen a cat without a grin", thought Alice; "but a grin without a cat! It's the most curious thing I ever saw in all my life!"

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #179by t00fri » 20.10.2007, 21:03

yes, Hank, I have admitted in public that I was/am upset about the fact that Chris L. let ALL his old collaborators hang around here for 3 months without sending even a little mail of what was going on. ... let alone the fact that Celestia development came to a total halt.

In my (professional) environment NOONE lets me hang around for three months, believe me ;-) .
http://www.desy.de/desy-th/members.html

Bye Fridger
Image

Avatar
Topic author
t00fri
Developer
Posts: 8772
Joined: 29.03.2002
Age: 22
With us: 22 years 7 months
Location: Hamburg, Germany

Post #180by t00fri » 20.10.2007, 21:18

Cham wrote:
t00fri wrote:Thanks for your creativity!

It was a pleasure ! :D

I've updated my previous script to change the color of the "other binaries".


So, what's next? ;-)

I am playing in parallel with improving the hires Saturn rings. That's also a nice physics problem to get BOTH the trasmissivity AND the albedo right.

Image

Bye Fridger
Image


Return to “Ideas & News”