Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mjohne authored Nov 3, 2019
1 parent 83895bd commit a463c02
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 26 deletions.
107 changes: 82 additions & 25 deletions PlanetoidDB/PlanetoidDBForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 23 additions & 1 deletion PlanetoidDB/PlanetoidDBForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public partial class PlanetoidDBForm : Form
{
private int currentPosition = 0, stepPosition = 0;
private readonly ArrayList planetoidDatabase = new ArrayList(capacity: 0);
private readonly SplashScreenForm formSplashScreen = new SplashScreenForm();
private readonly WebClient webClient = new WebClient();
private readonly SplashScreenForm formSplashScreen = new SplashScreenForm();
private readonly string strFilenameMPCORB = Properties.Resources.FilenameMpcorb;
private readonly string strFilenameMPCORBtemp = Properties.Resources.FilenameMpcorbTemp;
private readonly Uri uriMPCORB = new Uri(uriString: Properties.Resources.MpcorbUrl);
Expand Down Expand Up @@ -1459,6 +1459,28 @@ private void ToolStripMenuItemFilter_Click(object sender, EventArgs e)
//todo: add Filter here
}

/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ToolStripMenuItemRestart_Click(object sender, EventArgs e) => Restart();

/// <summary>
///
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ToolStripMenuItemDerivatedOrbitElements_Click(object sender, EventArgs e)
{
///todo: add DerivatedOrbitElements here
///linear eccentricity
///semi-minor axis
///eccentric anomaly
///true anomaly
///longitude of the descending node
}

#endregion

#region DoubleClick-Handler
Expand Down

0 comments on commit a463c02

Please sign in to comment.