I'm new to Celestia, and a Java developer ( I haven't done any C++ for over 10 years now ). I'm working on a simple utility that would check multiple site on the web for star information and then update the various .dat files in Celestia in an automated manner. I downloaded the .dat files that contain over 2 millions stars from Celestia Motherlode (http://www.celestiamotherlode.net/creat ... _1.4.0.zip) but given the rate at which new stars are catalogued and especially the new planets, I wanted to an easier way to ensure that my stars.dat (and associated files) are constantly updated with the latest info.
Last night I got started on reading the stars.dat file using a Java program. By and large I can read the file just fine, except for the x, y, z floating point coordinates in the file (everything else reads just fine). I want to double check one of my assumptions here to make sure that I am on the right track.
Using the source code for Celestia 1.5.1, I started by looking at the data/stars.txt file file, which I assume is the flat text source that is used to generate the data/stars.dat file. The first 2 lines of the stars.txt file are:
Code: Select all
112519
1 0.00091185 1.0890133 921.37572 9.09766 F5
Which of course represents the numver of records in the file, and then the first star record itself. If I examine the stars.dat file in a hex editor, I see the following bytes that represent that first star record (skipping over the file header, version, etc.):
Code: Select all
01 00 00 00 65 4d 66 44 0f 7c 80 41 b7 54 fd c0 d7 01 58 03
The bytes 65 4d 66 44 should be for the x coordinate, in little-endian form (Java uses Big-endian, which I account for by flipping the byte order accordingly). This should correspond to the value 0.0091185 in the text file. However, try as I might I cannot trnaslate the bytes 65 4d 66 44 into that floating point number, not even close. Java floats are stored in 64 bits and there is a standard conversion from C/C++ 32 bit floats to Java 64 bit floats as follows:
Code: Select all
int iy = dis.readInt(); // Read the 4 bytes in from the disk file
String hex = Integer.toHexString(iy); // Debugger shows hex = 65 4d 66 44
int iy2 = Integer.reverseBytes(iy); // Reverse the byte order to be Java big-endian
String hex2 = Integer.toHexString(iy2); // Make sure the bytes look good, and they do: 44 66 4d 65
float y = Float.intBitsToFloat(iy2); // Convert the integer bits into a Java float. x becomes 6.0623225E22, WAY wrong
Does anyone have any ideas why the floating point numbers are not workign for me? I can read the int16 values just fine for the Abs Mag and the bit-flagged start type / stellar class. Its only these floating point numbers that are a problem for me.
Many thanks in advance!
- Jeff