Skip to content

Commit

Permalink
Version 20240409
Browse files Browse the repository at this point in the history
  • Loading branch information
mborsetti committed Apr 9, 2024
1 parent 80cdbe7 commit a9d2d16
Show file tree
Hide file tree
Showing 6 changed files with 27,400 additions and 27,408 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ default_language_version:
# A list of repository mappings.
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
# see https://github.com/pre-commit/pre-commit-hooks
# - id: check-added-large-files
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ on the UTC date of the release.
`Contributions <https://github.com/mborsetti/airportdata/blob/master/CHANGELOG.rst>`__ always welcomed!


Version 20240409
================
* Reduced file size by 10.2% by removing unnecessary decimal places (fake precision) in latitude and longitude values.
These values are now rounded to 5 decimal places, which is equivalent to a high accuracy of about 1.11 meters or
better.
* Added IATA code to KKCL/KCL, Chignik Lagoon Airport, Chignik Lagoon, Alaska, USA

Version 20240401
================
MEGA contribution from `Bohdan Chernykh <https://github.com/ForeverProglamer>`__ in PR `#38
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ airportsdata |downloads|

.. |ICAO| replace:: 28,185

.. |IATA| replace:: 7,819
.. |IATA| replace:: 7,820

.. |LID| replace:: 12,603

Expand Down Expand Up @@ -58,9 +58,9 @@ Each entry consists of the following data:
(plus ``XK`` for Kosovo);
* ``elevation``: MSL elevation of the highest point of the landing area, in feet (warning: it is often wrong);
* ``lat``: Latitude (decimal) of the `airport reference point
<https://en.wikipedia.org/wiki/Airport_reference_point>`__;
<https://en.wikipedia.org/wiki/Airport_reference_point>`__ (max 5 decimal digits);
* ``lon``: Longitude (decimal) of the `airport reference point
<https://en.wikipedia.org/wiki/Airport_reference_point>`__;
<https://en.wikipedia.org/wiki/Airport_reference_point>`__ (max 5 decimal digits);
* ``tz``: Timezone expressed as a `tz database name <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>`__
(IANA-compliant);
* ``lid``: U.S. FAA Location Identifier (|LID| entries), or an empty string.
Expand Down
23 changes: 4 additions & 19 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,4 @@
MEGA contribution from `Bohdan Chernykh <https://github.com/ForeverProglamer>`__ in PR `#38
<https://github.com/mborsetti/airportsdata/pull/38>`__:

- assign the right place to SQD IATA code
- assign the right place to GBI IATA code
- assign the right place to SHO IATA code
- assign the right place to BFJ IATA code
- assign the right place to YZY IATA code
- assign the right place to KBH IATA code
- assign the right place to LLJ IATA code
- assign the right places to NIU and NFO IATA codes
- use more accurate coordinates for TLI IATA code place
- assign the right place for CDT IATA code
- assign the right place to CGY IATA code
- assign the right place to YNT IATA code
- assign the right places to INC and YEH IATA codes
- use more accurate coordinates for ZYI IATA code place
- use more accurate coordinates for OAL IATA code place
- assign the right IATA code for a place with OIBP ICAO code
* Reduced file size by 10.2% by removing unnecessary decimal places (fake precision) in latitude and longitude values.
These values are now rounded to 5 decimal places, which is equivalent to a high accuracy of about 1.11 meters or
better.
* Added IATA code to KKCL/KCL, Chignik Lagoon Airport, Chignik Lagoon, Alaska, USA
2 changes: 1 addition & 1 deletion airportsdata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

__project_name__ = __package__
__min_python_version__ = (3, 9) # minimum version of Python required to run; supported until 4 October 2024
__version__ = '20240401' # numbering follows the release date
__version__ = '20240409' # numbering follows the release date
__author__ = 'Mike Borsetti <mike@borsetti.com>'
__copyright__ = 'Copyright 2020- Mike Borsetti'
__license__ = 'MIT'
Expand Down

0 comments on commit a9d2d16

Please sign in to comment.