Jump to content

How long is the runway at the KSC?


dazhat

Recommended Posts

It is 2km (maybe 1.9km, it's hard to be more exact since the distance scale doesn't go beyond tenths of a kilometer at that distance). I have a rover parked just off each end to help me line up with the runway when landing.

SHx3SEt.jpg

This only shows one more rover off in the distance, in line with the runway, but I've added a couple more now, in 3km increments heading off to the west. These make it a breeze to line up for the landing while still almost a hundred kilometers out.

I guess you could put a rover on each end and put another one near the middle, so you get the exact distance in meters instead of tenths of kilometers, then add them together.

Edited by RoboRay
Link to comment
Share on other sites


print(GameObject.Find("Runway").GetComponent<MeshFilter>().mesh.bounds);
foreach(Vector3 vertex in GameObject.Find("Runway").GetComponent<MeshFilter>().mesh.vertices)
print(vertex);

The runway is exactly 1800m X 50m at the top surface, 1860m X 110m wide at the bottom surface and 11m thick.

EDIT: If anyone wants to verify my sums without running the code then a summary of the output is:

Bounds:

Center: (0.0, 0.0, -4.5), Extents: (930.0, 55.0, 5.5)

The eight corner vertices (there are many more):

(-900.0, -25.0, 1.0)

(-900.0, 25.0, 1.0)

(-930.0, -55.0, -10.0)

(-930.0, 55.0, -10.0)

(900.0, -25.0, 1.0)

(900.0, 25.0, 1.0)

(930.0, -55.0, -10.0)

(930.0, 55.0, -10.0)

Edited by EndlessWaves
Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...