Runways at an airport

Get all runways at an airport

GET https://api.aviowiki.com/airports/{aid}/runways/all

Path Parameters

Headers

The detailed properties of one returned set item can be found in the Runway documentation.

[
	{
		"helipad": false,
		"identifier": "13R",
		"magneticBearing": 134.00,
		"trueBearing": 121.00,
		"standardPattern": false,
		"thresholdElevation": 3.81,
		"width": 60.96,
		"tora": 4422.95,
		"toda": 4422.95,
		"asda": 4422.95,
		"lda": 3800.25,
		"surface": "CONCRETE",
		"pcnNumerical": 98,
		"pcnType": "R",
		"pcnStrength": "B",
		"pcnTirePressure": "W",
		"pcnMethod": "T",
		"edgeLights": true,
		"thresholdLights": false,
		"endLights": false,
		"centerLights": true,
		"centerLightsSpacing": null,
		"touchDownZoneLights": false,
		"visualApproachSlopeIndicator": "P4L",
		"approachLightConfiguration": "LDIN",
		"instrumental": false,
		"precision": false,
		"separate": false,
		"thresholdCoordinates": {
			"latitude": 40.6483617,
			"longitude": -73.8167147
		},
		"slope": null,
		"grooved": true,
		"parent": "APT-KS1J-8E0L",
		"aid": "RWY-V4ZG-LF64"
	},
	...,
	...,
	...,
]

Get paged runways at an airport

GET https://api.aviowiki.com/airports/{aid}/runways

Path Parameters

Query Parameters

Headers

The properties of the pagination can be found at Pagination. The detailed properties of one returned set item can be found in the Runway documentation.

{
	"page": {
		"number": 0,
		"size": 10,
		"totalPages": 1,
		"totalResults": 8
	},
	"content": [
		{
			"helipad": false,
			"identifier": "13R",
			"magneticBearing": 134.00,
			"trueBearing": 121.00,
			"standardPattern": false,
			"thresholdElevation": 3.81,
			"width": 60.96,
			"tora": 4422.95,
			"toda": 4422.95,
			"asda": 4422.95,
			"lda": 3800.25,
			"surface": "CONCRETE",
			"pcnNumerical": 98,
			"pcnType": "R",
			"pcnStrength": "B",
			"pcnTirePressure": "W",
			"pcnMethod": "T",
			"edgeLights": true,
			"thresholdLights": false,
			"endLights": false,
			"centerLights": true,
			"centerLightsSpacing": null,
			"touchDownZoneLights": false,
			"visualApproachSlopeIndicator": "P4L",
			"approachLightConfiguration": "LDIN",
			"instrumental": false,
			"precision": false,
			"separate": false,
			"thresholdCoordinates": {
				"latitude": 40.6483617,
				"longitude": -73.8167147
			},
			"slope": null,
			"grooved": true,
			"parent": "APT-KS1J-8E0L",
			"aid": "RWY-V4ZG-LF64"
		},
		...,
		...,
		...,
	]
}

Last updated