This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new 95d873c0a9 maybe use correct pip name (#1748)
95d873c0a9 is described below
commit 95d873c0a99d7663975013b9a20080e222efe0e4
Author: Dewey Dunnington <[email protected]>
AuthorDate: Tue Jan 7 23:41:28 2025 -0600
maybe use correct pip name (#1748)
---
docs/tutorial/sql.md | 4 ++--
python/sedona/maps/SedonaKepler.py | 2 +-
python/sedona/maps/SedonaMapUtils.py | 2 +-
python/sedona/maps/SedonaPyDeck.py | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/tutorial/sql.md b/docs/tutorial/sql.md
index da2a0f52bb..721be3e8ca 100644
--- a/docs/tutorial/sql.md
+++ b/docs/tutorial/sql.md
@@ -1091,7 +1091,7 @@ SedonaPyDeck exposes APIs to create interactive map
visualizations using [pydeck
!!!Note
To use SedonaPyDeck, install sedona with the `pydeck-map` extra:
```
- pip install sedona[pydeck-map]
+ pip install apache-sedona[pydeck-map]
```
The following tutorial showcases the various maps that can be created using
SedonaPyDeck, the datasets used to create these maps are publicly available.
@@ -1168,7 +1168,7 @@ SedonaKepler exposes APIs to create interactive and
customizable map visualizati
!!!Note
To use SedonaKepler, install sedona with the `kepler-map` extra:
```
- pip install sedona[kepler-map]
+ pip install apache-sedona[kepler-map]
```
This tutorial showcases how simple it is to instantly visualize geospatial
data using SedonaKepler.
diff --git a/python/sedona/maps/SedonaKepler.py
b/python/sedona/maps/SedonaKepler.py
index 0b3530826e..6822cb28ad 100644
--- a/python/sedona/maps/SedonaKepler.py
+++ b/python/sedona/maps/SedonaKepler.py
@@ -34,7 +34,7 @@ class SedonaKepler:
try:
from keplergl import KeplerGl
except ImportError:
- msg = "Install sedona[kepler-map] to convert sedona dataframes to
kepler maps."
+ msg = "Install apache-sedona[kepler-map] to convert sedona
dataframes to kepler maps."
raise ImportError(msg) from None
kepler_map = KeplerGl()
diff --git a/python/sedona/maps/SedonaMapUtils.py
b/python/sedona/maps/SedonaMapUtils.py
index 02ef909212..66fa283d1d 100644
--- a/python/sedona/maps/SedonaMapUtils.py
+++ b/python/sedona/maps/SedonaMapUtils.py
@@ -42,7 +42,7 @@ class SedonaMapUtils:
try:
import geopandas as gpd
except ImportError:
- msg = "GeoPandas is missing. You can install it manually or via
sedona[kepler-map] or sedona[pydeck-map]."
+ msg = "GeoPandas is missing. You can install it manually or via
apache-sedona[kepler-map] or apache-sedona[pydeck-map]."
raise ImportError(msg) from None
geo_df = gpd.GeoDataFrame(pandas_df, geometry=geometry_col)
if geometry_col != "geometry" and rename is True:
diff --git a/python/sedona/maps/SedonaPyDeck.py
b/python/sedona/maps/SedonaPyDeck.py
index a15cafca59..343389841b 100644
--- a/python/sedona/maps/SedonaPyDeck.py
+++ b/python/sedona/maps/SedonaPyDeck.py
@@ -385,7 +385,7 @@ def _try_import_pydeck() -> ModuleType:
import pydeck as pdk
except ImportError:
- msg = "Install sedona[pydeck-map] to convert sedona dataframes to
pydeck maps."
+ msg = "Install apache-sedona[pydeck-map] to convert sedona dataframes
to pydeck maps."
raise ImportError(msg) from None
return pdk