Skip to content

Commit b6099d1

Browse files
paleolimbotjiayuasu
authored andcommitted
maybe use correct pip name (apache#1748)
1 parent a9faa52 commit b6099d1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/tutorial/sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ SedonaPyDeck exposes APIs to create interactive map visualizations using [pydeck
10911091
!!!Note
10921092
To use SedonaPyDeck, install sedona with the `pydeck-map` extra:
10931093
```
1094-
pip install sedona[pydeck-map]
1094+
pip install apache-sedona[pydeck-map]
10951095
```
10961096

10971097
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
11681168
!!!Note
11691169
To use SedonaKepler, install sedona with the `kepler-map` extra:
11701170
```
1171-
pip install sedona[kepler-map]
1171+
pip install apache-sedona[kepler-map]
11721172
```
11731173

11741174
This tutorial showcases how simple it is to instantly visualize geospatial data using SedonaKepler.

python/sedona/maps/SedonaKepler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def create_map(cls, df=None, name="unnamed", config=None):
3434
try:
3535
from keplergl import KeplerGl
3636
except ImportError:
37-
msg = "Install sedona[kepler-map] to convert sedona dataframes to kepler maps."
37+
msg = "Install apache-sedona[kepler-map] to convert sedona dataframes to kepler maps."
3838
raise ImportError(msg) from None
3939

4040
kepler_map = KeplerGl()

python/sedona/maps/SedonaMapUtils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __convert_to_gdf_or_pdf__(cls, df, rename=True, geometry_col=None):
4242
try:
4343
import geopandas as gpd
4444
except ImportError:
45-
msg = "GeoPandas is missing. You can install it manually or via sedona[kepler-map] or sedona[pydeck-map]."
45+
msg = "GeoPandas is missing. You can install it manually or via apache-sedona[kepler-map] or apache-sedona[pydeck-map]."
4646
raise ImportError(msg) from None
4747
geo_df = gpd.GeoDataFrame(pandas_df, geometry=geometry_col)
4848
if geometry_col != "geometry" and rename is True:

python/sedona/maps/SedonaPyDeck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def _try_import_pydeck() -> ModuleType:
384384
import pydeck as pdk
385385

386386
except ImportError:
387-
msg = "Install sedona[pydeck-map] to convert sedona dataframes to pydeck maps."
387+
msg = "Install apache-sedona[pydeck-map] to convert sedona dataframes to pydeck maps."
388388
raise ImportError(msg) from None
389389

390390
return pdk

0 commit comments

Comments
 (0)