Skip to content

Commit

Permalink
maybe use correct pip name (#1748)
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot authored Jan 8, 2025
1 parent 5dd127a commit 95d873c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion python/sedona/maps/SedonaKepler.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def create_map(cls, df=None, name="unnamed", config=None):
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()
Expand Down
2 changes: 1 addition & 1 deletion python/sedona/maps/SedonaMapUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __convert_to_gdf_or_pdf__(cls, df, rename=True, geometry_col=None):
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:
Expand Down
2 changes: 1 addition & 1 deletion python/sedona/maps/SedonaPyDeck.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 95d873c

Please sign in to comment.