@fboes/aerofly-data 1.5.3 → 1.6.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 CHANGED
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.6.0] - 2026-04-16
9
+
10
+ - Removed community airports from airport JSON data
11
+ - Added new airport object data list
12
+
8
13
  ## [1.5.3] - 2026-03-27
9
14
 
10
15
  - Improved types for airports
package/README.md CHANGED
@@ -10,19 +10,19 @@ It also contains [airport and navigation aid icons](./icons/) suitable for maps.
10
10
 
11
11
  The `data` directory contains the following files:
12
12
 
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, grouped by category |
17
- | [`aircraft-livery-select-optgroup.html`](./data/aircraft-livery-select-optgroup.html) | HTML snippet file containing all liveries, grouped by aircraft |
18
- | [`aircraft-select.html`](./data/aircraft-select.html) | HTML snippet file containing all aircraft |
19
- | [`aircraft.json`](./data/aircraft.json) | JSON file containing abbreviated information about all aircraft (without liveries). |
20
- | [`aircraft.md`](./data/aircraft.md) | Markdown file containing abbreviated information about all aircraft (without liveries). |
21
- | [`airport-coordinates.json`](./data/airport-coordinates.json) | JSON file containing an array of all airports with ICAO code, name as well as WGS84 coordinates. |
22
- | [`airport-list.json`](./data/airport-list.json) | JSON file containing an array of all ICAO codes. |
23
- | [`airports-custom.md`](./data/airports-custom.md) | Markdown file containing all airports supplied by community |
24
- | [`airports-unmatched.md`](./data/airports-unmatched.md) | Markdown file containing all airports not contained in `aiports.geojson` |
25
- | [`airports.geojson`](./data/airports.geojson) | GeoJSON file containing the location of all airports 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, grouped by category |
17
+ | [`aircraft-livery-select-optgroup.html`](./data/aircraft-livery-select-optgroup.html) | HTML snippet file containing all liveries, grouped by aircraft |
18
+ | [`aircraft-select.html`](./data/aircraft-select.html) | HTML snippet file containing all aircraft |
19
+ | [`aircraft.json`](./data/aircraft.json) | JSON file containing abbreviated information about all aircraft (without liveries). |
20
+ | [`aircraft.md`](./data/aircraft.md) | Markdown file containing abbreviated information about all aircraft (without liveries). |
21
+ | [`airport-coordinates.json`](./data/airport-coordinates.json) | JSON file containing an array of all airports with ICAO code, name as well as WGS84 coordinates, including community airports. |
22
+ | [`airport-list.json`](./data/airport-list.json) | JSON file containing an array of all airports' ICAO codes, excluding community airports. |
23
+ | [`airports-custom.md`](./data/airports-custom.md) | Markdown file containing all airports supplied by community |
24
+ | [`airports-unmatched.md`](./data/airports-unmatched.md) | Markdown file containing all airports not contained in `aiports.geojson` |
25
+ | [`airports.geojson`](./data/airports.geojson) | GeoJSON file containing the location of all airports in Aerofly FS 4, excluding community airports. |
26
26
 
27
27
  Also be aware that these files can be called as a very simple REST API using static hosting at https://fboes.github.io/aerofly-data/.
28
28