@fboes/aerofly-data 1.7.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/aircraft-liveries.json +44 -0
- package/data/aircraft.json +88 -44
- package/data/airport-coordinates-object.json +54 -48
- package/data/airport-coordinates.json +27 -26
- package/data/airport-list.json +7 -6
- package/data/airports.geojson +138 -117
- package/index.js +0 -0
- package/package.json +1 -1
- package/src/aircraft-functions.js +2 -0
package/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -18,6 +18,7 @@ import * as path from "path";
|
|
|
18
18
|
* maximumPayloadKg?: number,
|
|
19
19
|
* maximumTakeoffMassKg?: number,
|
|
20
20
|
* operatingEmptyMassKg?: number,
|
|
21
|
+
* maximumPersonsOnBoard?: number,
|
|
21
22
|
* }}
|
|
22
23
|
*/
|
|
23
24
|
/**
|
|
@@ -239,6 +240,7 @@ export const parseAircraft = (tmdFileContent) => {
|
|
|
239
240
|
maximumPayloadKg: Number(parseTmdLine(tmdFileContent, "MaximumPayload")) || undefined,
|
|
240
241
|
maximumTakeoffMassKg: Number(parseTmdLine(tmdFileContent, "MaximumTakeoffMass")) || undefined,
|
|
241
242
|
operatingEmptyMassKg: Number(parseTmdLine(tmdFileContent, "OperatingEmptyMass")) || undefined,
|
|
243
|
+
maximumPersonsOnBoard: Number(parseTmdLine(tmdFileContent, "MaximumPersonsOnBoard")) || undefined,
|
|
242
244
|
};
|
|
243
245
|
};
|
|
244
246
|
|