@fboes/aerofly-data 1.1.0 → 1.2.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/CHANGELOG.md +27 -0
- package/README.md +11 -10
- package/data/aircraft-liveries.json +1943 -407
- package/data/aircraft-liveries.json.d.ts +20 -0
- package/data/aircraft-select-optgroup.html +11 -10
- package/data/aircraft-select.html +2 -1
- package/data/aircraft.json +22 -1
- package/data/aircraft.json.d.ts +13 -0
- package/data/aircraft.md +40 -39
- package/data/airport-list.json +1081 -106
- package/data/airport-list.json.d.ts +3 -0
- package/data/airports.geojson +27416 -6877
- package/data/airports.geojson.d.ts +27 -0
- package/dist/index.html +8 -3
- package/get-aircraft.js +30 -10
- package/get-airports.js +49 -18
- package/icons/README.md +25 -0
- package/icons/af-large_airport.svg +1 -2
- package/index.js +24 -0
- package/package.json +2 -2
- package/src/aircraft-functions.js +77 -47
- package/src/airport-functions.js +2 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [1.2.0] - 2025-07-25
|
|
11
|
+
|
|
12
|
+
- Added NPM package main script for accessing data
|
|
13
|
+
- Added TypeScript types
|
|
14
|
+
- Added new aircraft and airports
|
|
15
|
+
|
|
16
|
+
## [1.1.1] - 2025-05-21
|
|
17
|
+
|
|
18
|
+
- Added `CHANGELOG.md`
|
|
19
|
+
- Added directory listing for `/icons`
|
|
20
|
+
|
|
21
|
+
## [1.1.0] - 2025-05-20
|
|
22
|
+
|
|
23
|
+
- Added more data artifacts
|
|
24
|
+
|
|
25
|
+
## [1.0.0] - 2025-05-18
|
|
26
|
+
|
|
27
|
+
- Initial release
|
package/README.md
CHANGED
|
@@ -2,22 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
This project contains data sets for airports and aircraft present in [Aerofly FS 4](https://www.aerofly.com/). This airport data is based on data from [OurAirports](https://ourairports.com/).
|
|
4
4
|
|
|
5
|
+
There is also a [ICAO code checker](https://fboes.github.io/aerofly-data/dist/), which checks if a given ICAO airport code exists in Aerofly FS 4.
|
|
6
|
+
|
|
5
7
|
It also contains [airport and navigation aid icons](./icons/) suitable for maps.
|
|
6
8
|
|
|
7
9
|
## Enclosed files
|
|
8
10
|
|
|
9
11
|
The `data` directory contains the following files:
|
|
10
12
|
|
|
11
|
-
| File
|
|
12
|
-
|
|
|
13
|
-
| [`aircraft-liveries.json`](./data/aircraft-liveries.json)
|
|
14
|
-
| [`aircraft-select.html`](./data/aircraft-select.html)
|
|
15
|
-
| [`aircraft.
|
|
16
|
-
| [`aircraft.
|
|
17
|
-
| [`
|
|
18
|
-
| [`
|
|
19
|
-
|
|
20
|
-
There is also a [ICAO code checker](https://fboes.github.io/aerofly-data/dist/), which checks if a given ICAO airport code exists in Aerofly FS 4.
|
|
13
|
+
| File | Description |
|
|
14
|
+
| ----------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
|
|
15
|
+
| [`aircraft-liveries.json`](./data/aircraft-liveries.json) | JSON file containing detailed information about all aircraft, including liveries. |
|
|
16
|
+
| [`aircraft-select-optgroup.html`](./data/aircraft-select-optgroup.html) | HTML snippet file containing all aircraft, sorted by category |
|
|
17
|
+
| [`aircraft-select.html`](./data/aircraft-select.html) | HTML snippet file containing all aircraft |
|
|
18
|
+
| [`aircraft.json`](./data/aircraft.json) | JSON file containing abbreviated information about all aircraft (without liveries). |
|
|
19
|
+
| [`aircraft.md`](./data/aircraft.md) | Markdown file containing abbreviated information about all aircraft (without liveries). |
|
|
20
|
+
| [`airport-list.json`](./data/airport-list.json) | JSON file containing an array of all ICAO codes. |
|
|
21
|
+
| [`airports.geojson`](./data/airports.geojson) | GeoJSON file containing the location of all airports in Aerofly FS 4. |
|
|
21
22
|
|
|
22
23
|
## Building
|
|
23
24
|
|