Runways at an airport

Get all runways at an airport

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

Path Parameters

NameTypeDescription

aid*

String

Aviowiki ID of the airport

Headers

NameTypeDescription

Authorization

String

An API Token using Bearer authorization.

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

NameTypeDescription

aid*

String

Aviowiki ID of the airport

Query Parameters

NameTypeDescription

page

Number

The page number for pagination, starting from `0` to indicate the first page.

size

Number

The number of results in a page, for pagination.

Headers

NameTypeDescription

Authorization

String

An API Token using Bearer authorization.

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