Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/gallery/covid19.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Currently, the trend shows:
Data collection and preparation
===============================

On the `Impala shell <../opensky_impala.html>`_, a particular table contains flight lists with associated origin and destination airport. The data has been downloaded using the `opensky.flightlist <https://traffic-viz.github.io/opensky_impala.html#traffic.data.adsb.opensky_impala.Impala.flightlist>`_ method, curated, then aggregated with aircraft and flight number information before being published `here <https://opensky-network.org/datasets/covid-19/>`_. Download the data and run the following:
On the `Impala shell <../data_sources/opensky_db.html>`_, a particular table contains flight lists with associated origin and destination airport. The data has been downloaded using the ``opensky.flightlist`` method, curated, then aggregated with aircraft and flight number information before being published `here <https://opensky-network.org/datasets/covid-19/>`_. Download the data and run the following:

.. code:: python

Expand Down
2 changes: 1 addition & 1 deletion docs/gallery/heatmaps.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You will find below the code producing the following maps.
:align: center


First download the data from the `Impala shell </opensky_impala.html>`__ over your area of interest (ground trajectories are kept out of the dataset).
First download the data from the `Impala shell </data_sources/opensky_db.html>`__ over your area of interest (ground trajectories are kept out of the dataset).

.. code:: python

Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ We recommend creating a fresh conda environment for a first installation:
.. code:: bash

# Installation
conda create -n traffic -c conda-forge python=3.10 traffic
conda create -n traffic -c conda-forge python=3.11 traffic
conda activate traffic

Adjust the Python version you need (>=3.9) and append packages you need for
Adjust the Python version you need (>=3.11) and append packages you need for
working efficiently, such as Jupyter Lab, xarray, PyTorch or more.

Then activate the environment each time you need to use the ``traffic`` library:
Expand Down
2 changes: 1 addition & 1 deletion docs/paper/atc_detect.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ TMA.
)

The data has been downloaded from the `OpenSky Network Impala
database <../opensky_usage.html>`__. The following recalls all the
database <../data_sources/opensky_db.html>`__. The following recalls all the
callsigns selected for this route.

.. code:: python
Expand Down
2 changes: 1 addition & 1 deletion docs/paper/sectflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Data preparation


The data has been downloaded from the `OpenSky Network Impala
database <../opensky_usage.html>`__.
database <../data_sources/opensky_db.html>`__.

First a `clustering <../clustering.html>`_ is applied to the dataset. The
implementation of the specific clustering described in the paper is available on
Expand Down
2 changes: 1 addition & 1 deletion docs/troubleshooting/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ There are three installation processes:

.. code:: bash

conda create -n traffic -c conda-forge python=3.9 traffic
conda create -n traffic -c conda-forge python=3.11 traffic

- the pip way, but you are responsible for non Python dependency management.
With Linux, you may check how the environment is created for GitHub Actions;
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand Down Expand Up @@ -96,7 +95,7 @@ fallback-version = "0.0.0"

[tool.ruff]
line-length = 80
target-version = "py310"
target-version = "py311"

[tool.ruff.lint]
select = [
Expand All @@ -113,7 +112,7 @@ select = [
known-first-party = ["numpy", "pandas", "pyproj", "shapely"]

[tool.mypy]
python_version = "3.10"
python_version = "3.11"
platform = "posix"

color_output = true
Expand Down