Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
aaf5612
ENH: Add contextily as a dependency for Monte Carlo simulations in py…
C8H10O2 Dec 2, 2025
14cdb4a
ENH: Add background map functionality to Monte Carlo plots
C8H10O2 Dec 2, 2025
14f924c
DOC: Enhance documentation for _get_background_map method in Monte Ca…
C8H10O2 Dec 2, 2025
e7e8bfc
MNT: Move imageio import to conditional block in _MonteCarloPlots class
C8H10O2 Dec 2, 2025
3ca9159
TST: Add unit tests for ellipses background functionality in Monte Ca…
C8H10O2 Dec 2, 2025
30ddaa0
TST: Add integration test for Monte Carlo background map options at K…
C8H10O2 Dec 2, 2025
f026acc
DOC: Updated CHANGELOG.md
C8H10O2 Dec 2, 2025
8ccdfb7
STY: Reformat with black
C8H10O2 Dec 2, 2025
7036aec
MNT: Fix wrong usage for set_aspect in _MonteCarloPlots.ellipses_comp…
C8H10O2 Dec 2, 2025
408af47
MNT: Refactor _get_background_map in _MonteCarloPlots class
C8H10O2 Dec 3, 2025
2efc134
MNT: Move mercator_to_wgs84 from_MonteCarloPlots class to tools
C8H10O2 Dec 3, 2025
37d49aa
MNT: Decompose _get_background_map and move utilities to tools.py
C8H10O2 Dec 3, 2025
89f9bcf
BUG: Fix map alignment by enforcing standard Earth radius in plots
C8H10O2 Dec 3, 2025
c39f297
TST: Add Kennedy Space Center environment fixture
C8H10O2 Dec 3, 2025
02eb829
ENH: Improve error handling and documentation for automatically downl…
C8H10O2 Dec 3, 2025
f26be7c
TST: Enhance Monte Carlo background map unit tests
C8H10O2 Dec 3, 2025
bc309b4
TST: Refactor Monte Carlo plot tests with mock class
C8H10O2 Dec 4, 2025
0caa835
DOC: Add background map options to documentation
C8H10O2 Dec 4, 2025
5d9af92
DOC: Update Monte Carlo analysis notebook with background parameter
C8H10O2 Dec 4, 2025
150ee0e
REV: Remove background documents form mrs.rst
C8H10O2 Dec 4, 2025
93a0b3b
TST: Refactor Monte Carlo plot tests to remove cleanup function
C8H10O2 Dec 4, 2025
940c880
TST: Enhance Monte Carlo plot tests with file cleanup
C8H10O2 Dec 4, 2025
7178139
DOC: Update docstring for background map provider resolution
C8H10O2 Dec 4, 2025
d84bbfa
ENH: Improve error handling in Monte Carlo background map fetching
C8H10O2 Dec 5, 2025
551dafc
TST: Parameterize tests for bounds2img failure scenarios
C8H10O2 Dec 5, 2025
72c4a6e
TST: Parameterize background map option tests in Monte Carlo plots
C8H10O2 Dec 5, 2025
2e53b53
MNT: Formatting monte_carlo_class_usage.ipynb with ruff
C8H10O2 Dec 5, 2025
c9748c6
TST: Refactor imports in Monte Carlo plot tests for consistency
C8H10O2 Dec 5, 2025
4b65f03
TST: Skip tests requiring contextily in Monte Carlo plot tests
C8H10O2 Dec 5, 2025
bbb603f
TST: Update contextily import in Monte Carlo plot tests
C8H10O2 Dec 5, 2025
c6bae7f
Update contextily dependency in pyproject.toml and requirements-optio…
C8H10O2 Dec 7, 2025
e450d25
DOC: Update monte_carlo_class_usage.ipynb to note about contextily is…
C8H10O2 Dec 7, 2025
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
Prev Previous commit
DOC: Update monte_carlo_class_usage.ipynb to note about contextily is…
…sue on python 3.14
  • Loading branch information
C8H10O2 committed Dec 7, 2025
commit e450d253600bd4fb2d6547d3a30222e10e464a8e
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,13 @@
"- `\"terrain\"` - uses Esri.WorldTopoMap for terrain maps\n",
"- Any contextily provider name (e.g., `\"CartoDB.Positron\"`)\n",
"\n",
"Note that if both `image` and `background` parameters are provided, the `image` parameter takes precedence. The background map is automatically downloaded based on the environment's latitude and longitude coordinates."
"Note that if both `image` and `background` parameters are provided, the `image` parameter takes precedence. The background map is automatically downloaded based on the environment's latitude and longitude coordinates.\n",
"\n",
"> **Note on Python 3.14 Support:**\n",
"> Currently, the `background` feature is automatically enabled only for **Python 3.13 and lower**.\n",
"> This is due to the lack of pre-built binary wheels for `rasterio` (a core dependency) on Python 3.14 (see [rasterio issue #3419](https://github.com/rasterio/rasterio/issues/3419)).\n",
">\n",
"> **Advanced Users:** If you are using Python 3.14 and are comfortable compiling C-extensions from source (e.g., setting up a GDAL environment), you can manually install `contextily`. Once installed, this feature will become available."
]
},
{
Expand Down