Skip to content

Commit

Permalink
Version 20240310
Browse files Browse the repository at this point in the history
  • Loading branch information
mborsetti committed Mar 10, 2024
1 parent 3e92d7d commit d2488df
Show file tree
Hide file tree
Showing 7 changed files with 1,381 additions and 558 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ on the UTC date of the release.
`Contributions <https://github.com/mborsetti/airportdata/blob/master/CHANGELOG.rst>`__ always welcomed!


Version 20240310
===================
* Synchronized the database with data from the U.S. FAA `Airport/Facility Directory (AF/D)
<https://www.faa.gov/air_traffic/flight_info/aeronav/digital_products/dafd/>`__ effective 2024-Jan-25:

- Added 195 new airports;
- Updated data of 378 airports;
- Removed 158 closed airports.
- See full details in `CHANGES_240310.rst <https://github.com/mborsetti/airportsdata/blob/main/CHANGES_240310.rst>`__.
* Updated ICAO code of LLPL, Palmahim Air Base, Rishon LeZion, Israel (was LL59).
* Removed SC49, Oficina Victoria Airport, Oficina Victoria, Tarapaca, Chile (closed).
* Removed UT73, Maymanak Airport, Maynanak, Qashqadaryo, Uzbekistan (closed).


Version 20240309
===================
* Added MZBG/BGK, Big Creek Airport, Big Creek, Toledo, Belize.
Expand Down
763 changes: 763 additions & 0 deletions CHANGES_240310.rst

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
airportsdata |downloads|
========================

.. |ICAO| replace:: 28,140
.. |ICAO| replace:: 28,175

.. |IATA| replace:: 7,814
.. |IATA| replace:: 7,813

.. |LID| replace:: 12,567
.. |LID| replace:: 12,603

.. |pyversion| image:: https://img.shields.io/pypi/v/airportsdata.svg
:target: https://pypi.org/project/airportsdata/
Expand Down Expand Up @@ -62,23 +62,23 @@ Each entry consists of the following data:
* ``lon``: Longitude (decimal) of the `airport reference point
<https://en.wikipedia.org/wiki/Airport_reference_point>`__;
* ``tz``: Timezone expressed as a `tz database name <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>`__
(IANA-compliant) or an empty string for Antarctica;
(IANA-compliant);
* ``lid``: U.S. FAA Location Identifier (|LID| entries), or an empty string.

.. [#] See `here <https://github.com/mborsetti/airportsdata/blob/main/README_identifiers.rst>`__ for an explanation on
how the Pseudo-ICAO Identifier is generated for airports and seaplane bases without an ICAO 4-letter Location
Indicator.
.. [#] IATA Multi Airport Cities are not not airports so are not included, but we provide a database and a Python
function that returns the above data for all of their component airports of a IATA MAC. Please see documentation
`here <https://github.com/mborsetti/airportsdata/blob/main/README_IATA.rst>`__.
.. [#] IATA Multi Airport Cities are not not airports and therfore not included, but we provide a database and a Python
function that returns the above data for all the airports of a IATA MAC. Please see documentation `here
<https://github.com/mborsetti/airportsdata/blob/main/README_IATA.rst>`__.
Best efforts are placed to review all contributions for accuracy, but accuracy cannot be guaranteed nor should be
expected by users.

Important notes:

* Timezone was originally sourced from `TimeZoneDB <https://timezonedb.com>`__ and is missing for Antarctica;
* Timezone was originally sourced from `TimeZoneDB <https://timezonedb.com>`__;
* No historical data (closed airports are removed).

Please report any issues you may find `here
Expand Down
19 changes: 10 additions & 9 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
* Added MZBG/BGK, Big Creek Airport, Big Creek, Toledo, Belize.
* Added MZSL/MZE, Manatee Airport, Spanish Lookout, Cayo, Belize.
* Added SBVC/VDC, Glauber De Andrade Rocha Airport, Vitória da Conquista, Bahia, Brazil. Based on a contribution by
`maidough <https://github.com/maidough>`__ in PR `#110 <https://github.com/mwgg/Airports/pull/110>`__ upstream, but
with own research.
* Removed SBQV/VDC, Vitoria da Conquista Airport, Vitoria Da Conquista, Bahia, Brazil, decommissioned on 23 July 2019.
* Added SBHJ/JHF, São Paulo Catarina Executive Airport, São Roque, São Paulo, Brazil. Contributed by `maidough
<https://github.com/maidough>`__ in PR `#110 <https://github.com/mwgg/Airports/pull/110>`__ upstream.
* Added IATA codes to 218 airports, for a total of 7,814.
* Synchronized the database with data from the U.S. FAA `Airport/Facility Directory (AF/D)
<https://www.faa.gov/air_traffic/flight_info/aeronav/digital_products/dafd/>`__ effective 2024-Jan-25:

- Added 195 new airports;
- Updated data of 378 airports;
- Removed 158 closed airports.
- See full details in `CHANGES_240310.rst <https://github.com/mborsetti/airportsdata/blob/main/CHANGES_240310.rst>`__.
* Updated ICAO code of LLPL, Palmahim Air Base, Rishon LeZion, Israel (was LL59).
* Removed SC49, Oficina Victoria Airport, Oficina Victoria, Tarapaca, Chile (closed).
* Removed UT73, Maymanak Airport, Maynanak, Qashqadaryo, Uzbekistan (closed).
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__
# Release numbering follows the release date
__version__ = '20240309'
__version__ = '20240310'
__min_python_version__ = (3, 9)
__author__ = 'Mike Borsetti <[email protected]>'
__copyright__ = 'Copyright 2020- Mike Borsetti'
Expand Down
Loading

0 comments on commit d2488df

Please sign in to comment.