From 8ddf6c4eaaae1ed9956cbb15aaa19535ded180d9 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Wed, 9 Oct 2024 00:07:41 -0500 Subject: [PATCH] Fix overturemaps package name typo (#915) --- leafmap/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leafmap/common.py b/leafmap/common.py index 5ebb88ebad..0edc900b17 100644 --- a/leafmap/common.py +++ b/leafmap/common.py @@ -14254,7 +14254,7 @@ def get_overture_data( try: from overturemaps import core except ImportError: - install_package("overture") + install_package("overturemaps") from overturemaps import core gdf = core.geodataframe(overture_type, bbox=bbox)