From eb5663f0415cc1d7612a74dd63beb4419e5a9da5 Mon Sep 17 00:00:00 2001 From: Antonio Vivace Date: Sun, 6 Oct 2024 23:55:41 +0200 Subject: [PATCH] docs: fix example, add folium in dev requirements --- examples/geodesic.py | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/geodesic.py b/examples/geodesic.py index 51b5228..65f9d67 100644 --- a/examples/geodesic.py +++ b/examples/geodesic.py @@ -117,7 +117,7 @@ initPoint = (LAT_init, LON_init) # create a base map -# myMap = folium.Map(location=initPoint, zoom_start=10) +myMap = folium.Map(location=initPoint, zoom_start=10) # construct the lines haversineLine = [] diff --git a/pyproject.toml b/pyproject.toml index 0f9eef0..bd1eb57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,8 @@ dev = ["black==23.9.1", "Sphinx==7.4.7", "pre-commit==3.8.0", "sphinx-gallery==0.17.1", - "matplotlib==3.9.2"] + "matplotlib==3.9.2", + "folium==0.17.0"] [project.urls] "Homepage" = "https://github.com/eurocontrol/pybada"