Skip to content

Commit

Permalink
Test 4
Browse files Browse the repository at this point in the history
  • Loading branch information
ywkim312 committed Jan 30, 2024
1 parent 583a307 commit ff9ffd9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pyincore_viz/geoutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ class GeoUtil:
def plot_gdf_map(gdf, column, category=False, basemap=True, source=ctx.providers.OpenStreetMap.Mapnik):
"""Plot Geopandas DataFrame.
Args:
gdf (obj): Geopandas DataFrame object.
column (str): A column name to be plot.
category (bool): Turn on/off category option.
basemap (bool): Turn on/off base map (e.g. openstreetmap).
source(obj): source of the Map to be used. examples, ctx.providers.OpenStreetMap.Mapnik (default),
ctx.providers.Stamen.Terrain, ctx.providers.CartoDB.Positron etc.
Args:
gdf (obj): Geopandas DataFrame object.
column (str): A column name to be plot.
category (bool): Turn on/off category option.
basemap (bool): Turn on/off base map (e.g. openstreetmap).
source(obj): source of the Map to be used. examples, ctx.providers.OpenStreetMap.Mapnik (default),
ctx.providers.Stamen.Terrain, ctx.providers.CartoDB.Positron etc.
"""
gdf = gdf.to_crs(epsg=3857)
Expand Down

0 comments on commit ff9ffd9

Please sign in to comment.