Code: Select all
"Proxima 1" "Proxima"
{
#$Info "This world is home to the scientific outpost of Proxima Base."
#$Info "This outpost is dedicated to astronomical research and is located on the night side of this world."
#$Density 3.695
#$AxialTilt 0.011607
#$Pressure 0.0
Texture "proxima1.*"
Radius 1949.60
...etc...
}
In the above sample, #$Info is a description (can occur more than once), #$Density is the density of the body in g/cm3, #$AxialTilt is the axial tilt in degrees, and #$Pressure is the atmospheric pressure in bars (zero here).
The relevance here is that I use a database to manage some of my addons, and these extensions to the ssc format help to provide information that cannot be represented in the ssc format. I have a php script that reads ssc files and imports the information into a database, and the extended fields are used for information that needs to be in the database but that cannot be represented using the ssc format.
Celestia handles these extra fields properly because it interprets them as comments. On the other hand, the php script can understand these fields and handles them correctly.