Missing nearby stars.
-
Topic authormarc
- Posts: 426
- Joined: 13.03.2002
- With us: 22 years 8 months
- Location: Outback Australia
Missing nearby stars.
Ive been looking for Wolf 359 which is about 7.8 ly from sol but I dont think its in the database.
OtherNames are GJ406.
Ive read that it is from the Yale database.
Other missing nearby stars
GJ905 Ross248
GJ65 LHS 10 (B) , Luyten 726-8
And there are more.
http://www.nbso.org/NSDB26_German.html
Any chance that these can be included in the database?
OtherNames are GJ406.
Ive read that it is from the Yale database.
Other missing nearby stars
GJ905 Ross248
GJ65 LHS 10 (B) , Luyten 726-8
And there are more.
http://www.nbso.org/NSDB26_German.html
Any chance that these can be included in the database?
-
- Posts: 986
- Joined: 16.08.2002
- With us: 22 years 3 months
- Location: USA, East Coast
-
- Posts: 6
- Joined: 10.08.2002
- With us: 22 years 3 months
- Location: Nebraska, USA
Missing Stars
I was also trying to find Wolf 359 once and couldn't. I figured it had a different name but if someone else can't find it... I have a National Geographic map that came out sometime in 1999 or 2000 of the Milky Way which has some more missing stars on it.
You can now add the stars in manually using the stc format...They are saved like an ssc file in the Extras directory...
Heres is sample code used in a stc file....
You will however have to add the name in starnames.dat like so
300001:Sirius B
Heres is sample code used in a stc file....
Code: Select all
# Sirius B
300001 {
RA 101.2886
Dec -16.71314306
Distance 8.601223
SpectralType "D"
AppMag 15
}
You will however have to add the name in starnames.dat like so
300001:Sirius B
I'm trying to teach the cavemen how to play scrabble, its uphill work. The only word they know is Uhh and they dont know how to spell it!
-
- Posts: 986
- Joined: 16.08.2002
- With us: 22 years 3 months
- Location: USA, East Coast
Missing Stars
Where do you find .stc files? Are they associated with one of Celestia's files itself?
I tried to do this on my own; I added a file named Wolf359.stc to the extras folder, with the following information in it:
# Wolf 359
300006 {
RA 10.941389
Dec +7.0019445
Distance 7.78
SpectralType "M6Ve"
AppMag 13.53
}
(I think those values are pretty close to right, anyway).
But for some reason it won't show up in Celestia when I run it. Can anyone help?
# Wolf 359
300006 {
RA 10.941389
Dec +7.0019445
Distance 7.78
SpectralType "M6Ve"
AppMag 13.53
}
(I think those values are pretty close to right, anyway).
But for some reason it won't show up in Celestia when I run it. Can anyone help?
-
- Posts: 986
- Joined: 16.08.2002
- With us: 22 years 3 months
- Location: USA, East Coast
I erred in my calculations (thanks, seldon, for that explanation of RA in another thread). Check my math, but I think this should be the correct file info:
The info I found for Wolf 359 is a RA of 10:56:29 and a Dec of +07:00.7 N. I originally calculated RA as degrees when it should have been calculated as hours. ( n00b)
Code: Select all
# Wolf 359
300006 {
RA 164.12083
Dec 7.0019445
Distance 7.78
SpectralType "M6Ve"
AppMag 13.53
}
The info I found for Wolf 359 is a RA of 10:56:29 and a Dec of +07:00.7 N. I originally calculated RA as degrees when it should have been calculated as hours. ( n00b)
-
- Site Admin
- Posts: 4211
- Joined: 28.01.2002
- With us: 22 years 9 months
- Location: Seattle, Washington, USA
Here's what I'd like to do:
- Make parser accept the + character should be accepted as a valid numeric character
- Create an .stc version of the Gliese catalog. It has quite a few stars that are missing from the HIPPARCOS catalog. There is some overlap, so we'd have to be careful not to duplicate any stars.
- Allow star names to be speficied in .stc files; requiring starnames.dat to be changed is ridiculous.
--Chris
- Make parser accept the + character should be accepted as a valid numeric character
- Create an .stc version of the Gliese catalog. It has quite a few stars that are missing from the HIPPARCOS catalog. There is some overlap, so we'd have to be careful not to duplicate any stars.
- Allow star names to be speficied in .stc files; requiring starnames.dat to be changed is ridiculous.
--Chris
Chris,
That'd be great!
I've been wondering if a format like
might be not too outrageous.
As a user, I'd prefer
of course.
That'd be great!
I've been wondering if a format like
Code: Select all
500000 { Name " list of colon separated names" }
might be not too outrageous.
As a user, I'd prefer
Code: Select all
500000 "list of colon separated names" { ... }
Selden