@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 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 | Description |
12
- | --------------------------------------------------------- | --------------------------------------------------------------------------------------- |
13
- | [`aircraft-liveries.json`](./data/aircraft-liveries.json) | JSON file containing detailed information about all aircraft, including liveries. |
14
- | [`aircraft-select.html`](./data/aircraft-select.html) | HTML snippet file containing all aircraft |
15
- | [`aircraft.json`](./data/aircraft.json) | JSON file containing abbreviated information about all aircraft (without liveries). |
16
- | [`aircraft.md`](./data/aircraft.md) | Markdown file containing abbreviated information about all aircraft (without liveries). |
17
- | [`airport-list.json`](./data/airport-list.json) | JSON file containing an array of all ICAO codes. |
18
- | [`airports.geojson`](./data/airports.geojson) | GeoJSON file containing the location of all airports in Aerofly FS 4. |
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