A demo of the F# Sql Server type provider: build a simple planetarium.
The demo displays a simple planetarium. Use arrow keys to move the direction of view.
*** Nothing is displayed until the first time you hit an arrow key. ***
Only displays stars, not planets etc.
The demo assumes a rectangular viewport, so star locations near the pole will be increasingly distored.
The demo has no concept of wraparound, so panning will eventually take you to an empty void.
This is demo is NOT architected correctly: it's a demo of the F# type provider, nothing more.
The original data come from this magnificent repo:
https://github.com/astronexus/HYG-Database
The mapping from stellar spectrum to RGB value comes from here:
http://www.vendian.org/mncharity/dir3/starcolor/
This is a demo. Do not use for any purpose other than understanding F#.
This demo needs a SQL Server database. To set up:
- Open the file databasesetup.sql and change values in the first few lines to match your SQL Server setup.
- Run it using SQLCmd - eg. sqlcmd -S myserver -i databasesetup.sql or using Sql Server Management Studio
- If necessary, edit the connection string in StarsDatabase.fs to reference the location where the database was set up.