Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SEDONA-694] Use apache-sedona instead of sedona when referring to pypi Sedona #1748

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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
Loading